Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for span1 (0.35 sec)

  1. tensorflow/c/eager/tape.h

      Status ComputeGradient(
          const VSpace<Gradient, BackwardFunction, TapeTensor>& vspace,
          const absl::Span<const int64_t> target_tensor_ids,
          const absl::Span<const int64_t> source_tensor_ids,
          const std::unordered_map<int64, TapeTensor>& sources_that_are_targets,
          gtl::ArraySlice<Gradient*> output_gradients, absl::Span<Gradient*> result,
          bool build_default_zeros_grads = true);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  2. docs/zh/docs/contributing.md

    ### 实时文档
    
    在本地开发时,可以使用该脚本构建站点并检查所做的任何更改,并实时重载:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    <span style="color: green;">[INFO]</span> Start detecting changes
    ```
    
    </div>
    
    文档服务将运行在 `http://127.0.0.1:8008`。
    
    这样,你可以编辑文档 / 源文件并实时查看更改。
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 11:57:21 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableRangeSet.java

      @Override
      public ImmutableRangeSet<C> subRangeSet(Range<C> range) {
        if (!isEmpty()) {
          Range<C> span = span();
          if (range.encloses(span)) {
            return this;
          } else if (range.isConnected(span)) {
            return new ImmutableRangeSet<>(intersectRanges(range));
          }
        }
        return of();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/behind-a-proxy.md

    ### 🚚 `root_path`
    
    🏆 👉, 👆 💪 ⚙️ 📋 ⏸ 🎛 `--root-path` 💖:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    🚥 👆 ⚙️ Hypercorn, ⚫️ ✔️ 🎛 `--root-path`.
    
    !!! note "📡 ℹ"
        🔫 🔧 🔬 `root_path` 👉 ⚙️ 💼.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

      @Override
      public ImmutableRangeSet<C> subRangeSet(Range<C> range) {
        if (!isEmpty()) {
          Range<C> span = span();
          if (range.encloses(span)) {
            return this;
          } else if (range.isConnected(span)) {
            return new ImmutableRangeSet<>(intersectRanges(range));
          }
        }
        return of();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    		return undUpper
    	}
    	return &simpleCaser{f: f, span: upperFunc[i].span}
    }
    
    func makeLower(t language.Tag, o options) transform.SpanningTransformer {
    	_, i, _ := matcher.Match(t)
    	f := lowerFunc[i]
    	if f == nil {
    		if o.ignoreFinalSigma {
    			return undLowerIgnoreSigma
    		}
    		return undLower
    	}
    	if o.ignoreFinalSigma {
    		return &simpleCaser{f: f, span: isLower}
    	}
    	return &lowerCaser{
    		first:   f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/testing.md

    plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1
    collected 6 items
    
    ---> 100%
    
    test_main.py <span style="color: green; white-space: pre;">......                            [100%]</span>
    
    <span style="color: green;">================= 1 passed in 0.03s =================</span>
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/behind-a-proxy.md

    ### Providing the `root_path`
    
    To achieve this, you can use the command line option `--root-path` like:
    
    <div class="termy">
    
    ```console
    $ fastapi run main.py --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    If you use Hypercorn, it also has the option `--root-path`.
    
    !!! note "Technical Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // A FileSyntax represents an entire go.mod file.
    type FileSyntax struct {
    	Name string // file path
    	Comments
    	Stmt []Expr
    }
    
    func (x *FileSyntax) Span() (start, end Position) {
    	if len(x.Stmt) == 0 {
    		return
    	}
    	start, _ = x.Stmt[0].Span()
    	_, end = x.Stmt[len(x.Stmt)-1].Span()
    	return start, end
    }
    
    // addLine adds a line containing the given tokens to the file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      }
    
      absl::StatusOr<xla::Literal> CreateRandomF32Literal(
          absl::Span<const int64_t> dims, float min = -100, float max = 100) {
        TF_ASSIGN_OR_RETURN(auto shape,
                            xla::ShapeUtil::MakeValidatedShape(xla::F32, dims));
        return xla::LiteralUtil::CreateLiteralWithGenerator<xla::F32, float>(
            shape, [this, min, max](absl::Span<const int64_t> dims) -> float {
              return absl::Uniform(bitgen_, min, max);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top