Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for resolveDfs (2.68 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
            // At the same time, all the cases test the same functionality of the ExecHandle implementation.
            // 'JavaExec task'           | 'run'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top