Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,361 for aloop (0.05 sec)

  1. pilot/pkg/server/instance.go

    			if runtime > time.Second {
    				log.Warnf("slow startup task")
    			}
    		default:
    			// We've drained all of the initial tasks.
    			// Break out of the loop and run asynchronously.
    			startupDone = true
    		}
    	}
    
    	// Start the run loop to continue tasks added after the instance is started.
    	go func() {
    		for {
    			select {
    			case <-stop:
    				// Wait for any tasks that are required for termination.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world
    // with the actual state of the world by triggering register and unregister
    // operations. Also provides a means to add a handler for a plugin type.
    type Reconciler interface {
    	// Run starts running the reconciliation loop which executes periodically,
    	// checks if plugins are correctly registered or unregistered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. src/net/interface_test.go

    		t.Fatal(err)
    	}
    }
    
    type ifStats struct {
    	loop  int // # of active loopback interfaces
    	other int // # of active other interfaces
    }
    
    func interfaceStats(ift []Interface) *ifStats {
    	var stats ifStats
    	for _, ifi := range ift {
    		if ifi.Flags&FlagUp != 0 {
    			if ifi.Flags&FlagLoopback != 0 {
    				stats.loop++
    			} else {
    				stats.other++
    			}
    		}
    	}
    	return &stats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. releasenotes/notes/40727.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    issue:
      - 39599
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 20 07:24:37 UTC 2022
    - 235 bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  6. test/prove_invert_loop_with_unused_iterators.go

    // errorcheck -0 -d=ssa/prove/debug=1
    
    //go:build amd64
    
    package main
    
    func invert(b func(), n int) {
    	for i := 0; i < n; i++ { // ERROR "(Inverted loop iteration|Induction variable: limits \[0,\?\), increment 1)"
    		b()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 225 bytes
    - Viewed (0)
  7. src/internal/fuzz/minimize.go

    		if !try(candidate) {
    			continue
    		}
    		// Update v to delete the value at index i.
    		copy(v[i:], v[i+1:])
    		v = v[:len(candidate)]
    		// v[i] is now different, so decrement i to redo this iteration
    		// of the loop with the new value.
    		i--
    	}
    
    	// Then, try to remove each possible subset of bytes.
    	for i := 0; i < len(v)-1; i++ {
    		copy(tmp, v[:i])
    		for j := len(v); j > i+1; j-- {
    			if shouldStop() {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. releasenotes/notes/41322.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    issue:
      - 40876
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 10 17:51:17 UTC 2022
    - 211 bytes
    - Viewed (0)
  9. test/fixedbugs/issue7525c.go

    // Issue 7525: self-referential array types.
    
    package main
    
    var z struct { // GC_ERROR "initialization cycle: z refers to itself"
    	e [cap(z.e)]int // GCCGO_ERROR "array bound|typechecking loop|invalid array"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 14:21:33 UTC 2022
    - 385 bytes
    - Viewed (0)
  10. cmd/xl-storage-errors.go

    func isSysErrTooLong(err error) bool {
    	return errors.Is(err, syscall.ENAMETOOLONG)
    }
    
    // Check if the given error corresponds to the ELOOP (too many symlinks).
    func isSysErrTooManySymlinks(err error) bool {
    	return errors.Is(err, syscall.ELOOP)
    }
    
    // Check if the given error corresponds to ENOTEMPTY for unix,
    // EEXIST for solaris variants,
    // and ERROR_DIR_NOT_EMPTY for windows (directory not empty).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top