Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for marking (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Name of the referent.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    	// UID of the referent.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    	UID types.UID `json:"uid" protobuf:"bytes,4,opt,name=uid,casttype=k8s.io/apimachinery/pkg/types.UID"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. src/testing/testing.go

    			// Release the parallel subtests.
    			close(t.barrier)
    			// Wait for subtests to complete.
    			for _, sub := range t.sub {
    				<-sub.signal
    			}
    
    			// Run any cleanup callbacks, marking the test as running
    			// in case the cleanup hangs.
    			cleanupStart := highPrecisionTimeNow()
    			running.Store(t.name, cleanupStart)
    			err := t.runCleanup(recoverAndReturnPanic)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    	Reachparent []Sym
    
    	// CgoExports records cgo-exported symbols by SymName.
    	CgoExports map[string]Sym
    
    	flags uint32
    
    	strictDupMsgs int // number of strict-dup warning/errors, when FlagStrictDups is enabled
    
    	errorReporter *ErrorReporter
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// regardless of whether we are loading the "all" package pattern.
    	//
    	// When the pkgInAll flag and pkgImportsLoaded flags are both set, the caller
    	// who set the last of those flags must propagate the pkgInAll marking to all
    	// of the imports of the marked package.
    	//
    	// A test is marked with pkgInAll if that test would promote the packages it
    	// imports to be in "all" (such as when the test is itself within the main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * individual iterator as it is generated.
       *
       * @param iterator the backing iterator. The {@link PeekingIterator} assumes ownership of this
       *     iterator, so users should cease making direct calls to it after calling this method.
       * @return a peeking iterator backed by that iterator. Apart from the additional {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * individual iterator as it is generated.
       *
       * @param iterator the backing iterator. The {@link PeekingIterator} assumes ownership of this
       *     iterator, so users should cease making direct calls to it after calling this method.
       * @return a peeking iterator backed by that iterator. Apart from the additional {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * java.util.TreeMap}).
       *
       * <p>Each method invocation on the set returned by this method results in exactly one method
       * invocation on the backing map or its {@code keySet} view, with one exception. The {@code
       * addAll} method is implemented as a sequence of {@code put} invocations on the backing map.
       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

       * java.util.TreeMap}).
       *
       * <p>Each method invocation on the set returned by this method results in exactly one method
       * invocation on the backing map or its {@code keySet} view, with one exception. The {@code
       * addAll} method is implemented as a sequence of {@code put} invocations on the backing map.
       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	podInitialBackoffDuration:         DefaultPodInitialBackoffDuration,
    	podMaxBackoffDuration:             DefaultPodMaxBackoffDuration,
    	podMaxInUnschedulablePodsDuration: DefaultPodMaxInUnschedulablePodsDuration,
    }
    
    // Making sure that PriorityQueue implements SchedulingQueue.
    var _ SchedulingQueue = &PriorityQueue{}
    
    // newQueuedPodInfoForLookup builds a QueuedPodInfo object for a lookup in the queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top