Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for SELECTION (0.29 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VisitedArtifactResults.java

         * The implementation should attempt to select artifacts eagerly, but may be lazy where
         * the selection cannot happen until the results are queried.
         *
         * @param variantSelector Performs variant selection
         * @param spec Governs how artifacts are selected
         * @param lenient If true, ignore artifacts that are resolved, but unavailable
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitution.java

         * @since 4.5
         */
        void useTarget(Object notation, String reason);
    
        /**
         * Configures the artifact selection for the substitution.
         * This is a convenience method which allows selecting, typically, different artifact classifiers
         * for the same component.
         *
         * Artifact selection matters for components which are not published with Gradle Module Metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

                this.target = target;
            }
    
            @Override
            public boolean isSatisfiedBy(ComponentSelection selection) {
                return selection.getCandidate().getGroup().equals(target.getGroup()) && selection.getCandidate().getModule().equals(target.getName());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            new DefaultDependencySubstitution(DependencyManagementTestUtil.componentSelectionDescriptorFactory(), componentSelector, artifacts)
        }
    
        def "can override target and selection reason for project"() {
            when:
            details.useTarget("org:foo:2.0", FORCED)
            details.useTarget("org:foo:3.0", SELECTED_BY_RULE)
    
            then:
            details.requested == componentSelector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetailsSpec.groovy

            when:
            details.useVersion('5.0')
    
            then:
            details.target.toString() == 'com:bar:5.0'
        }
    
        def "can provide a custom selection reason with useTarget"() {
            def details = newDependencyResolveDetails("org", "foo", "1.0")
    
            when:
            details.because("forcefully upgrade dependency")
            details.useTarget("org:bar:2.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. releasenotes/notes/38192.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 02:25:33 UTC 2022
    - 128 bytes
    - Viewed (0)
  7. internal/bucket/replication/sourceselectioncriteria.go

    )
    
    // ReplicaModifications specifies if replica modification sync is enabled
    type ReplicaModifications struct {
    	Status Status `xml:"Status" json:"Status"`
    }
    
    // SourceSelectionCriteria - specifies additional source selection criteria in ReplicationConfiguration.
    type SourceSelectionCriteria struct {
    	ReplicaModifications ReplicaModifications `xml:"ReplicaModifications" json:"ReplicaModifications"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    //
    // The order of the result is as for types.MethodSet(T).
    func IntuitiveMethodSet(T types.Type, msets *MethodSetCache) []*types.Selection {
    	isPointerToConcrete := func(T types.Type) bool {
    		ptr, ok := aliases.Unalias(T).(*types.Pointer)
    		return ok && !types.IsInterface(ptr.Elem())
    	}
    
    	var result []*types.Selection
    	mset := msets.MethodSet(T)
    	if types.IsInterface(T) || isPointerToConcrete(T) {
    		for i, n := 0, mset.Len(); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         *
         * @param description a description of the selection reason
         *
         * @return this details object
         *
         * @since 4.5
         */
        DependencyResolveDetails because(String description);
    
        /**
         * Configures the artifact selection for the target component of this dependency resolution rule.
         * @param details the artifact selection details
         *
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

        /**
         * Returns the set of variants of this component to use for variant aware resolution of the dependency graph nodes.
         * May be empty, in which case selection falls back to an ecosystem-specific selection strategy.
         */
        List<? extends VariantGraphResolveMetadata> getVariantsForGraphTraversal();
    
        /**
         * Returns the names of all legacy configurations for this component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top