Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for spanOf (0.09 sec)

  1. 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)
  2. 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