Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 434 for Resolution (0.36 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

             * or another compatible component can be chosen instead if more constraints arise.
             */
            Selected(true),
    
            /**
             * An evicted component has been evicted and will never, ever be chosen starting from the moment it is evicted.
             * Either because it has been excluded, or because conflict resolution selected a different version.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    
    /**
     * Specific problems during resolution that we want to account for:
     * <ul>
     *   <li>missing metadata</li>
     *   <li>version range violations</li>
     *   <li>version circular dependencies</li>
     *   <li>missing artifacts</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java

    import org.apache.maven.api.model.Parent;
    import org.apache.maven.api.model.Repository;
    import org.apache.maven.model.Model;
    import org.apache.maven.model.resolution.InvalidRepositoryException;
    import org.apache.maven.model.resolution.ModelResolver;
    import org.apache.maven.model.resolution.UnresolvableModelException;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.*;
    
    /**
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->c'
            //resolution sequence: a1,a2,!,b,c,!
            publishedMavenModules 'a:2->b', 'b->c'
            expect:
            resolvedModules 'c'
        }
    
        def "uses already resolved highest version"() {
            declaredDependencies 'a:1', 'a:2'
            declaredReplacements 'c->a'
            //resolution sequence: a1,a2,!,b,c,!
            publishedMavenModules 'a:2->b', 'b->c'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param coordinate coordinates of the artifact to resolve
         * @return requested artifact together with the path to its file
         * @throws org.apache.maven.api.services.ArtifactResolverException if the artifact resolution failed
         *
         * @see org.apache.maven.api.services.ArtifactResolver#resolve(Session, Collection)
         */
        @Nonnull
        Map.Entry<Artifact, Path> resolveArtifact(@Nonnull ArtifactCoordinate coordinate);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/runtime/os_windows.go

    // timer resolution to 15.6 ms, this keeps timer error under roughly 1
    // part in 4.
    const osRelaxMinNS = 60 * 1e6
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    //
    // Some versions of Windows have high resolution timer. For those
    // versions osRelax is noop.
    // For Windows versions without high resolution timer, osRelax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

         * href="http://docs.codehaus.org/x/IGU#DependencyMediationandConflictResolution-Scoperesolution">More info</a>.
         *
         * @param farthest farthest resolution node
         * @param nearest nearest resolution node
         * @param listeners
         */
        boolean checkScopeUpdate(ResolutionNode farthest, ResolutionNode nearest, List<ResolutionListener> listeners) {
            boolean updateScope = false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    			shouldEq: false,
    			name:     "different auto allocated IPv6 addresses",
    		},
    		{
    			first:    &Service{Resolution: ClientSideLB},
    			other:    &Service{Resolution: Passthrough},
    			shouldEq: false,
    			name:     "different resolution",
    		},
    		{
    			first:    &Service{MeshExternal: true},
    			other:    &Service{MeshExternal: false},
    			shouldEq: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

            'java-library' | 'api'                          | FORBIDDEN
            'java-library' | 'compileOnlyApi'               | FORBIDDEN
        }
    
        def "the #configuration configuration is setup correctly for resolution in the #plugin plugin"() {
            given:
            buildFile << """
                plugins { id '$plugin' }
                task resolve {
                    def conf = configurations.${configuration}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    ====
    
    [[sec:resolvable-consumable-configs]]
    == Resolvable and consumable configurations
    
    Configurations are a fundamental part of dependency resolution in Gradle.
    In the context of dependency resolution, it is useful to distinguish between a _consumer_ and a _producer_. Along these lines, configurations have at least 3 different roles:
    
    1. to declare dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top