Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 402 for prefers (0.58 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not find org:module:1.0.")
        }
    
        def "project local repositories can be ignored if we prefer settings repositories"() {
            repository {
                'org:module:1.0'()
            }
    
            settingsFile << """
    
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TopKSelector.java

     * create the {@code TopKSelector} instance.
     *
     * <p>If your input data is available as a {@link Stream}, prefer passing {@link
     * Comparators#least(int)} to {@link Stream#collect(java.util.stream.Collector)}. If it is available
     * as an {@link Iterable} or {@link Iterator}, prefer {@link Ordering#leastOf(Iterable, int)}.
     *
     * <p>This uses the same efficient implementation as {@link Ordering#leastOf(Iterable, int)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/types.go

    	Type MetricSourceType `json:"type" protobuf:"bytes,1,name=type"`
    
    	// object refers to a metric describing a single kubernetes object
    	// (for example, hits-per-second on an Ingress object).
    	// +optional
    	Object *ObjectMetricSource `json:"object,omitempty" protobuf:"bytes,2,opt,name=object"`
    
    	// pods refers to a metric describing each pod in the current scale target
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            if (selectors.size() == 1) {
                ResolvableSelectorState selectorState = selectors.first();
                // Short-circuit selector merging for single selector without 'prefer'
                if (selectorState.getVersionConstraint() == null || selectorState.getVersionConstraint().getPreferredSelector() == null) {
                    return resolveSingleSelector(selectorState, allRejects);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/net/conf_test.go

    			nss:       nssStr(t, "foo: bar"),
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
    		},
    		// Issue 24393: make sure "Resolver.PreferGo = true" acts like netgo.
    		{
    			name:     "resolver-prefergo",
    			resolver: &Resolver{PreferGo: true},
    			c: &conf{
    				preferCgo: true,
    				netCgo:    true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, ""),
    			hostTests: []nssHostTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                    other
                    conf.shouldResolveConsistentlyWith(other)
                }
    
                dependencies {
                    conf('org:foo') {
                        version {
                            prefer '1.1'
                        }
                    }
                    other 'org:foo:1.0'
                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 5}},
    			name:         "two images spread on two nodes, prefer the larger image one",
    		},
    		{
    			// Pod: gcr.io/40 gcr.io/300
    
    			// Node1
    			// Image: gcr.io/40:latest 40MB, gcr.io/300:latest 300MB
    			// Score: 100 * ((40M + 300M)/2 - 23M)/(1000M * 2 - 23M) = 7
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            builder.library("groovy", "org.codehaus.groovy", "groovy").version {
                it.strictly("3.0.5")
            }
            builder.library("groovy-json", "org.codehaus.groovy", "groovy-json").version {
                it.prefer("3.0.5")
            }
            builder.bundle("groovy", ["groovy", "groovy-json"])
    
            when:
            def model = builder.build()
    
            then:
            model.bundleAliases == ["groovy"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/Files.java

       *     helpful predefined constants
       * @return a string containing all the characters from the file
       * @throws IOException if an I/O error occurs
       * @deprecated Prefer {@code asCharSource(file, charset).read()}.
       */
      @Deprecated
      @InlineMe(
          replacement = "Files.asCharSource(file, charset).read()",
          imports = "com.google.common.io.Files")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			expectedError:      true,
    		},
    		{ // if KubeConfig is equal to the existingKubeConfig - refers to the same cluster -, use the existing (Test idempotency)
    			name:               "KubeConfig refers to the same cluster",
    			existingKubeConfig: config,
    			kubeConfig:         config,
    		},
    		{ // if KubeConfig is not equal to the existingKubeConfig - refers to the another cluster (a cluster with another Ca) -, raise error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top