Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 219 for SELECTION (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/WorkSource.java

            NoMoreWorkToStart
        }
    
        abstract class Selection<T> {
            private static final Selection<Object> NO_WORK_READY_TO_START = new Selection<Object>() {
                @Override
                public boolean isNoWorkReadyToStart() {
                    return true;
                }
            };
            private static final Selection<Object> NO_MORE_WORK_TO_START = new Selection<Object>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 13 20:53:27 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpecs.java

    import org.gradle.api.Incubating;
    
    /**
     * Provides test selection from a specific test task.
     *
     * @see TestLauncher#withTestsFor(Action)
     * @since 7.6
     */
    @Incubating
    public interface TestSpecs {
    
        /**
         * Creates a new test selection for the target task.
         *
         * @param taskPath The target task.
         * @return A new test selection.
         */
        TestSpec forTaskPath(String taskPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionDescriptor.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * A component selection description, which wraps a cause with an optional custom description.
     *
     * @since 4.6
     */
    @UsedByScanPlugin
    @HasInternalProtocol
    public interface ComponentSelectionDescriptor {
    
        /**
         * Returns the cause associated with this descriptor
         *
         * @return a component selection cause
         */
        ComponentSelectionCause getCause();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSelectionSpec.java

        }
    
        /**
         * If false, selection is restricted only to the artifacts exposed a selected node in the graph.
         * If true, selection is expanded to include artifacts from any variant exposed by the component that a given node belongs to.
         */
        public boolean getSelectFromAllVariants() {
            return selectFromAllVariants;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultComponentSelectionReasonTest.groovy

    import spock.lang.Specification
    
    class DefaultComponentSelectionReasonTest extends Specification {
    
        def "requested only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.requested()
    
            then:
            reason.isExpected()
        }
    
        def "root only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.root()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIssuesIntegrationTest.groovy

                    resolutionStrategy.capabilitiesResolution.all { details ->
                        def selection =
                            details.candidates.find { it.variantName.endsWith('PrefApiElements') }
                        println("Selecting \$selection from \${details.candidates}")
                        details.select(selection)
                    }
                }
    
                configurations.runtimeClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector
    import spock.lang.Specification
    
    class DefaultVisitedArtifactResultsTest extends Specification {
        def "strict selection includes selected variant of each node"() {
            def artifacts1 = Stub(ArtifactSet)
            def artifacts2 = Stub(ArtifactSet)
            def variant1Artifacts = Stub(ResolvedArtifactSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskParser.java

                String path = remainingPaths.remove(0);
                TaskSelection selection = taskSelector.resolveTaskName(taskExecutionRequest.getRootDir(), taskExecutionRequest.getProjectPath(), targetBuild, path);
                Set<Task> tasks = selection.getTasks();
                remainingPaths = taskConfigurer.configureTasks(tasks, remainingPaths);
                out.add(selection);
            }
            return out;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/util/match/match.go

    package match
    
    import (
    	"path/filepath"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    func MatchesMap(selection, cluster map[string]string) bool {
    	if len(selection) == 0 {
    		return true
    	}
    	if len(cluster) == 0 {
    		return false
    	}
    
    	for ks, vs := range selection {
    		vc, ok := cluster[ks]
    		if !ok {
    			return false
    		}
    		if !MatchesGlob(vc, vs) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/fields/requirements.go

    */
    
    package fields
    
    import "k8s.io/apimachinery/pkg/selection"
    
    // Requirements is AND of all requirements.
    type Requirements []Requirement
    
    // Requirement contains a field, a value, and an operator that relates the field and value.
    // This is currently for reading internal selection information of field selector.
    type Requirement struct {
    	Operator selection.Operator
    	Field    string
    	Value    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 974 bytes
    - Viewed (0)
Back to top