Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for span1 (0.15 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go

    }
    
    func (w *deferredResponseWriter) Write(p []byte) (n int, err error) {
    	ctx := w.ctx
    	span := tracing.SpanFromContext(ctx)
    	// This Step usually wraps in-memory object serialization.
    	span.AddEvent("About to start writing response", attribute.Int("size", len(p)))
    
    	firstWrite := !w.hasWritten
    	defer func() {
    		if err != nil {
    			span.AddEvent("Write call failed",
    				attribute.String("writer", fmt.Sprintf("%T", w.w)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/internal/trace/traceviewer/http.go

      and color.
    
      A colored bar represents an uninterrupted span of execution.
    
      Execution of a goroutine may migrate from one logical processor to another,
      causing a single colored bar to be horizontally continuous but
      vertically displaced.
    </p>
    <p>
      Clicking on a span reveals information about it, such as its
      duration, its causal predecessors and successors, and the stack trace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. docs/ja/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`で提供します。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelObjectGraphToMlirImport(absl::string_view saved_model_dir,
                                      const std::unordered_set<std::string>& tags,
                                      absl::Span<std::string> exported_names,
                                      mlir::MLIRContext* context,
                                      bool unconditionally_use_set_output_shapes) {
      tensorflow::SavedModelV2Bundle bundle;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top