Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for baseIndex (0.14 sec)

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

    	return qs
    }
    
    // createQueues is a helper method for initializing an array of n queues
    func createQueues(n, baseIndex int) []*queue {
    	fqqueues := make([]*queue, n)
    	for i := 0; i < n; i++ {
    		fqqueues[i] = &queue{index: baseIndex + i, requestsWaiting: newRequestFIFO(), requestsExecuting: sets.New[*request]()}
    	}
    	return fqqueues
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/branches.go

    						if _, ok := t.Tag.(*TypeSwitchGuard); ok {
    							msg = "cannot fallthrough in type switch"
    						} else if ctxt.caseIndex < 0 || stmtIndex+1 < len(stmtList) {
    							// fallthrough nested in a block or not the last statement
    							// use msg as is
    						} else if ctxt.caseIndex+1 == len(t.Body) {
    							msg = "cannot fallthrough final case in switch"
    						} else {
    							break // fallthrough ok
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	astIndex          ID = 44
    	astESIndex        ID = 45
    	azIndex           ID = 46
    	azCyrlIndex       ID = 47
    	azCyrlAZIndex     ID = 48
    	azLatnIndex       ID = 49
    	azLatnAZIndex     ID = 50
    	basIndex          ID = 51
    	basCMIndex        ID = 52
    	beIndex           ID = 53
    	beBYIndex         ID = 54
    	bemIndex          ID = 55
    	bemZMIndex        ID = 56
    	bezIndex          ID = 57
    	bezTZIndex        ID = 58
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top