Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 154 for aloop (0.15 sec)

  1. src/math/big/nat.go

    // z is guaranteed to satisfy 0 <= z < 2**(n*_W), but it may not be < m.
    func (z nat) montgomery(x, y, m nat, k Word, n int) nat {
    	// This code assumes x, y, m are all the same length, n.
    	// (required by addMulVVW and the for loop).
    	// It also assumes that x, y are already reduced mod m,
    	// or else the result will not be properly reduced.
    	if len(x) != n || len(y) != n || len(m) != n {
    		panic("math/big: mismatched montgomery number lengths")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. internal/dsync/drwmutex.go

    	isReadLock := true
    	return dm.lockBlocking(ctx, cancel, id, source, isReadLock, opts)
    }
    
    // lockBlocking will try to acquire either a read or a write lock
    //
    // The function will loop using a built-in timing randomized back-off
    // algorithm until either the lock is acquired successfully or more
    // time has elapsed than the timeout value.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    func waitForTLSBootstrappedClient(timeout time.Duration) error {
    	fmt.Println("[kubelet-start] Waiting for the kubelet to perform the TLS Bootstrap")
    
    	// Loop on every falsy return. Return with an error if raised. Exit successfully if true is returned.
    	return wait.PollUntilContextTimeout(context.Background(),
    		kubeadmconstants.TLSBootstrapRetryInterval, timeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/certs.go

    		Name:           "all",
    		Short:          "Generate all certificates",
    		InheritFlags:   getCertPhaseFlags("all"),
    		RunAllSiblings: true,
    	}
    
    	subPhases = append(subPhases, allPhase)
    
    	// This loop assumes that GetDefaultCertList() always returns a list of
    	// certificate that is preceded by the CAs that sign them.
    	var lastCACert *certsphase.KubeadmCert
    	for _, cert := range certsphase.GetDefaultCertList() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. pkg/test/framework/test.go

    			t.goTest.Name(), len(t.s.Environment().Clusters()), t.requiredMinClusters)
    		return
    	}
    
    	// max clusters doesn't check kube only, the test may be written in a way that doesn't loop over all of Clusters()
    	if t.requiredMaxClusters > 0 && len(t.s.Environment().Clusters()) > t.requiredMaxClusters {
    		t.goTest.Skipf("Skipping %q: number of clusters %d is above required max %d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    			dst = append(dst, &open.Plain)
    			continue
    		}
    		p, ok := src[i].(*emphPlain)
    		if !ok {
    			dst = append(dst, src[i])
    			continue
    		}
    		if p.canClose {
    			stk := &stack[stackOf(p.Text[0])]
    		Loop:
    			for p.Text != "" {
    				// Looking for same symbol and compatible with p.Text.
    				for i := len(*stk) - 1; i >= 0; i-- {
    					start := (*stk)[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_test.go

    			// needed, based on the number of available
    			// unlocked OS threads at the time waiter
    			// calls runtime.LockOSThread(), but the goal
    			// of doing this every time through the loop
    			// is to race thread creation with v.fn(want)
    			// being executed. Via the once boolean we
    			// also encourage one in 5 waiters to return
    			// locked after participating in only one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    			"The value of the annotation is ignored.")
    	registerStringParameter(constants.RepairInitContainerName, "istio-validation",
    		"The name of the istio init container (will crash-loop if CNI is not configured for the pod)")
    	registerStringParameter(constants.RepairInitTerminationMsg, "",
    		"The expected termination message for the init container when crash-looping because of CNI misconfiguration")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/trace/gen.go

    		})
    	}
    }
    
    // emitRegion emits goroutine-based slice events to the UI. The caller
    // must be emitting for a goroutine-oriented trace.
    //
    // TODO(mknyszek): Make regions part of the regular generator loop and
    // treat them like ranges so that we can emit regions in traces oriented
    // by proc or thread.
    func emitRegion(ctx *traceContext, region *trace.UserRegionSummary) {
    	if region.Name == "" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe.go

    func (v *PeerCertVerifier) AddMappingFromPEM(trustDomain string, rootCertBytes []byte) error {
    	block, rest := pem.Decode(rootCertBytes)
    	var blockBytes []byte
    
    	// Loop while there are no block are found
    	for block != nil {
    		blockBytes = append(blockBytes, block.Bytes...)
    		block, rest = pem.Decode(rest)
    	}
    
    	rootCAs, err := x509.ParseCertificates(blockBytes)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top