Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for span1 (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

      correctly with an external cloud provider. ([#124516](https://github.com/kubernetes/kubernetes/pull/124516), [@danwinship](https://github.com/danwinship)) [SIG Node]
    - Fixed an issue that prevents the linking of trace spans for requests that are proxied through kube-aggregator. ([#124189](https://github.com/kubernetes/kubernetes/pull/124189), [@toddtreece](https://github.com/toddtreece)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    namespace {
    Node* MakeStageNode(GraphDefBuilder& builder, string name,
                        std::initializer_list<DataType> dtypes,
                        absl::Span<const ops::NodeOut> values) {
      auto opts = builder.opts()
                      .WithName(std::move(name))
                      .WithAttr("dtypes", std::move(dtypes));
      if (opts.HaveError()) {
        return nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		ns := t.Unix()*1e9 + int64(t.Nanosecond())
    		return ns == nsec
    	}
    	f32 := func(nsec int32) bool { return f(int64(nsec)) }
    	cfg := &quick.Config{MaxCount: 10000}
    
    	// Try a small date first, then the large ones. (The span is only a few hundred years
    	// for nanoseconds in an int64.)
    	if err := quick.Check(f32, cfg); err != nil {
    		t.Fatal(err)
    	}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	go122.EvGoCreateBlocked: (*ordering).advanceGoCreate,
    
    	// GoStatus event with a stack. Added in Go 1.23.
    	go122.EvGoStatusStack: (*ordering).advanceGoStatus,
    
    	// Experimental events.
    
    	// Experimental heap span events. Added in Go 1.23.
    	go122.EvSpan:      (*ordering).advanceAllocFree,
    	go122.EvSpanAlloc: (*ordering).advanceAllocFree,
    	go122.EvSpanFree:  (*ordering).advanceAllocFree,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        const std::optional<string>& xla_scope() const { return xla_scope_; }
    
        // Returns the TF graph node IDs for the resource variable operations in
        // this cluster.
        absl::Span<const int> resource_var_operation_node_ids() const {
          return resource_var_operation_node_ids_;
        }
    
        string DebugString(const Graph& graph) const {
          Node* node = graph.FindNodeId(cycles_graph_node_id());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top