Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for aloop (0.18 sec)

  1. src/testing/testing.go

    // benchmark function lasts long enough to be timed reliably.
    // The output
    //
    //	BenchmarkRandInt-8   	68453040	        17.8 ns/op
    //
    // means that the loop ran 68453040 times at a speed of 17.8 ns per loop.
    //
    // If a benchmark needs some expensive setup before running, the timer
    // may be reset:
    //
    //	func BenchmarkBigLen(b *testing.B) {
    //	    big := NewBig()
    //	    b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	// reconcilerLoopSleepDuration is the amount of time the reconciler loop
    	// waits between successive executions
    	reconcilerLoopSleepDuration = 1 * time.Nanosecond
    	// waitForAttachTimeout is the maximum amount of time a
    	// operationexecutor.Mount call will wait for a volume to be attached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    }}
    
    func TestEncodeToken(t *testing.T) {
    loop:
    	for i, tt := range encodeTokenTests {
    		var buf strings.Builder
    		enc := NewEncoder(&buf)
    		var err error
    		for j, tok := range tt.toks {
    			err = enc.EncodeToken(tok)
    			if err != nil && j < len(tt.toks)-1 {
    				t.Errorf("#%d %s token #%d: %v", i, tt.desc, j, err)
    				continue loop
    			}
    		}
    		errorf := func(f string, a ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    			opset(AROTRV, r0)
    
    		case ASUB:
    			opset(ASUBU, r0)
    			opset(ANOR, r0)
    
    		case ASUBV:
    			opset(ASUBVU, r0)
    
    		case ASYSCALL:
    			opset(ASYNC, r0)
    			opset(ANOOP, r0)
    			opset(ATLBP, r0)
    			opset(ATLBR, r0)
    			opset(ATLBWI, r0)
    			opset(ATLBWR, r0)
    
    		case ACMPEQF:
    			opset(ACMPGTF, r0)
    			opset(ACMPGTD, r0)
    			opset(ACMPGEF, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	queueingHintMap QueueingHintMapPerProfile
    
    	// closed indicates that the queue is closed.
    	// It is mainly used to let Pop() exit its control loop while waiting for an item.
    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    	// pluginMetricsSamplePercent is the percentage of plugin metrics to be sampled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    	// provide a "valid" method. Alternatively, this could start in a "before
    	// the first frame" state and "next" could return whether it was able to
    	// move to the next frame, but that's both more awkward to use in a "for"
    	// loop and is harder to implement because we have to do things differently
    	// for the first frame.
    	u.initAt(^uintptr(0), ^uintptr(0), ^uintptr(0), gp, flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

    	VPDI $0x4, X1, X1, X1
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    	MOVD $0, COUNT
    	MOVD n+16(FP), N
    	VL   16(CPOOL), P0
    	VL   0(CPOOL), P1
    
    loop:
    	CALL p256SqrInternal<>(SB)
    	VLR  T0, X0
    	VLR  T1, X1
    	ADDW $1, COUNT
    	CMPW COUNT, N
    	BLT  loop
    
    	VPDI $0x4, T0, T0, T0
    	VST  T0, (0*16)(res_ptr)
    	VPDI $0x4, T1, T1, T1
    	VST  T1, (1*16)(res_ptr)
    	RET
    
    #undef res_ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    		expectErrors           bool
    		expectedErrorSubString string
    		options                interface {
    			Validate() []error
    		}
    	}{
    		{
    			name:                   "AttachDetachControllerOptions reconciler sync loop period less than one second",
    			expectErrors:           true,
    			expectedErrorSubString: "duration time must be greater than one second",
    			options: &AttachDetachControllerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    		}
    
    		written, err := erasure.Decode(ctx, writer, readers, partOffset, partLength, partSize, prefer)
    		// Note: we should not be defer'ing the following closeBitrotReaders() call as
    		// we are inside a for loop i.e if we use defer, we would accumulate a lot of open files by the time
    		// we return from this function.
    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top