Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for id_1 (0.1 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

      OutputList outputs;
      CreateSwitchN(root.WithOpName("switchn"), value, constant_7, 3, &outputs);
    
      Output id_0 = ops::Identity(root.WithOpName("id_0"), outputs[0]);
      Output id_1 = ops::Identity(root.WithOpName("id_1"), outputs[1]);
      Output id_2 = ops::Identity(root.WithOpName("id_2"), outputs[2]);
    
      FixupSourceAndSinkEdges(root.graph());
    
      PredicateMapTy predicate_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.whenObjectAdded {
                    assert userCodeApplicationContext.current().id == id1
                }
            }
    
            when:
            addToContainer(a)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	if err != nil {
    		return
    	}
    	if c.id1 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id1, testInputsID, testAndInputKey(c.id1, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id1, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id1, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

      // returns true.
      template <typename FunctionTy>
      static void Visit(Predicate* p, const FunctionTy& func);
    
     protected:
      explicit Predicate(int64_t id) : id_(id) {}
    
     private:
      const int64_t id_;
    
      Predicate(const Predicate&) = delete;
      void operator=(const Predicate&) = delete;
    };
    
    // Represents a logical conjunction of a set of predicates.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    					Image:       "busybox",
    					State:       v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    				{
    					ContainerID: "://id2",
    					Name:        "foo2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        }) {is_stateless = true}
        return %0
      }
    ```
    (the first result can be removed along with its defining op `tf.OpB`).
    
    ### `-tf-replica-id-to-device-ordinal`
    
    _Set device ordinal with replica id_
    
    This pass sets the device ordinal attribute of the ops using the replica id
    attribute. This is run immediately after the replica_to_island pass which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	var b bytes.Buffer
    	b.WriteString(builtinProlog)
    	b.WriteString(f.Preamble)
    
    	for i, n := range names {
    		fmt.Fprintf(&b, "#line %d \"not-declared\"\n"+
    			"void __cgo_f_%d_1(void) { __typeof__(%s) *__cgo_undefined__1; }\n"+
    			"#line %d \"not-type\"\n"+
    			"void __cgo_f_%d_2(void) { %s *__cgo_undefined__2; }\n"+
    			"#line %d \"not-int-const\"\n"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top