Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 603 for Indexes (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // the purpose of estimating the cost of incoming mutating requests.
    type watchTracker struct {
    	// indexes represents a set of registered indexes.
    	// It can't change after creation.
    	indexes builtinIndexes
    
    	lock       sync.Mutex
    	watchCount map[watchIdentifier]int
    }
    
    func NewWatchTracker() WatchTracker {
    	return &watchTracker{
    		indexes:    getBuiltinIndexes(),
    		watchCount: make(map[watchIdentifier]int),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    // index for each LMS-substring, in sorted order, at the right end of sa.
    // That is, it removes the L-type indexes that are present on entry,
    // and it inserts but then removes the interior S-type indexes too,
    // leaving the LMS-substring start indexes packed into sa[len(sa)-numLMS:].
    // (Only the LMS-substring start indexes are processed by the recursion.)
    func induceSubS_8_32(text []byte, sa, freq, bucket []int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"succeededIndexes": "succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job. The list of indexes must be within 0 to \".spec.completions-1\" and must not contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/controller/job/indexed_job_utils.go

    	result := prevIntervals.withOrderedIndexes(sets.List(newSucceeded))
    	return prevIntervals, result
    }
    
    // calculateFailedIndexes returns the list of failed indexes in compressed
    // format (intervals). The list includes indexes already present in
    // .status.failedIndexes and indexes that failed since the last sync.
    func calculateFailedIndexes(logger klog.Logger, job *batch.Job, pods []*v1.Pod) *orderedIntervals {
    	var prevIntervals orderedIntervals
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue30116.go

    var indexes = []int64{-9876543210, -1, 0, 2, 3, 9876543210}
    var slices = []int64{-9876543210, -1, 0, 3, 4, 9876543210}
    
    var w *tabwriter.Writer
    
    func main() {
    	w = tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', tabwriter.AlignRight)
    	defer w.Flush()
    	doIndex()
    	doSlice()
    	doSlice3()
    }
    func doIndex() {
    	a := []int{1, 2, 3}
    	for _, i := range indexes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue30116u.go

    var indexes = []uint64{0, 2, 3, 1<<32 - 1, 1<<64 - 1}
    var slices = []uint64{0, 3, 4, 1<<32 - 1, 1<<64 - 1}
    
    var w *tabwriter.Writer
    
    func main() {
    	w = tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', tabwriter.AlignRight)
    	defer w.Flush()
    	doIndex()
    	doSlice()
    	doSlice3()
    }
    func doIndex() {
    	a := []int{1, 2, 3}
    	for _, i := range indexes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    type SuccessPolicyRule struct {
    	// succeededIndexes specifies the set of indexes
    	// which need to be contained in the actual set of the succeeded indexes for the Job.
    	// The list of indexes must be within 0 to ".spec.completions-1" and
    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		size = 1 << uint(t.H)
    	}
    	start := t.N << uint(t.H)
    	indexes := make([]int64, size)
    	for i := 0; i < size; i++ {
    		indexes[i] = StoredHashIndex(t.H*t.L, start+int64(i))
    	}
    
    	hashes, err := r.ReadHashes(indexes)
    	if err != nil {
    		return nil, err
    	}
    	if len(hashes) != len(indexes) {
    		return nil, fmt.Errorf("tlog: ReadHashes(%d indexes) = %d hashes", len(indexes), len(hashes))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    type SuccessPolicyRule struct {
    	// succeededIndexes specifies the set of indexes
    	// which need to be contained in the actual set of the succeeded indexes for the Job.
    	// The list of indexes must be within 0 to ".spec.completions-1" and
    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais2.go

    	// This scan is similar to the one in induceSubL_8_64 above.
    	// That one arranges to clear all but the leftmost L-type indexes.
    	// This scan leaves all the L-type indexes and the original S-type
    	// indexes, but it negates the positive leftmost L-type indexes
    	// (the ones that induceS_8_64 needs to process).
    
    	// expand_8_64 left out the implicit entry sa[-1] == len(text),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top