Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for resolveDfs (0.28 sec)

  1. cmd/endpoint.go

    }
    
    // GridHost returns the host to be used for grid connections.
    func (endpoint Endpoint) GridHost() string {
    	return fmt.Sprintf("%s://%s", endpoint.Scheme, endpoint.Host)
    }
    
    // UpdateIsLocal - resolves the host and updates if it is local or not.
    func (endpoint *Endpoint) UpdateIsLocal() (err error) {
    	if endpoint.Host != "" {
    		endpoint.IsLocal, err = isLocalHost(endpoint.Hostname(), endpoint.Port(), globalMinioPort)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                    sb.append("Some toolchain resolvers had internal failures: ")
                        .append(failureMessage(resolveFailures))
                        .append(".");
                }
                if (!provisioningFailures.isEmpty()) {
                    sb.append(resolveFailures.isEmpty() ? "" : " ");
                    sb.append("Some toolchain resolvers had provisioning failures: ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ExternalModuleComponentResolverFactory.java

    import org.gradle.internal.resolve.result.BuildableComponentResolveResult;
    import org.gradle.util.internal.BuildCommencedTimeProvider;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Creates resolvers that can resolve module components from repositories.
     */
    public class ExternalModuleComponentResolverFactory {
    
        private final static Logger LOGGER = Logging.getLogger(ExternalModuleComponentResolverFactory.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            given:
            initialFiles()
    
            when:
            def dep5 = sourceFile("dep5")
            graph[dep5] = []
            parse(dep5)
            dependencyResolver.resolveAs("dep4", dep5)
            graph[source2] = [dep3, dep5]
    
            then:
            with(state) {
                recompile == [source2]
                removed == []
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

                    new ModuleMetadataSpec.LocalVariant(
                        variant.getName(),
                        attributesFor(variant.getAttributes()),
                        capabilitiesFor(variant.getCapabilities()),
                        dependenciesOf(variant, resolvers.getComponentResolver()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    There are a number of ways a configuration might be resolved unsafely.
    For example:
    
    * A task from one project directly resolves a configuration in another project in the task's action.
    * A task specifies a configuration from another project as an input file collection.
    * A build script for one project resolves a configuration in another project during evaluation.
    * Project configurations are resolved in the settings file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * recursively.
         * @return the set of all configurations
         */
        Set<Configuration> getHierarchy();
    
        /**
         * Resolves this configuration. This locates and downloads the files which make up this configuration, and returns
         * the resulting set of files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                }
                repositories {
                    maven { url '${mavenHttpRepo.uri}' }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "resolves strictly for dependency resolve failures when #expression is used"() {
            createDirs("child")
            settingsFile << "include 'child'"
            def m1 = mavenHttpRepo.module('org.foo', 'hiphop').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top