Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 811 for selectJdk (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audiences.go

    // Intersect intersects Audiences with a target Audiences and returns all
    // elements in both.
    func (a Audiences) Intersect(tauds Audiences) Audiences {
    	selected := Audiences{}
    	for _, taud := range tauds {
    		if a.Has(taud) {
    			selected = append(selected, taud)
    		}
    	}
    	return selected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 31 21:50:11 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPredicate.java

     *
     * <p>Defines a fixed set of criteria that a model node must match. A node is only selected when it matches all non-null criteria.</p>
     */
    public abstract class ModelPredicate {
        /**
         * Returns the path of the node to select, or null if path is not relevant.
         *
         * <p>A node will be selected if its path equals the specified path.
         */
        @Nullable
        public ModelPath getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

        }
    
        public static <T> Spec<T> convertClosureToSpec(final Closure<?> closure) {
            return new ClosureSpec<>(closure);
        }
    
        /**
         * Returns a spec that selects the intersection of those items selected by the given specs. Returns a spec that selects everything when no specs provided.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Spec<T> intersect(Spec<? super T>... specs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/StrictDependencyResultSpec.java

        }
    
        private boolean matchesSelected(ResolvedDependencyResult candidate) {
            ComponentIdentifier selected = candidate.getSelected().getId();
    
            if (selected instanceof ModuleComponentIdentifier) {
                ModuleComponentIdentifier selectedModule = (ModuleComponentIdentifier) selected;
                return selectedModule.getGroup().equals(moduleIdentifier.getGroup())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  5. pkg/test/loadbalancersim/loadbalancer/leastrequest.go

    	}
    
    	// Pick 2 endpoints at random.
    	c1, c2 := lb.pick2()
    
    	// Choose the endpoint with fewer active requests.
    	selected := c1
    	if c2.ActiveRequests() < c1.ActiveRequests() {
    		selected = c2
    	}
    
    	// Apply the selected endpoint to the metrics decorator and send the request.
    	lb.doRequest(selected, onDone)
    }
    
    type weightedLeastRequest struct {
    	*weightedConnections
    	activeRequestBias float64
    	edf               *EDF
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                ComponentState selected = module.getSelected();
                if (selected != null) {
                    ResolutionFailureHandler resolutionFailureHandler = resolveState.getVariantSelector().getFailureHandler();
                    if (selected.isRejected()) {
                        GradleException error = new GradleException(selected.getRejectedErrorMessage());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/NoBuildDependenciesArtifactSetTest.groovy

        }
    
        def "creates wrapper for non-empty set of selected artifacts"() {
            def target = Stub(ArtifactSet)
            def selector = Stub(ArtifactVariantSelector)
            def selected = Stub(ResolvedArtifactSet)
            def visitor = Mock(TaskDependencyResolveContext)
    
            given:
            target.select(_, _) >> selected
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/LatestModuleConflictResolverTest.groovy

            when:
            resolveConflicts()
    
            then:
            selected '1.1'
        }
    
        def "can select a release version over unqualified"() {
            given:
            prefer('1.0-beta-1').release()
            prefer('1.0-beta-2')
    
            when:
            resolveConflicts()
    
            then:
            selected '1.0-beta-1'
        }
    
        def "can select qualified release over unqualified"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

         *
         * @return this details instance
         */
        CapabilityResolutionDetails selectHighestVersion();
    
        /**
         * Describes why a particular candidate is selected.
         *
         * @param reason the reason why a candidate is selected.
         *
         * @return this details instance
         */
        CapabilityResolutionDetails because(String reason);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/inputNormalizationPropertiesFiles/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    // tag::ignore-property-selected[]
    normalization {
        runtimeClasspath {
            properties("**/build-info.properties") {
                ignoreProperty("timestamp")
            }
        }
    }
    // end::ignore-property-selected[]
    
    // tag::ignore-property-all[]
    normalization {
        runtimeClasspath {
            properties {
                ignoreProperty("timestamp")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 417 bytes
    - Viewed (0)
Back to top