Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for resolveDfs (0.83 sec)

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

            ComponentResolvers resolvers = getResolvers(resolveContext, Collections.emptyList());
            DependencyGraphVisitor artifactsGraphVisitor = artifactVisitorFor(artifactsBuilder, resolvers);
    
            ImmutableList<DependencyGraphVisitor> visitors = ImmutableList.of(failureCollector, resolutionResultBuilder, localComponentsVisitor, artifactsGraphVisitor);
            doResolve(resolveContext, resolvers, false, IS_LOCAL_EDGE, visitors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

        private final List<Resolver> resolvers;
        private final Map<String, Set<NodeState>> capabilityWithoutVersionToNodes = new HashMap<>();
        private final Deque<CapabilityConflict> conflicts = new ArrayDeque<>();
    
        public DefaultCapabilitiesConflictHandler(List<Resolver> resolvers) {
            this.resolvers = resolvers;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/runtime1.go

    }
    
    // reflectlite_resolveNameOff resolves a name offset from a base pointer.
    //
    //go:linkname reflectlite_resolveNameOff internal/reflectlite.resolveNameOff
    func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflectlite_resolveTypeOff resolves an *rtype offset from a base type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run.go

    		// Mark all UDP dns traffic with dst port 53 as zone 2. These are application client packets towards DNS resolvers.
    		f.Run("-p", "udp", "--dport", "53",
    			"-j", constants.CT, "--zone", "2")
    		// Mark all UDP dns traffic with src port 53 as zone 1. These are response packets from the DNS resolvers.
    		f.WithChain(constants.PREROUTING).Run("-p", "udp", "--sport", "53",
    			"-j", constants.CT, "--zone", "1")
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. src/net/lookup_test.go

    	testenv.SkipFlakyNet(t)
    
    	defer dnsWaitGroup.Wait()
    
    	resolvers := make([]*lookupCustomResolver, 2)
    	for i := range resolvers {
    		cs := lookupCustomResolver{Resolver: &Resolver{PreferGo: true}}
    		cs.Dial = cs.dial()
    		resolvers[i] = &cs
    	}
    
    	var wg sync.WaitGroup
    	wg.Add(len(resolvers))
    	for i, resolver := range resolvers {
    		go func(r *Resolver, index int) {
    			defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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/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)
Back to top