Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 947 for reachable (0.14 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

            this.moduleRegistry = moduleRegistry;
        }
    
        @Override
        public ClassPath findClassPath(String name) {
            if (name.equals("GRADLE_RUNTIME")) {
                // Use everything reachable from the daemon implementation
                return moduleRegistry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
            }
            if (name.equals("GRADLE_INSTALLATION_BEACON")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

     * `::1` will reach the IPv6 server.
     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
     * test what OkHttp does when both are reachable, or if only one is reachable.
     *
     * This test only runs on host machines that have both IPv4 and IPv6 addresses for localhost.
     */
    @Timeout(30)
    class FastFallbackTest {
      @RegisterExtension
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpOutgoingConnector.java

            }
            InetEndpoint address = (InetEndpoint) destinationAddress;
            LOGGER.debug("Attempting to connect to {}.", address);
    
            // Try each address in turn. Not all of them are necessarily reachable (eg when socket option IPV6_V6ONLY
            // is on - the default for debian and others), so we will try each of them until we can connect
            List<InetAddress> candidateAddresses = address.getCandidates();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/TypeInspector.java

        public TypeInspector() {
            stopAt.add(List.class);
            stopAt.add(Set.class);
            stopAt.add(Collection.class);
            stopAt.add(Map.class);
        }
    
        /**
         * Returns all interfaces reachable from the given interface, including the interface itself.
         */
        public Set<Class<?>> getReachableTypes(Class<?> type) {
            Set<Class<?>> types = inspected.get(type);
            if (types == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let description = [{
        This is a variation of DecomposeResourceOps pass. It operates on a module and
        only decomposes ops within a device cluster (tf_device.cluster op) and any
        functions reachable from the cluster.
      }];
    
      let constructor = "TFDevice::CreateDecomposeResourceOpsInClusterPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	// for external load-balancers which use nodes as a second hop (e.g. many cloud LBs which only
    	// understand nodes). For services that use externalTrafficPolicy=Local, this may mean that
    	// any backends on excluded nodes are not reachable by those external load-balancers.
    	// Implementations of this exclusion may vary based on provider.
    	LabelNodeExcludeBalancers = "node.kubernetes.io/exclude-from-external-load-balancers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/lca.go

    	for _, b := range f.Blocks {
    		blocks[b.ID].b = b
    		if dom[b.ID] == nil {
    			continue // entry or unreachable
    		}
    		parent := dom[b.ID].ID
    		blocks[b.ID].parent = parent
    		blocks[b.ID].sibling = blocks[parent].firstChild
    		blocks[parent].firstChild = b.ID
    	}
    
    	// Compute euler tour ordering.
    	// Each reachable block will appear #children+1 times in the tour.
    	tour := make([]ID, 0, f.NumBlocks()*2-1)
    	type queueEntry struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/generator/DependencyTreeTest.groovy

            tree.getProjectIdForClass(25) == 1
            tree.getProjectIdForClass(38) == 2
            tree.getTransitiveChildClassIds(51) == [42, 46, 50, 12, 25, 38]
        }
    
        def "adds additional dependency to projects reachable through api dependency"() {
            //      (Project Level 0)                 (Project Level 1)      (Project Level 2)
            // Project0  Project4  Project8    Project3  Project7 Project11     Project 12
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/runtime/mfixalloc.go

    // this cannot be used by some of the internal GC structures. For example when
    // the sweeper is placing an unmarked object on the free list it does not want the
    // write barrier to be called since that could result in the object being reachable.
    type mlink struct {
    	_    sys.NotInHeap
    	next *mlink
    }
    
    // Initialize f to allocate objects of the given size,
    // using the allocator to obtain chunks of memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/reloctype.go

    	R_INITORDER
    
    	// R_WEAK marks the relocation as a weak reference.
    	// A weak relocation does not make the symbol it refers to reachable,
    	// and is only honored by the linker if the symbol is in some other way
    	// reachable.
    	R_WEAK = -1 << 15
    
    	R_WEAKADDR    = R_WEAK | R_ADDR
    	R_WEAKADDROFF = R_WEAK | R_ADDROFF
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top