Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 676 for aloop (0.05 sec)

  1. pkg/volume/fc/fc_util.go

    	if len(wwns) != 0 {
    		diskIDs = wwns
    	} else {
    		diskIDs = wwids
    	}
    
    	rescanned := false
    	// two-phase search:
    	// first phase, search existing device path, if a multipath dm is found, exit loop
    	// otherwise, in second phase, rescan scsi bus and search again, return with any findings
    	for true {
    		for _, diskID := range diskIDs {
    			if len(wwns) != 0 {
    				disk, dm = findDisk(diskID, lun, io, b.deviceUtil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  2. src/runtime/gc_test.go

    	done := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < maxProcs-1; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var hold *node
    		loop:
    			for {
    				hold = buildTree(5)
    				select {
    				case <-done:
    					break loop
    				default:
    				}
    			}
    			runtime.KeepAlive(hold)
    		}()
    	}
    	return func() {
    		close(done)
    		wg.Wait()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        arg.setType(arg_type);
        resources[arg.getArgNumber()].live_value = arg;
        argument_types[arg.getArgNumber()] = arg_type;
        has_resources = true;
      };
    
      // Loop through the non `tf.VarHandleOp` resource arguments in the function,
      // validate its uses and subtype, and store a mapping from that argument to
      // itself as the current live value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_amd64.s

    	SHRQ	$6,		DX
    	SHLQ	$6,		DX
    
    	LEAQ	(SI)(DX*1),	DI
    	MOVL	(0*4)(BP),	AX
    	MOVL	(1*4)(BP),	BX
    	MOVL	(2*4)(BP),	CX
    	MOVL	(3*4)(BP),	DX
    	MOVL	(4*4)(BP),	BP
    
    	CMPQ	SI,		DI
    	JEQ	end
    
    loop:
    	MOVL	AX,	R11
    	MOVL	BX,	R12
    	MOVL	CX,	R13
    	MOVL	DX,	R14
    	MOVL	BP,	R15
    
    	ROUND1(AX, BX, CX, DX, BP, 0)
    	ROUND1(BP, AX, BX, CX, DX, 1)
    	ROUND1(DX, BP, AX, BX, CX, 2)
    	ROUND1(CX, DX, BP, AX, BX, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/compress/flate/deflate.go

    		return
    	}
    
    	d.maxInsertIndex = d.windowEnd - (minMatchLength - 1)
    
    Loop:
    	for {
    		if d.index > d.windowEnd {
    			panic("index > windowEnd")
    		}
    		lookahead := d.windowEnd - d.index
    		if lookahead < minMatchLength+maxMatchLength {
    			if !d.sync {
    				break Loop
    			}
    			if d.index > d.windowEnd {
    				panic("index > windowEnd")
    			}
    			if lookahead == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

        useSiteSession: FirSession,
        annotationContainer: FirAnnotationContainer = firSymbol.fir,
    ): Boolean {
        return if (firSymbol.isFromCompilerRequiredAnnotationsPhase(classId, useSiteSession)) {
            // this loop by index is required to avoid possible ConcurrentModificationException
            val annotations = annotationContainer.resolvedCompilerRequiredAnnotations(firSymbol)
            for (index in annotations.indices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds.go

    	var authzResult *bool
    	var authzError error
    	// isAuthorized is a small wrapper around credscontroller.Authorize so we only call it once instead of each time in the loop
    	isAuthorized := func() bool {
    		if authzResult != nil {
    			return *authzResult
    		}
    		res := false
    		if err := secrets.Authorize(proxy.VerifiedIdentity.ServiceAccount, proxy.VerifiedIdentity.Namespace); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/controller/repair.go

    	"k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/registry/core/rangeallocation"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	netutils "k8s.io/utils/net"
    )
    
    // Repair is a controller loop that periodically examines all service ClusterIP allocations
    // and logs any errors, and then sets the compacted and accurate list of all allocated IPs.
    //
    // Handles:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/encoding/base32/base32.go

    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    		return
    	}
    	// enc is a pointer receiver, so the use of enc.encode within the hot
    	// loop below means a nil check at every operation. Lift that nil check
    	// outside of the loop to speed up the encoder.
    	_ = enc.encode
    
    	di, si := 0, 0
    	n := (len(src) / 5) * 5
    	for si < n {
    		// Combining two 32 bit loads allows the same code to be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/text/template/doc.go

    		of the array, slice, or map and T1 is executed.
    
    	{{break}}
    		The innermost {{range pipeline}} loop is ended early, stopping the
    		current iteration and bypassing all remaining iterations.
    
    	{{continue}}
    		The current iteration of the innermost {{range pipeline}} loop is
    		stopped, and the loop starts the next iteration.
    
    	{{template "name"}}
    		The template with the specified name is executed with nil data.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top