Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 169 for span1 (0.16 sec)

  1. tensorflow/cc/framework/scope.h

      /// control dependencies the union of operations in the control_deps vector
      /// and the control dependencies of the current scope.
      Scope WithControlDependencies(absl::Span<const Operation> control_deps) const;
      /// Same as above, but convenient to add control dependency on the operation
      /// producing the control_dep output.
      Scope WithControlDependencies(const Output& control_dep) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Range.java

       * other}. For example, the span of {@code [1..3]} and {@code (5..7)} is {@code [1..7)}.
       *
       * <p><i>If</i> the input ranges are {@linkplain #isConnected connected}, the returned range can
       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/tracing_zipkin_golden.json

          "name": "envoy.tracers.zipkin",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
            "collector_cluster": "zipkin",
            "collector_endpoint": "/api/v2/spans",
            "collector_endpoint_version": "HTTP_JSON",
            "trace_id_128bit": true,
            "shared_span_context": false
          }
        }
      }
      
      
      ,
      "cluster_manager": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RangeSet.java

       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
      // Views
    
      /**
       * Returns a view of the {@linkplain Range#isConnected disconnected} ranges that make up this
       * range set. The returned set may be empty. The iterators returned by its {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/first-steps.md

        Das, weil **OAuth2** „Formulardaten“ zum Senden von `username` und `password` verwendet.
    
    Führen Sie das Beispiel aus mit:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ## Überprüfen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_tls_golden.json

          "name": "envoy.tracers.zipkin",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.ZipkinConfig",
            "collector_cluster": "zipkin",
            "collector_endpoint": "/api/v2/spans",
            "collector_endpoint_version": "HTTP_JSON",
            "trace_id_128bit": true,
            "shared_span_context": false
          }
        }
      }
      
      
      ,
      "cluster_manager": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/go/main.go

    		}
    		defer func() {
    			rtrace.Stop()
    			f.Close()
    		}()
    	}
    
    	ctx := maybeStartTrace(context.Background())
    	ctx, span := trace.StartSpan(ctx, fmt.Sprint("Running ", cmd.Name(), " command"))
    	cmd.Run(ctx, cmd, args)
    	span.Done()
    }
    
    func init() {
    	base.Usage = mainUsage
    }
    
    func mainUsage() {
    	help.PrintUsage(os.Stderr, base.Go)
    	os.Exit(2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableRangeMap.java

          return null;
        } else {
          Range<K> range = ranges.get(index);
          return range.contains(key) ? Maps.immutableEntry(range, values.get(index)) : null;
        }
      }
    
      @Override
      public Range<K> span() {
        if (ranges.isEmpty()) {
          throw new NoSuchElementException();
        }
        Range<K> firstRange = ranges.get(0);
        Range<K> lastRange = ranges.get(ranges.size() - 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableRangeMap.java

          return null;
        } else {
          Range<K> range = ranges.get(index);
          return range.contains(key) ? Maps.immutableEntry(range, values.get(index)) : null;
        }
      }
    
      @Override
      public Range<K> span() {
        if (ranges.isEmpty()) {
          throw new NoSuchElementException();
        }
        Range<K> firstRange = ranges.get(0);
        Range<K> lastRange = ranges.get(ranges.size() - 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    	// Delay the actual GCSweepBegin event until the first span
    	// sweep. If we don't sweep anything, don't emit any events.
    	pp := tl.mp.p.ptr()
    	if pp.trace.maySweep {
    		throw("double traceGCSweepStart")
    	}
    	pp.trace.maySweep, pp.trace.swept, pp.trace.reclaimed = true, 0, 0
    }
    
    // GCSweepSpan traces the sweep of a single span. If this is
    // the first span swept since traceGCSweepStart was called, this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top