Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 434 for Resolution (0.17 sec)

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

                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause 'Cycle detected in consistent resolution sources: conf -> other -> another -> conf'
        }
    
        def "resolution rules have higher priority than consistency"() {
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
                'org:foo:1.2'()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

    cool-project:5.0 root
    foo:1.0 between versions 1.0 and 0.5
    leaf:2.0 forced
    bar:1.0 requested
    baz:1.0 requested
    """
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
        def "resolution result API gives access to dependency reasons in case of conflict"() {
            given:
            mavenRepo.with {
                def leaf1 = module('org.test', 'leaf', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

                    }
                }
            """)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
        }
    
        def 'when no version is specified, resolution fails'() {
            given:
            publishTestPlugin()
            buildScript """
              plugins {
                  id "org.example.plugin" version '1.2'
              }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.resolution.ArtifactRequest;
    import org.eclipse.aether.resolution.ArtifactResolutionException;
    import org.eclipse.aether.resolution.VersionRangeRequest;
    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaExplicitReceiverValue
    import org.jetbrains.kotlin.analysis.api.resolution.KaFunctionCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaImplicitReceiverValue
    import org.jetbrains.kotlin.analysis.api.resolution.KaPartiallyAppliedFunctionSymbol
    import org.jetbrains.kotlin.analysis.api.resolution.KaPartiallyAppliedSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    func makeService(hostname host.Name, configNamespace, address string, ports map[string]int,
    	external bool, resolution model.Resolution, serviceAccounts ...string,
    ) *model.Service {
    	svc := &model.Service{
    		CreationTime:    GlobalTime,
    		Hostname:        hostname,
    		DefaultAddress:  address,
    		MeshExternal:    external,
    		Resolution:      resolution,
    		ServiceAccounts: serviceAccounts,
    		Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * There is no validation that an ignored dependency is present in any configuration resolution.
    * If the dependency is present in lock state, loading it will filter out the dependency.
    * If the dependency is present in the resolution result, it will be ignored when validating that resolution matches the lock state.
    * Finally, if the dependency is present in the resolution result and the lock state is persisted, it will be absent from the written lock state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution_rules]]
    = Customizing resolution of a dependency directly
    
    This section covers mechanisms Gradle offers to directly influence the behavior of the dependency resolution engine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.resolution.InvalidRepositoryException#getRepository():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.model.resolution.InvalidRepositoryException#InvalidRepositoryException(java.lang.String,org.apache.maven.model.Repository,java.lang.Throwable):CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

    import org.eclipse.aether.repository.WorkspaceReader;
    import org.eclipse.aether.resolution.MetadataRequest;
    import org.eclipse.aether.resolution.MetadataResult;
    import org.eclipse.aether.resolution.VersionRangeRequest;
    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    import org.eclipse.aether.spi.synccontext.SyncContextFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top