Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 317 for 2345 (0.03 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. pilot/pkg/serviceregistry/serviceentry/util_test.go

    			},
    			WorkloadSelector: &networking.WorkloadSelector{
    				Labels: map[string]string{"app": "foo"},
    			},
    		},
    	}
    	ses := []config.Config{se1, se2, se3}
    
    	wle := &networking.WorkloadEntry{
    		Address: "2.3.4.5",
    		Labels: map[string]string{
    			"app":     "foo",
    			"version": "v1",
    		},
    		Ports: map[string]uint32{
    			"http-number":  8081,
    			"http2-number": 8088,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 17 22:32:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/packaging/rpm/init.d/fess

    # description: Starts and stops a single fess instance on this system 
    #
    
    ### BEGIN INIT INFO
    # Provides: Fess
    # Required-Start: $network $named
    # Required-Stop: $network $named
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: This service manages the fess daemon
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top