Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initialGen (0.09 sec)

  1. src/internal/trace/order.go

    // required to) continue to call Next until it is exhausted.
    func (o *ordering) Advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) (bool, error) {
    	if o.initialGen == 0 {
    		// Set the initial gen if necessary.
    		o.initialGen = gen
    	}
    
    	var curCtx, newCtx schedCtx
    	curCtx.M = m
    	newCtx.M = m
    
    	var ms *mState
    	if m == NoThread {
    		curCtx.P = NoProc
    		curCtx.G = NoGoroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			cap:  8,
    		},
    		{
    			name: "with existing capacity and length above max",
    			args: args{initialCapacity: 12, initialLen: 5, maxCapacity: 10, sizes: []int{8, 4}},
    			cap:  12,
    			len:  5,
    		},
    		{
    			name: "with existing capacity and length below max",
    			args: args{initialCapacity: 5, initialLen: 3, maxCapacity: 10, sizes: []int{8, 4}},
    			cap:  8,
    			len:  3,
    		},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    }
    
    // Wrapper for calling NewMultipartUploadParallel tests for both Erasure multiple disks and single node setup.
    // The objective of the test is to initialte multipart upload on the same object 10 times concurrently,
    // The UploadID from the response body is parsed and its existence is asserted with an attempt to ListParts using it.
    func TestAPINewMultipartHandlerParallel(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top