Skip to content

Commit

Permalink
deploy: 7e2d559
Browse files Browse the repository at this point in the history
  • Loading branch information
jbms committed Jul 21, 2024
1 parent 4de781c commit 6da27ad
Show file tree
Hide file tree
Showing 100 changed files with 21,206 additions and 103 deletions.
Binary file modified .doctrees/admonitions.doctree
Binary file not shown.
Binary file modified .doctrees/apidoc/cpp/apigen.doctree
Binary file not shown.
Binary file modified .doctrees/apidoc/python/apigen.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/python_apigen_demo.doctree
Binary file not shown.
Binary file not shown.
Binary file modified .doctrees/python_apigen_generated/Dim.size.doctree
Binary file not shown.
Binary file modified .doctrees/python_apigen_generated/DimensionSelection.doctree
Binary file not shown.
Binary file modified .doctrees/python_apigen_generated/FooSubclass.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .doctrees/python_apigen_generated/Map.doctree
Binary file not shown.
Binary file added .doctrees/python_apigen_generated/Map.get.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions _modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,7 @@ <h1>All modules for which code is available</h1>
<li><a href="tensorstore_demo.html">tensorstore_demo</a></li>
<ul><li><a href="tensorstore_demo/_tensorstore.html">tensorstore_demo._tensorstore</a></li>
</ul><li><a href="test_py_module/test.html">test_py_module.test</a></li>
<li><a href="type_param_demo.html">type_param_demo</a></li>
</ul>

<hr>
Expand Down
5 changes: 4 additions & 1 deletion _modules/sphinx_immaterial/apidoc/format_signatures.html
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,10 @@ <h1>Source code for sphinx_immaterial.apidoc.format_signatures</h1><div class="h
<span class="k">break</span>
<span class="k">if</span> <span class="n">found_name</span><span class="p">:</span>
<span class="k">break</span>
<span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">orig_child</span><span class="p">,</span> <span class="n">sphinx</span><span class="o">.</span><span class="n">addnodes</span><span class="o">.</span><span class="n">desc_type_parameter_list</span><span class="p">):</span>
<span class="k">if</span> <span class="p">(</span>
<span class="nb">isinstance</span><span class="p">(</span><span class="n">orig_child</span><span class="p">,</span> <span class="n">docutils</span><span class="o">.</span><span class="n">nodes</span><span class="o">.</span><span class="n">Element</span><span class="p">)</span>
<span class="ow">and</span> <span class="n">orig_child</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s2">&quot;sphinx_immaterial_parent_type_parameter_list&quot;</span><span class="p">)</span> <span class="ow">is</span> <span class="kc">True</span>
<span class="p">):</span>
<span class="c1"># This is the parent entity type parameter list added by apigen.</span>
<span class="n">parent_type_param_i</span> <span class="o">=</span> <span class="n">i</span>
<span class="k">break</span>
Expand Down
8 changes: 4 additions & 4 deletions _modules/tensorstore_demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -1590,8 +1590,8 @@ <h1>Source code for tensorstore_demo</h1><div class="highlight"><pre>
<span class="sd"> })</span>

<span class="sd"> More generally, specifying an ``n``-dimensional `bool` array is equivalent to</span>
<span class="sd"> specifying ``n`` 1-dimensional index arrays, where the ``i``\ th index array specifies</span>
<span class="sd"> the ``i``\ th coordinate of the `True` values:</span>
<span class="sd"> specifying ``n`` 1-dimensional index arrays, where the ``i``\\ th index array specifies</span>
<span class="sd"> the ``i``\\ th coordinate of the `True` values:</span>

<span class="sd"> &gt;&gt;&gt; x = ts.array([[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]],</span>
<span class="sd"> ... dtype=ts.int32)</span>
Expand Down Expand Up @@ -1908,8 +1908,8 @@ <h1>Source code for tensorstore_demo</h1><div class="highlight"><pre>
<span class="sd"> :python:`dims[i] = self.labels.index(other.labels[i])`. It is an</span>
<span class="sd"> error if no such dimension exists.</span>

<span class="sd"> 2. Otherwise, ``i`` is the ``j``\ th unlabeled dimension of :python:`other`</span>
<span class="sd"> (left to right), and :python:`dims[i] = k`, where ``k`` is the ``j``\ th</span>
<span class="sd"> 2. Otherwise, ``i`` is the ``j``\\ th unlabeled dimension of :python:`other`</span>
<span class="sd"> (left to right), and :python:`dims[i] = k`, where ``k`` is the ``j``\\ th</span>
<span class="sd"> unlabeled dimension of :python:`self` (left to right). It is an error</span>
<span class="sd"> if no such dimension exists.</span>

Expand Down
Loading

0 comments on commit 6da27ad

Please sign in to comment.