Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 336 for aloop (0.06 sec)

  1. src/cmd/go/internal/toolchain/select.go

    //	"mismatch" - like "switch" but forget to set TESTGO_VERSION, so it looks like we invoked a mismatched toolchain
    //	"loop" - like "mismatch" but forget the target check, causing a toolchain switching loop
    var TestVersionSwitch string
    
    // Exec invokes the specified Go toolchain or else prints an error and exits the process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/net/lookup_plan9.go

    	// host names in local network (e.g. from /lib/ndb/local)
    	lines, err := queryCS(ctx, "net", host, "1")
    	if err != nil {
    		return nil, handlePlan9DNSError(err, host)
    	}
    loop:
    	for _, line := range lines {
    		f := getFields(line)
    		if len(f) < 2 {
    			continue
    		}
    		addr := f[1]
    		if i := bytealg.IndexByteString(addr, '!'); i >= 0 {
    			addr = addr[:i] // remove port
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// DesiredStateOfWorldPopulatorLoopSleepPeriod is the amount of time the
    	// DesiredStateOfWorldPopulator loop waits between successive executions
    	DesiredStateOfWorldPopulatorLoopSleepPeriod time.Duration
    
    	// DesiredStateOfWorldPopulatorListPodsRetryDuration is the amount of
    	// time the DesiredStateOfWorldPopulator loop waits between list pods
    	// calls.
    	DesiredStateOfWorldPopulatorListPodsRetryDuration time.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedBytes.java

           * non-final fields need to be reloaded inside the loop.
           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server_test.go

    					},
    				},
    			},
    			statusCode: http.StatusOK,
    		},
    		{
    			name:      "redirect loop",
    			probePath: "app-health/redirect-loop/livez",
    			config: KubeAppProbers{
    				"/app-health/redirect-loop/livez": &Prober{
    					HTTPGet: &apimirror.HTTPGetAction{
    						Path: "redirect-loop",
    						Port: apimirror.IntOrString{IntVal: int32(appPort)},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    func (p *addrParser) consumeAtom(dot bool, permissive bool) (atom string, err error) {
    	i := 0
    
    Loop:
    	for {
    		r, size := utf8.DecodeRuneInString(p.s[i:])
    		switch {
    		case size == 1 && r == utf8.RuneError:
    			return "", fmt.Errorf("mail: invalid utf-8 in address: %q", p.s)
    
    		case size == 0 || !isAtext(r, dot):
    			break Loop
    
    		default:
    			i += size
    
    		}
    	}
    
    	if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	"k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world with
    // the actual state of the world by triggering attach detach operations.
    // Note: This is distinct from the Reconciler implemented by the kubelet volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    		*temps[depth] = temps[depth].make(B + 1)
    	}
    
    	// Compute each wide digit of the quotient.
    	//
    	// TODO(rsc): Change the loop to be
    	//	for j := (m+B-1)/B*B; j > 0; j -= B {
    	// which will make the final step a regular step, letting us
    	// delete what amounts to an extra copy of the loop body below.
    	j := m
    	for j > B {
    		// Divide u[j-B:j+n] (3 wide digits) by v (2 wide digits).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Removes unused results from WhileRegion ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateRemoveUnusedWhileResultsPass();
    
    // Hoists loop invariant ops to the outside of the loop.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateHoistLoopInvariantPass();
    
    // Creates VarHandleOps right next to the operations that use them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. src/image/draw/draw.go

    					out.B = uint16(sb * ma / m)
    					out.A = uint16(sa * ma / m)
    				}
    				// The third argument is &out instead of out (and out is
    				// declared outside of the inner loop) to avoid the implicit
    				// conversion to color.Color here allocating memory in the
    				// inner loop if sizeof(color.RGBA64) > sizeof(uintptr).
    				dst.Set(x, y, &out)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top