Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for resolveDfs (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

            LinkedList<ComponentMetaDataResolveState> queue = new LinkedList<>(resolveStates);
    
            LinkedList<ComponentMetaDataResolveState> missing = new LinkedList<>();
    
            // A first pass to do local resolves only
            RepositoryChainModuleResolution best = findBestMatch(queue, failures, missing);
            if (hasCriticalFailure(failures)) {
                return null;
            }
            if (best != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/net/lookup.go

    	// DNS search list), this option causes such errors to abort the
    	// whole query instead of returning a partial result. This is
    	// not enabled by default because it may affect compatibility
    	// with resolvers that process AAAA queries incorrectly.
    	StrictErrors bool
    
    	// Dial optionally specifies an alternate dialer for use by
    	// Go's built-in DNS resolver to make TCP and UDP connections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/net/dial.go

    			proto, err = lookupProtocol(ctx, protostr)
    			if err != nil {
    				return "", 0, err
    			}
    		}
    		return afnet, proto, nil
    	}
    	return "", 0, UnknownNetworkError(network)
    }
    
    // resolveAddrList resolves addr using hint and returns a list of
    // addresses. The result contains at least one address when error is
    // nil.
    func (r *Resolver) resolveAddrList(ctx context.Context, op, network, addr string, hint Addr) (addrList, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            toolchain.javaHome.toString() == systemSpecificAbsolutePath(expectedPath)
    
            where:
            versionToFind | expectedPath
            7             | "/path/7.9"
            8             | "/path/8.0.zzz.foo" // zzz resolves to a real tool version 999
            14            | "/path/14.0.2+12"
        }
    
        def "uses j9 toolchain if requested"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

        }
    
        /**
         * Creates a 'checkDeps' task that resolves the given configuration.
         */
        void prepare(String configToCheck) {
            prepare {
                config(configToCheck, "checkDeps")
            }
        }
    
        /**
         * Injects the appropriate stuff into the build script. By default, creates a 'checkDeps' task that resolves the configuration provided in the constructor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This will effectively lock all resolvable configurations that have locking enabled.
    Note that in a multi project setup, `dependencies` only is executed on _one_ project, the root one in this case.
    * Declare a custom task that resolves all configurations. This does not work for Android projects.
    
    .Resolving all configurations
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ParallelDownloadsPerformanceTest.resolves dependencies from external repository",
      "durations" : [ {
        "testProject" : "springBootApp",
        "linux" : 767
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ParallelDownloadsPerformanceTest.resolves dependencies from external repository (parallel)",
      "durations" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  8. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "springBootApp",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.ParallelDownloadsPerformanceTest.resolves dependencies from external repository (parallel)",
        "groups" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    type ArgumentError struct {
    	Index int
    	Err   error
    }
    
    func (e *ArgumentError) Error() string { return e.Err.Error() }
    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    // CAUTION: This interface does not support the import of locally
    // vendored packages. See https://golang.org/s/go15vendor.
    // If possible, external implementations should implement ImporterFrom.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        Map<PathType, List<Path>> resolveDependencies(
                @Nonnull Project project, @Nonnull PathScope scope, @Nonnull Collection<PathType> desiredTypes);
    
        /**
         * Resolves an artifact's meta version (if any) to a concrete version. For example, resolves "1.0-SNAPSHOT"
         * to "1.0-20090208.132618-23" or "RELEASE"/"LATEST" to "2.0".
         * <p>
         * Shortcut for {@code getService(VersionResolver.class).resolve(...)}
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top