Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 299 for OTHER (0.04 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		}
    		expectServiceInstances(t, sd, httpStaticHost, 0, instances, instances2)
    		// Service change, so we need a full push
    		expectEvents(t, events,
    			Event{Type: "service", ID: "other.com", Namespace: httpStaticOverlayUpdated.Namespace},
    			Event{Type: "eds cache", ID: "other.com", Namespace: httpStaticOverlayUpdated.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    		switch {
    		case pkg.flags.has(pkgInAll):
    			// pkg is transitively imported by a package or test in the main module.
    			// We need to promote the module that maintains it to a root: if some
    			// other module depends on the main module, and that other module also
    			// uses a pruned module graph, it will expect to find all of our
    			// transitive dependencies by reading just our go.mod file, not the go.mod
    			// files of everything we depend on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    		"stats summary sub":               {url: "/stats/summary", bucket: "stats"},
    		"invalid path":                    {url: "/junk", bucket: "other"},
    		"invalid path starting with good": {url: "/healthzjunk", bucket: "other"},
    	}
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	for _, test := range tests {
    		path := test.url
    		bucket := test.bucket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some key": "some value", "other key": "other value"]
    
            when:
            property.put("some key", Providers.of("some value").withSideEffect(sideEffect1))
            property.put("other key", Providers.of("other value").withSideEffect(sideEffect2))
    
            def value = property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    	if opts.Pod == nil || other.RunningPod == nil {
    		opts.Pod = other.Pod
    	}
    	// running pods will not persist but will be remembered for replay
    	opts.RunningPod = other.RunningPod
    	// if mirrorPod was not provided, remember the last one for replay
    	if other.MirrorPod != nil {
    		opts.MirrorPod = other.MirrorPod
    	}
    	// accumulate kill pod options
    	if other.KillPodOptions != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			// ones! — is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package “exists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    					Name:       "simon",
    					UID:        "other-uid",
    				},
    			},
    			shouldReportUnexpectedController: false,
    		},
    		{
    			name: "other pod controller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "simon",
    					UID:        "other-uid",
    					Controller: ptr.To(true),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return managedVersionMap;
        }
    
        @Override
        public boolean equals(Object other) {
            if (other == this) {
                return true;
            } else if (!(other instanceof MavenProject)) {
                return false;
            }
    
            MavenProject that = (MavenProject) other;
    
            return Objects.equals(getArtifactId(), that.getArtifactId())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // The -fuzz and -run flags can both be set, in order to fuzz a target but
    // skip the execution of all other tests.
    //
    // Subtests can also be used to control parallelism. A parent test will only
    // complete once all of its subtests complete. In this example, all tests are
    // run in parallel with each other, and only with each other, regardless of
    // other top-level tests that may be defined:
    //
    //	func TestGroupedParallel(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    				DefaultAddress: "1.2.3.4",
    				ClusterVIPs: model.AddressMap{
    					Addresses: map[cluster.ID][]string{
    						"cluster-1": {"1.2.3.4", "2406:3003:2064:35b8:864:a648:4b96:e37d"},
    						"cluster-2": {"4.3.2.1"}, // ensure other clusters aren't being populated in domains slice
    					},
    				},
    			},
    			port: 8123,
    			node: &model.Proxy{
    				DNSDomain: "default.svc.cluster.local",
    				Metadata: &model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top