Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for Get2 (0.05 sec)

  1. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

      cond_fn.set_name("f3");
      body_fn.set_name("f2");
      auto while_op =
          ops::While(s.WithOpName("while"),
                     std::initializer_list<Input>{arg0, arg1}, cond_fn, body_fn);
      auto ret2 = ops::_Retval(s.WithOpName("ret2"), while_op.output[0], 2);
      auto ret3 = ops::_Retval(s.WithOpName("ret3"), while_op.output[1], 3);
      std::unique_ptr<Graph> g(new Graph(OpRegistry::Global()));
      TF_CHECK_OK(s.ToGraph(g.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

      }
    
      public void testEquals() {
        SortedMultiset<String> set1 = ImmutableSortedMultiset.of("one");
        SortedMultiset<String> set2 = ImmutableSortedMultiset.of("two");
        new EqualsTester()
            .addEqualityGroup(set1, wrap(set1), wrap(set1))
            .addEqualityGroup(set2, wrap(set2))
            .testEquals();
      }
    
      private static <T> SortedMultiset<T> wrap(final SortedMultiset<T> delegate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 09 15:17:25 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/testing/mock_manager.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPodAndMirrorPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(*v1.Pod)
    	ret2, _ := ret[2].(bool)
    	return ret0, ret1, ret2
    }
    
    // GetPodAndMirrorPod indicates an expected call of GetPodAndMirrorPod.
    func (mr *MockManagerMockRecorder) GetPodAndMirrorPod(arg0 any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

      }
    
      public void testEquals() {
        SortedMultiset<String> set1 = ImmutableSortedMultiset.of("one");
        SortedMultiset<String> set2 = ImmutableSortedMultiset.of("two");
        new EqualsTester()
            .addEqualityGroup(set1, wrap(set1), wrap(set1))
            .addEqualityGroup(set2, wrap(set2))
            .testEquals();
      }
    
      private static <T> SortedMultiset<T> wrap(final SortedMultiset<T> delegate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(*v1alpha1.NetworkStats)
    	ret2, _ := ret[2].(error)
    	return ret0, ret1, ret2
    }
    
    // GetCgroupStats indicates an expected call of GetCgroupStats.
    func (mr *MockProviderMockRecorder) GetCgroupStats(cgroupName, updateStats any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tests/associations_has_many_test.go

    	AssertAssociationCount(t, user, "Pets", 5, "AfterAppendSlice")
    
    	// Replace
    	pet2 := Pet{Name: "pet-has-many-replace"}
    
    	if err := DB.Model(&user2).Association("Pets").Replace(&pet2); err != nil {
    		t.Fatalf("Error happened when append pet, got %v", err)
    	}
    
    	if pet2.ID == 0 {
    		t.Fatalf("pet2's ID should be created")
    	}
    
    	user.Pets = []*Pet{&pet2}
    	CheckUser(t, user2, user)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/kubevirtInterfaces_list.yaml.injected

            traffic.sidecar.istio.io/kubevirtInterfaces: net1,net2
          creationTimestamp: null
          labels:
            app: hello
            security.istio.io/tlsMode: istio
            service.istio.io/canonical-name: hello
            service.istio.io/canonical-revision: latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/kubevirtInterfaces_list.yaml

    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          annotations:
            traffic.sidecar.istio.io/kubevirtInterfaces: "net1,net2"
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 544 bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    	A int
    	B string
    }
    
    type ET2 struct {
    	X string
    }
    
    type ET1 struct {
    	A    int
    	Et2  *ET2
    	Next *ET1
    }
    
    // Like ET1 but with a different name for a field
    type ET3 struct {
    	A             int
    	Et2           *ET2
    	DifferentNext *ET1
    }
    
    // Like ET1 but with a different type for a field
    type ET4 struct {
    	A    int
    	Et2  float64
    	Next int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	}
    	if len(entries) != 0 {
    		t.Errorf("Expected 0 entries, got %d, entries: %v", len(entries), entries)
    	}
    
    	// create another set
    	set2 := &ipset.IPSet{
    		Name:       "bar",
    		SetType:    ipset.HashIPPortIP,
    		HashFamily: ipset.ProtocolFamilyIPV6,
    	}
    	if err := fake.CreateSet(set2, true); err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	setList, err := fake.ListSets()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top