Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 307 for OTHER (0.06 sec)

  1. src/cmd/go/internal/modget/get.go

    				// either of those conditions holds, *and* no other query changes the
    				// selected version of curM, then we will fail in checkWildcardVersions.
    				// (This could be an error, but it's too soon to tell.)
    				//
    				// However, even then the transitive requirements of some other query
    				// may downgrade this module out of the build list entirely, in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    }
                }
                include 'other'
            """
            def lib = mavenHttpRepo.module("org.gradle.test", "lib", "1.0").publish()
            buildFile << """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation project(":other")
                }
            """
    
            file("other/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top