Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for aloop (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    }
    
    // NewDesiredStateOfWorldPopulator returns a new instance of
    // DesiredStateOfWorldPopulator.
    //
    // kubeClient - used to fetch PV and PVC objects from the API server
    // loopSleepDuration - the amount of time the populator loop sleeps between
    // successive executions
    //
    // podManager - the kubelet podManager that is the source of truth for the pods
    // that exist on this host
    //
    // desiredStateOfWorld - the cache to populate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/cmd/doc/main.go

    	telemetry.CountFlags("doc/flag:", *flag.CommandLine)
    	if chdir != "" {
    		if err := os.Chdir(chdir); err != nil {
    			return err
    		}
    	}
    	var paths []string
    	var symbol, method string
    	// Loop until something is printed.
    	dirs.Reset()
    	for i := 0; ; i++ {
    		buildPackage, userPath, sym, more := parseArgs(flagSet.Args())
    		if i > 0 && !more { // Ignore the "more" bit on the first iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

         * it is not possible to create [KaValueParameterSymbol], hence an error will be raised.
         *
         * If [KtParameter.isLoopParameter] is `true`, i.e. if the given [KtParameter] is a loop variable in `for` expression, then the function
         * returns [KaLocalVariableSymbol].
         *
         * Otherwise, returns [KaValueParameterSymbol].
         */
        public fun KtParameter.getParameterSymbol(): KaVariableLikeSymbol =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/math/rand/v2/rand.go

    	// the probability of a random uint64 lo being < a uint32 n is near zero,
    	// meaning the unbiasing loop almost never runs.
    	// On 32-bit systems, here we need to implement that same logic in 32-bit math,
    	// both to preserve the exact output sequence observed on 64-bit machines
    	// and to preserve the optimization that the unbiasing loop almost never runs.
    	//
    	// We want to compute
    	// 	hi, lo := bits.Mul64(r.Uint64(), n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top