Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,361 for aloop (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/doc.go

    //
    // unreachable: check for unreachable code
    //
    // The unreachable analyzer finds statements that execution can never reach
    // because they are preceded by an return statement, a call to panic, an
    // infinite loop, or similar constructs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 525 bytes
    - Viewed (0)
  2. test/fixedbugs/issue18392.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type A interface {
    	// TODO(mdempsky): This should be an error, but this error is
    	// nonsense. The error should actually mention that there's a
    	// type loop.
    	Fn(A.Fn) // ERROR "type A has no method Fn|A.Fn undefined|A.Fn is not a type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 11 22:29:34 UTC 2023
    - 427 bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons-main.sh

      log INFO "++ obj ${obj} is created ++"
    done < <(find /etc/kubernetes/admission-controls \( -name \*.yaml -o -name \*.json \))
    
    # Start the apply loop.
    # Check if the configuration has changed recently - in case the user
    # created/updated/deleted the files on the master.
    log INFO "== Entering periodical apply loop at $(date -Is) =="
    while true; do
      start_sec=$(date +"%s")
      if is_leader; then
        ensure_addons
        reconcile_addons
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 18:35:44 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/error.go

    var ErrWaitTimeout = ErrorInterrupted(errors.New("timed out waiting for the condition"))
    
    // Interrupted returns true if the error indicates a Poll, ExponentialBackoff, or
    // Until loop exited for any reason besides the condition returning true or an
    // error. A loop is considered interrupted if the calling context is cancelled,
    // the context reaches its deadline, or a backoff reaches its maximum allowed
    // steps.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/sync/sync.go

    		nodeName:   nodeName,
    		opChan:     make(chan syncOp, 1),
    		set:        set,
    	}
    }
    
    // Loop runs the sync loop for a given node. done is an optional channel that
    // is closed when the Loop() returns.
    func (sync *NodeSync) Loop(logger klog.Logger, done chan struct{}) {
    	logger.V(2).Info("Starting sync loop", "node", klog.KRef("", sync.nodeName))
    
    	defer func() {
    		if done != nil {
    			close(done)
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

            protected FileVisitResult doPostVisitDirectory(Path dir, IOException exc) {
                pathTracker.leave();
                // File loop exceptions are ignored. When we encounter a loop (via symbolic links), we continue,
                // so we include all the other files apart from the loop.
                // This way, we include each file only once.
                if (isNotFileSystemLoopException(exc)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/cover/testdata/test.go

    		if i == 0 {
    			goto Label
    		}
    		check(LINE, 1)
    	Label:
    		check(LINE, 2)
    	}
    	// Now test that we don't inject empty statements
    	// between a label and a loop.
    loop:
    	for {
    		check(LINE, 1)
    		break loop
    	}
    }
    
    // This comment didn't appear in generated go code.
    func haha() {
    	// Needed for cover to add counter increment here.
    	_ = 42
    }
    
    // Some someFunction.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  8. docs/em/docs/advanced/async-tests.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/CharEscaper.java

      protected final String escapeSlow(String s, int index) {
        int slen = s.length();
    
        // Get a destination buffer and setup some loop variables.
        char[] dest = Platform.charBufferFromThreadLocal();
        int destSize = dest.length;
        int destIndex = 0;
        int lastEscape = 0;
    
        // Loop through the rest of the string, replacing when needed into the
        // destination buffer, which gets grown as needed as well.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/disk_manager.go

    			if mntErr != nil {
    				klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    				return err
    			}
    			if !noMnt {
    				//  will most likely retry on next sync loop.
    				klog.Errorf("%s is still mounted, despite call to unmount().  Will try again next sync loop.", volPath)
    				return err
    			}
    		}
    		os.Remove(volPath)
    		return err
    	}
    
    	if !b.readOnly {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top