Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 749 for reachable (0.34 sec)

  1. pkg/scheduler/apis/config/types.go

    	// +optional
    	ManagedResources []ExtenderManagedResource
    	// Ignorable specifies if the extender is ignorable, i.e. scheduling should not
    	// fail when the extender returns an error or is not reachable.
    	Ignorable bool
    }
    
    // ExtenderManagedResource describes the arguments of extended resources
    // managed by an extender.
    type ExtenderManagedResource struct {
    	// Name is the extended resource name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableCollection.java

     *       ImmutableList#subList} may retain a reference to the entire data set, preventing it from
     *       being garbage collected. If some of the data is no longer reachable through other means,
     *       this constitutes a memory leak. Pass the view collection to the appropriate {@code copyOf}
     *       method to obtain a correctly-sized copy.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/ValueGraph.java

       *
       * <p>In an undirected graph, this is equivalent to {@link #adjacentNodes(Object)}.
       *
       * <p>This is <i>not</i> the same as "all nodes reachable from {@code node} by following outgoing
       * edges". For that functionality, see {@link Graphs#reachableNodes(Graph, Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

            }
        }
    
        @Nullable
        public OrdinalGroup getOrdinal() {
            return group.asOrdinal();
        }
    
        /**
         * Potentially update the ordinal group of this node when it is reachable from the given group.
         */
        public void maybeInheritOrdinalAsDependency(@Nullable OrdinalGroup candidateOrdinal) {
            if (group == candidateOrdinal || candidateOrdinal == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       ImmutableList#subList} may retain a reference to the entire data set, preventing it from
     *       being garbage collected. If some of the data is no longer reachable through other means,
     *       this constitutes a memory leak. Pass the view collection to the appropriate {@code copyOf}
     *       method to obtain a correctly-sized copy.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top