Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 187 for resolveDfs (0.24 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

            then:
            test(result)
    
            where:
            logLevel | test
            "warn"   | { ExecutionResult r -> r.assertOutputContains("Some toolchain resolvers had internal failures: failsOnResolve (Ooops!). " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ProjectStateLockingCrossVersionTest.groovy

    import org.gradle.integtests.tooling.r33.FetchIdeaProject
    
    @TargetGradleVersion(">=5.0")
    class ProjectStateLockingCrossVersionTest extends ToolingApiSpecification {
        def "does not emit deprecation warnings when idea model builder resolves a configuration"() {
            singleProjectBuildInRootFolder("root") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

            resolver
        }
    
        private void mockRegistry(JavaToolchainResolver... resolvers) {
            def repositories = IntStream.range(0, resolvers.length)
                .mapToObj { i -> mockRepository("resolver" + i, resolvers[i]) }
                .collect(Collectors.toList())
    
            registry.requestedRepositories() >> repositories
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimeFunctionResolver.kt

        }
    }
    
    
    class CompositeFunctionResolver(private val resolvers: List<RuntimeFunctionResolver>) : RuntimeFunctionResolver {
        override fun resolve(receiverClass: KClass<*>, name: String, parameterValueBinding: ParameterValueBinding): RuntimeFunctionResolver.Resolution {
            resolvers.forEach {
                val resolution = it.resolve(receiverClass, name, parameterValueBinding)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 10:30:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         *
         * <p>The collection is live and resolves the files on each query.
         *
         * <p>The collection fails to resolve if it contains providers which are not present.
         */
        FileCollectionInternal resolving(String displayName, Object sources);
    
        /**
         * Creates a {@link FileCollection} with the given files as content.
         *
         * <p>The collection is live and resolves the files on each query.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelPathTranslator.java

    import java.nio.file.Path;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    
    /**
     * Resolves relative paths of a model against a specific base directory.
     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PathTranslator.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.List;
    
    /**
     * Resolves script files according to available {@link ScriptingLanguage} providers.
     *
     * @since 4.0
     */
    @ServiceScope(Scope.Global.class)
    public interface ScriptFileResolver {
    
        /**
         * Resolves a script file.
         *
         * @param dir the directory in which to search
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolverContributor.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Collection;
    
    @ServiceScope(Scope.Build.class)
    public interface PluginResolverContributor {
        void collectResolversInto(Collection<PluginResolver> resolvers);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 951 bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    agentsRuntimeClasspath.description = "Resolves to all Jars that need to be added as agents"
    val gradleScriptPath by startScriptResolver(":gradle-cli-main")
    gradleScriptPath.description = "Resolves to the Gradle start scripts (bin/*) - automatically adds dependency to the :launcher project"
    val sourcesPath by sourcesResolver(listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top