Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 287 for aloop (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	c.terminateAllWatchers()
    	// Note that since onReplace may be not called due to errors, we explicitly
    	// need to retry it on errors under lock.
    	// Also note that startCaching is called in a loop, so there's no need
    	// to have another loop here.
    	if err := c.reflector.ListAndWatch(stopChannel); err != nil {
    		klog.Errorf("cacher (%v): unexpected ListAndWatch error: %v; reinitializing...", c.groupResource.String(), err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/server/server.go

    	ws.Route(ws.GET("/{subpath:*}").To(handlePprofEndpoint)).Doc("pprof endpoint")
    	s.restfulCont.Add(ws)
    
    	if enableContentionProfiling {
    		goruntime.SetBlockProfileRate(1)
    	}
    }
    
    // Checks if kubelet's sync loop  that updates containers is working.
    func (s *Server) syncLoopHealthCheck(req *http.Request) error {
    	duration := s.host.ResyncInterval() * 2
    	minDuration := time.Minute * 5
    	if duration < minDuration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top