Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for NewTest (0.12 sec)

  1. pkg/controller/daemon/update.go

    			if hash := pod.Labels[apps.DefaultDaemonSetUniqueLabelKey]; len(hash) > 0 {
    				liveHashes[hash] = true
    			}
    		}
    	}
    
    	// Clean up old history from smallest to highest revision (from oldest to newest)
    	sort.Sort(historiesByRevision(old))
    	for _, history := range old {
    		if toKill <= 0 {
    			break
    		}
    		if hash := history.Labels[apps.DefaultDaemonSetUniqueLabelKey]; liveHashes[hash] {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// deprecationWarning overrides the default warning returned to API clients.
    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    	// +optional
    	DeprecationWarning *string `json:"deprecationWarning,omitempty" protobuf:"bytes,8,opt,name=deprecationWarning"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    	}
    	return x, buf, nil
    }
    
    // decodeVersions will decode a number of versions from a buffer
    // and perform a callback for each version in order, newest first.
    // Any non-nil error is returned.
    func decodeVersions(buf []byte, versions int, fn func(idx int, hdr, meta []byte) error) (err error) {
    	var tHdr, tMeta []byte // Zero copy bytes
    	for i := 0; i < versions; i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top