Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,274 for Resolution (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilitiesResolution.java

     */
    @HasInternalProtocol
    public interface CapabilitiesResolution {
        /**
         * Configures the resolution strategy of capability conflicts for all capabilities.
         *
         * @param action the configuration action
         */
        void all(Action<? super CapabilityResolutionDetails> action);
    
        /**
         * Configures the resolution strategy of a specific capability. The capability version is <i>irrelevant</i>.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/Utils.kt

        schema: AnalysisSchema,
        resolution: ResolutionResult,
        configureLambdas: ConfigureLambdaHandler,
        customAccessors: RuntimeCustomAccessors,
        createInstance: () -> T
    ): T {
        val trace = assignmentTrace(resolution)
        val context = ReflectionContext(SchemaTypeRefContext(schema), resolution, trace)
        val topLevel = reflect(resolution.topLevelReceiver, context)
    
        return createInstance().also {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

         * Gets the filter used to exclude some dependencies from resolution.
         *
         * @return The filter to exclude dependencies from resolution or {@code null} to resolve all dependencies.
         */
        DependencyFilter getResolutionFilter();
    
        /**
         * Sets the filter used to exclude some dependencies from resolution. Note that this filter only controls the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactoryTest.groovy

            then:
            def e = thrown(InvalidUserDataException)
            e.message == "Cannot enable dependency mapping without configuring a resolution configuration."
        }
    
        def "returns resolution backed resolver if dependency mapping is enabled with configuration"() {
            given:
            def conf = conf()
            def variant = resolutionBacked(true, conf)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionDocumentTransformation.kt

        ) = (node as? ElementNode)?.name == ConventionsTopLevelReceiver::conventions.name &&
            resolutionContainer.data(node).let { resolution ->
                resolution is ConfiguringElementResolved &&
                    resolution.elementType.name.qualifiedName == ConventionsConfiguringBlock::class.qualifiedName
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

            resolvers.forEach {
                val resolution = it.resolvePropertyRead(receiverClass, name)
                if (resolution !is UnresolvedRead)
                    return resolution
            }
            return UnresolvedRead
        }
    
        override fun resolvePropertyWrite(receiverClass: KClass<*>, name: String): WriteResolution {
            resolvers.forEach {
                val resolution = it.resolvePropertyWrite(receiverClass, name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

         */
        boolean isForced();
    
        /**
         * Informs whether the component was selected by conflict resolution. For more information about Gradle's conflict resolution please refer to the user manual. {@link
         * org.gradle.api.artifacts.ResolutionStrategy} contains information about conflict resolution and includes means to configure it.
         */
        boolean isConflictResolution();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledScriptException.java

        private final List<String> resolutions;
    
        public PrecompiledScriptException(String message, String resolution) {
            super(message);
            this.resolutions = Collections.singletonList(resolution);
        }
    
        @Override
        public List<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    = Understanding dependency resolution
    
    This chapter covers the way dependency resolution works _inside_ Gradle.
    After covering how you can declare <<declaring_repositories.adoc#declaring-repositories,repositories>> and <<declaring_dependencies.adoc#declaring-dependencies,dependencies>>, it makes sense to explain how these declarations come together during dependency resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. releasenotes/notes/targetPort-service-entry.yaml

    releaseNotes:
      - |
        **Improved** `ServiceEntry` with `resolution: NONE` to respect `targetPort`, if specified.
        This is particularly useful when doing TLS origination, allowing to set `port:80, targetPort: 443`.
        If undesired set `--compatibilityVersion=1.21` to revert to the old behavior, or remove the `targetPort` specification.
    upgradeNotes:
      - title: "`ServiceEntry` with `resolution: NONE` now respects `targetPort`"
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 794 bytes
    - Viewed (0)
Back to top