Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 406 for reachable (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalGroup.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import javax.annotation.Nullable;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * Represents a set of nodes reachable from a particular entry point node (a "requested task")
     */
    public class OrdinalGroup extends NodeGroup {
        private final int ordinal;
        @Nullable
        private final OrdinalGroup previous;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

    // Verifies that specified ops, and ops reachable from those, are preserved.
    
    // CHECK-LABEL: func @preserve_unreachable_tpu_replicate_metadata
    func.func @preserve_unreachable_tpu_replicate_metadata() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolverResults.java

                 * Implementations are lazy, so that the selection happens only when the contents are queried.
                 *
                 * @param dependencySpec Select only those artifacts reachable from first level dependencies that match the given spec.
                 */
                SelectedArtifactSet select(Spec<? super Dependency> dependencySpec);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. docs/works_with_okhttp.md

     * [okhttp-staleiferror-interceptor](https://github.com/PeelTechnologies/okhttp-staleiferror-interceptor/): serve stale responses when the server isn’t reachable.
     * [okhttp-stats](https://github.com/flipkart-incubator/okhttp-stats): Get stats like average network speed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    	"k8s.io/client-go/tools/clientcmd"
    )
    
    // ClientBackedDryRunGetter implements the DryRunGetter interface for use in NewDryRunClient() and proxies all GET and LIST requests to the backing API server reachable via rest.Config
    type ClientBackedDryRunGetter struct {
    	client        clientset.Interface
    	dynamicClient dynamic.Interface
    }
    
    // InitDryRunGetter should implement the DryRunGetter interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top