Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 187 for resolveDfs (2.08 sec)

  1. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.singleUrlResolverCode
    
    // We need to test specifically versions before the toolchain provisioning was fixed that support resolvers.
    @IgnoreVersions({ !it.isSupportsCustomToolchainResolvers() || it.isNonFlakyToolchainProvisioning() })
    @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/log/slog/value.go

    // Resolve repeatedly calls LogValue on v while it implements [LogValuer],
    // and returns the result.
    // If v resolves to a group, the group's attributes' values are not recursively
    // resolved.
    // If the number of LogValue calls exceeds a threshold, a Value containing an
    // error is returned.
    // Resolve's return value is guaranteed not to be of Kind [KindLogValuer].
    func (v Value) Resolve() (rv Value) {
    	orig := v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelPathTranslator.java

    import org.apache.maven.api.model.Reporting;
    import org.apache.maven.api.model.Resource;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Resolves relative paths within a model against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultModelPathTranslator implements ModelPathTranslator {
    
        private final PathTranslator pathTranslator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

        }
    
        /**
         * Informs if there are any batched up conflicts.
         */
        @Override
        public boolean hasConflicts() {
            return !conflicts.isEmpty();
        }
    
        /**
         * Resolves the conflict by delegating to the conflict resolver who selects single version from given candidates. Executes provided action against the conflict resolution result object.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                       "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
                       "({languageVersion=99, vendor=any, implementation=vendor-specific}) from 'http://exoticJavaToolchain.com/java-99', " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelPathTranslator.java

    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.model.Reporting;
    import org.apache.maven.api.model.Resource;
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Resolves relative paths within a model against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultModelPathTranslator implements ModelPathTranslator {
    
        private final PathTranslator pathTranslator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    include::sample[dir="snippets/java/toolchain-foojay/groovy/",files="settings.gradle[tags=plugin-application]"]
    ====
    
    In general, when applying toolchain resolver plugins, the toolchain download resolvers provided by them also need to be configured.
    Let's illustrate with an example.
    Consider two toolchain resolver plugins applied by the build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

     * * for each typesafe accessor container type, extracts its properties (see [TypesafeProjectPropertyProducer]);
     * * at runtime, resolves property access to the `projects` property on [Project] instances.
     */
    @Suppress("unused") // temporarily excluded from the schema, awaiting rework in a way that does not require the target scope
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

    import org.gradle.plugin.use.PluginId;
    import org.gradle.plugin.use.tracker.internal.PluginVersionTracker;
    
    import javax.annotation.Nullable;
    
    /**
     * Resolves a plugin either by determining that it is already on the classpath
     * or by delegating to another resolver.
     */
    public class AlreadyOnClasspathPluginResolver implements PluginResolver {
        private final PluginResolver delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultScriptHandlerTest.groovy

            then:
            0 * configuration._
            0 * buildLogicBuilder.resolveClassPath(_, _)
    
            and:
            classpath == ClassPath.EMPTY
        }
    
        def "resolves classpath configuration when configuration container has been queried"() {
            def classpath = Mock(ClassPath)
    
            when:
            handler.configurations
            def result = handler.instrumentedScriptClassPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 19:43:17 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top