Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 199 for resolveDfs (0.17 sec)

  1. 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)
  2. 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)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

     * changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public interface PluginDependenciesResolver {
    
        /**
         * Resolves the main artifact of the specified plugin.
         *
         * @param plugin The plugin for which to resolve the main artifact, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/apis/resource/namedresources.go

    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    	//    attributes.quantity["a"].isGreaterThan(quantity("0")) &&
    	//    attributes.stringslice["b"].isSorted()
    	Selector string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

                            new File("$userHomeDir/caches/$it").deleteDir()
                        }
                    }
                }
            }
        }
    
        def "resolves dependencies from external repository"() {
            startServer()
    
            given:
            runner.tasksToRun = ['resolveDependencies']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            e.message == "Cannot locate tasks that match ':pr:task' as project 'pr' is ambiguous in <root project>. Candidates are: 'proj', 'proj1', 'proj2', 'proj3'."
        }
    
        def "lazily resolves an exclude name to tasks in the target build"() {
            when:
            def filter = selector.resolveExcludedTaskName(target, "task")
    
            then:
            filter.build == target
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.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=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeresolver.go

    */
    
    package unstructured
    
    import (
    	"strings"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    const object = common.RootTypeReferenceName
    
    type TypeResolver struct {
    }
    
    // Resolve resolves the TypeRef for the given type name
    // that starts with "Object".
    // This is the unstructured version, which means the
    // returned TypeRef does not refer to the schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/VersionControlServices.java

                this.workingDirResolver = workingDirResolver;
            }
    
            @Override
            public void create(Collection<ComponentResolvers> resolvers, LocalComponentRegistry localComponentRegistry) {
                if (vcsResolver.hasRules()) {
                    resolvers.add(new VcsDependencyResolver(
                        localComponentRegistry, vcsResolver, versionControlSystemFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeDependencyResolver.java

    package org.gradle.execution.plan;
    
    import org.gradle.api.Action;
    import org.gradle.api.Task;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Resolves dependencies to {@link TaskNode} objects. Uses the same logic as {@link #TASK_AS_TASK}.
     */
    @ServiceScope(Scope.Build.class)
    public class TaskNodeDependencyResolver implements DependencyResolver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top