Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for aloop (0.05 sec)

  1. pkg/kubelet/kubelet_node_status.go

    // apiserver except for the final run, to be called by fastStatusUpdateOnce in each loop.
    // It holds the same lock as syncNodeStatus and is thread-safe when called concurrently with
    // syncNodeStatus. Its return value indicates whether the loop running it should exit
    // (final run), and it also sets kl.containerRuntimeReadyExpected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

          CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1);
        }
    
        Object oldTable = requireTable();
        int[] entries = requireEntries();
    
        // Loop over `oldTable` to construct its replacement, ``newTable`. The entries do not move, so
        // the `keys` and `values` arrays do not need to change. But because the "short hash" now has a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    				// such as: app -> istio dns server -> dnsmasq -> upstream
    				// This ensures that we do not get requests from dnsmasq sent back to the agent dns server in a loop.
    				// Note: If a user somehow configured etc/resolv.conf to point to dnsmasq and server X, and dnsmasq also
    				// pointed to server X, this would not work. However, the assumption is that is not a common case.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. src/image/gif/writer.go

    	// draw.FloydSteinberg is used in place of a nil Drawer.
    	Drawer draw.Drawer
    }
    
    // EncodeAll writes the images in g to w in GIF format with the
    // given loop count and delay between frames.
    func EncodeAll(w io.Writer, g *GIF) error {
    	if len(g.Image) == 0 {
    		return errors.New("gif: must provide at least one image")
    	}
    
    	if len(g.Image) != len(g.Delay) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    break;
                  } catch (CancellationException e) {
                    finalResults.add(CancellationException.class);
                    break;
                  } catch (TimeoutException e) {
                    // loop
                  }
                }
                awaitUnchecked(barrier);
              }
            };
        List<Callable<?>> allTasks = new ArrayList<>();
        allTasks.add(completeSuccessfullyRunnable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15.go

    	for i := 0; i < len(s); i++ {
    		for s[i] == 0 {
    			_, err = io.ReadFull(random, s[i:i+1])
    			if err != nil {
    				return
    			}
    			// In tests, the PRNG may return all zeros so we do
    			// this to break the loop.
    			s[i] ^= 0x42
    		}
    	}
    
    	return
    }
    
    // These are ASN1 DER structures:
    //
    //	DigestInfo ::= SEQUENCE {
    //	  digestAlgorithm AlgorithmIdentifier,
    //	  digest OCTET STRING
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/type.go

    func typesEqual(t, v *_type, seen map[_typePair]struct{}) bool {
    	tp := _typePair{t, v}
    	if _, ok := seen[tp]; ok {
    		return true
    	}
    
    	// mark these types as seen, and thus equivalent which prevents an infinite loop if
    	// the two types are identical, but recursively defined and loaded from
    	// different modules
    	seen[tp] = struct{}{}
    
    	if t == v {
    		return true
    	}
    	kind := t.Kind_ & abi.KindMask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. cmd/peer-s3-client.go

    					// Skip it, this bucket is found in another pool
    					continue
    				}
    				bucketsMap[bi.Name]++
    				if bucketsMap[bi.Name] >= quorum {
    					resultMap[bi.Name] = bi
    				}
    			}
    		}
    		// loop through buckets and see if some with lost quorum
    		// these could be stale buckets lying around, queue a heal
    		// of such a bucket. This is needed here as we identify such
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof.go

    	// allocate that many records, and get the data.
    	// There's a race—more records might be added between
    	// the two calls—so allocate a few extra records for safety
    	// and also try again if we're very unlucky.
    	// The loop should only execute one iteration in the common case.
    	var p []profilerecord.MemProfileRecord
    	n, ok := pprof_memProfileInternal(nil, true)
    	for {
    		// Allocate room for a slightly bigger profile,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    break;
                  } catch (CancellationException e) {
                    finalResults.add(CancellationException.class);
                    break;
                  } catch (TimeoutException e) {
                    // loop
                  }
                }
                awaitUnchecked(barrier);
              }
            };
        List<Callable<?>> allTasks = new ArrayList<>();
        allTasks.add(completeSuccessfullyRunnable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top