Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 222 for 2345 (0.04 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

        }
    
        def "addition of jar elements"() {
            expect:
            changes(
                [jar1: jar(1234), jar2: jar(2345), jar3: jar(3456)],
                [jar1: jar(1234), jar3: jar(3456)]
            ) == [added("jar2")]
            changes(
                [jar1: jar(1234), jar2: jar(2345), jar3: jar(3456), jar4: jar(4567), jar5: jar(5678)],
                [jar1: jar(1234), jar4: jar(4567), jar5: jar(5678)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. src/os/user/listgroups_unix_test.go

    	{in: testGroupFile, user: "user7500", gid: "7500", gids: []string{"1000", "7500"}},
    	{in: testGroupFile, user: "no-such-user", gid: "2345", gids: []string{"2345"}},
    	{in: "", user: "no-such-user", gid: "2345", gids: []string{"2345"}},
    	// Error cases.
    	{in: "", user: "", gid: "2345", err: true},
    	{in: "", user: "joanna", gid: "bad", err: true},
    }
    
    func TestListGroups(t *testing.T) {
    	for _, tc := range listGroupsTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/net/ip_test.go

    	{"abcd:2345::/33", ParseIP("abcd:2345::"), &IPNet{IP: ParseIP("abcd:2345::"), Mask: IPMask(ParseIP("ffff:ffff:8000::"))}, nil},
    	{"abcd:2345::/32", ParseIP("abcd:2345::"), &IPNet{IP: ParseIP("abcd:2345::"), Mask: IPMask(ParseIP("ffff:ffff::"))}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

                new DirectorySnapshot(childDir.absolutePath, childDir.name, FileMetadata.AccessType.DIRECT, TestHashCodes.hashCodeFrom(2345), [
                    new RegularFileSnapshot(childFile.absolutePath, childFile.name, TestHashCodes.hashCodeFrom(9876), DefaultFileMetadata.file(123, 456, FileMetadata.AccessType.DIRECT))
                ]),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    		t.Fatalf("unexpected endpoints")
    	}
    	if !cache.Has(hostname) {
    		t.Fatalf("expect to find the host name")
    	}
    	// add a new endpoint
    	ep2 := &model.IstioEndpoint{
    		Address:         "2.3.4.5",
    		ServicePortName: "http",
    	}
    	cache.Update(hostname, "slice1", []*model.IstioEndpoint{ep1, ep2})
    	if !testEndpointsEqual(cache.Get(hostname), []*model.IstioEndpoint{ep1, ep2}) {
    		t.Fatalf("unexpected endpoints")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    }
    
    absl::StatusOr<std::unique_ptr<Graph>> BuildOpGraphWithOutputShapes() {
      DataType data_type = DT_INT32;
      std::initializer_list<int64_t> dims = {2, 3, 4, 5};
      Tensor tensor(data_type, TensorShape(dims));
      for (int i = 0; i < 2 * 3 * 4 * 5; ++i) {
        tensor.flat<int32>()(i) = i;
      }
    
      NodeDef node;
      auto builder = NodeDefBuilder("some_node", "Const")
                         .Attr("dtype", data_type)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceregistry_test.go

    			Name:             "workload",
    			Namespace:        namespace,
    			GroupVersionKind: gvk.WorkloadEntry,
    			Domain:           "cluster.local",
    		},
    		Spec: &networking.WorkloadEntry{
    			Address: "2.3.4.5",
    			Labels:  labels,
    		},
    	}
    	expectedSvc := &model.Service{
    		Hostname: "service.namespace.svc.cluster.local",
    		Ports: []*model.Port{{
    			Name:     "http",
    			Port:     80,
    			Protocol: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/cds_test.go

        number: 80
        targetPort: 999
        protocol: HTTP
      resolution: DNS
      endpoints:
      - address: endpoint.example.com
      - address: endpoint-port-override.example.com
        ports:
          port1: 2345
    `})
    
    	res := xdstest.ExtractClusterEndpoints(s.Clusters(s.SetupProxy(nil)))
    	// TODO(https://github.com/istio/istio/issues/50749) order should be deterministic
    	slices.Sort(res["outbound|80||example.com"])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/kube/krt/join_test.go

    	pod2 := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name2",
    			Namespace: "namespace",
    			Labels:    map[string]string{"app": "foo"},
    		},
    		Status: corev1.PodStatus{PodIP: "2.3.4.5"},
    	}
    	pc.CreateOrUpdateStatus(pod)
    	pc.CreateOrUpdateStatus(pod2)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, pod.Status.PodIP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

            }
            0 * _
        }
    
        def "implementations are snapshotted"() {
            def additionalImplementations = [
                ImplementationSnapshot.of("FirstAction", TestHashCodes.hashCodeFrom(2345)),
                ImplementationSnapshot.of("SecondAction", TestHashCodes.hashCodeFrom(3456))
            ]
    
            when:
            step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top