Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 924 for reachable (0.15 sec)

  1. guava/src/com/google/common/collect/HashBiMap.java

      static final class BiEntry<K extends @Nullable Object, V extends @Nullable Object>
          extends ImmutableEntry<K, V> {
        final int keyHash;
        final int valueHash;
    
        // All BiEntry instances are strongly reachable from owning HashBiMap through
        // "HashBiMap.hashTableKToV" and "BiEntry.nextInKToVBucket" references.
        // Under that assumption, the remaining references can be safely marked as @Weak.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	// StatefulSet indicates that the pod should be backed by a StatefulSet. This implies Headless=true
    	// as well.
    	StatefulSet bool
    
    	// StaticAddress for some echo implementations is an address locally reachable within
    	// the test framework and from the echo Cluster's network.
    	StaticAddresses []string
    
    	// ServiceAccount (k8s only) indicates that a service account should be created
    	// for the deployment.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	oldv := defForUses[b.ID]
    	if oldv != x { // either a new definition replacing x, or nil if it is proven that there are no uses reachable from b
    		return
    	}
    	idom := f.Idom()
    outer:
    	for _, e := range b.Succs {
    		s := e.b
    		// check phi functions in the dominance frontier
    		if sdom.isAncestor(h, s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. istioctl/pkg/multicluster/remote_secret.go

    	}
    	server := restCfg.Host
    	if strings.Contains(server, "127.0.0.1") || strings.Contains(server, "localhost") {
    		return server, fmt.Errorf(
    			"server in Kubeconfig is %s. This is likely not reachable from inside the cluster, "+
    				"if you're using Kubernetes in Docker, pass --server with the container IP for the API Server",
    			server), nil
    	}
    	return server, nil, nil
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/types.go

    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. README.md

    | Dashboard                                                                                   | Creating a bucket                                                                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    //   - Weak handles are unique and canonical for each byte offset into
    //     an object that a strong pointer may point to, until an object
    //     becomes unreachable.
    //
    //   - Weak handles contain nil as soon as an object becomes unreachable
    //     the first time, before a finalizer makes it reachable again. New
    //     weak handles created after resurrection are newly unique.
    //
    // specialWeakHandle is allocated from non-GC'd memory, so any heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/emit.go

    	ml := rtcov.Meta.List
    
    	// In the normal case (go build -o prog.exe ... ; ./prog.exe)
    	// len(ml) will always be non-zero, but we check here since at
    	// some point this function will be reachable via user-callable
    	// APIs (for example, to write out coverage data from a server
    	// program that doesn't ever call os.Exit).
    	if len(ml) == 0 {
    		return nil, nil
    	}
    
    	s := &emitState{
    		metalist: ml,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{Network: "network2", Address: "20.0.0.3"},
    		},
    
    		// network3 has no endpoints.
    
    		// network4 has a single endpoint, but not gateway so it will always
    		// be considered directly reachable.
    		{Cluster: "cluster4"}: {
    			{Network: "network4", Address: "40.0.0.1"},
    		},
    	}}
    	// apply common properties
    	for sk, shard := range shards.Shards {
    		for i, ep := range shard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          if (!callee) continue;
          if (funcs_for_cluster->second.count(callee)) return true;
        }
        return false;
      };
    
      // Populates skip set with functions reachable from TPUPartionedCall ops.
      const auto functions_to_skip =
          FindTPUPartitionedCallReachableFunctions(getOperation());
      for (func::FuncOp func_op : getOperation().getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top