Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for worst (0.67 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter.go

    		requiresTypedConfig = requiresTypedConfig || field.JSONName() == "typedConfig"
    		// Note: it is possible there is some API that has typedConfig but has a non-deprecated alternative,
    		// but I couldn't find any. Worst case, this is a warning, not an error, so a false positive is not so bad.
    		// The one exception is configDiscovery (used for ECDS)
    		if field.JSONName() == "typedConfig" && set {
    			hasTypedConfig = true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/math/big/arith_ppc64x.s

    	BEQ   tail            // If R5 = 0, we can't use the loop
    
    	// Process 4 elements per iteration. Unrolling this loop
    	// means a performance trade-off: we will lose performance
    	// for small values of z_len (0.90x in the worst case), but
    	// gain significant performance as z_len increases (up to
    	// 1.45x).
    
    	PCALIGN $16
    loop:
    	MOVD  8(R8), R11      // R11 = x[i]
    	MOVD  16(R8), R12     // R12 = x[i+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. pkg/api/testing/defaulting_test.go

    				}
    				if iter > 300 {
    					t.Errorf("expected %s to trigger defaulting due to fuzzing", gvk)
    					break
    				}
    				// if we expected defaulting, continue looping until the fuzzer gives us one
    				// at worst, we will timeout
    			}
    			iter++
    
    			src, err := scheme.New(gvk)
    			if err != nil {
    				t.Fatal(err)
    			}
    			f.Fuzz(src)
    
    			src.GetObjectKind().SetGroupVersionKind(schema.GroupVersionKind{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

        // Raising this number slows the worst-case contains behavior, speeds up hashFloodingDetected,
        // and reduces the false-positive probability.
        static final int MAX_RUN_MULTIPLIER = 13;
    
        /**
         * Checks the whole hash table for poor hash distribution. Takes O(n) in the worst case, O(n /
         * log n) on average.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    			c1.SetWriteDeadline(aLongTimeAgo)
    		}()
    		go func() {
    			defer wg.Done()
    			c1.LocalAddr()
    		}()
    		go func() {
    			defer wg.Done()
    			c1.RemoteAddr()
    		}()
    	}
    	wg.Wait() // At worst, the deadline is set 10ms into the future
    
    	resyncConn(t, c1)
    	testRoundtrip(t, c1)
    }
    
    // checkForTimeoutError checks that the error satisfies the Error interface
    // and that Timeout returns true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/evented.go

    		// podSandbox for the container when generating the event.
    		// It is safe to ignore because
    		// a) a event would have been received for the sandbox deletion,
    		// b) in worst case, a relist will eventually sync the pod status.
    		// TODO(#114371): Figure out a way to handle this case instead of ignoring.
    		if event.PodSandboxStatus == nil || event.PodSandboxStatus.Metadata == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		// Given that client is closed on shutdown we hold the lock for
    		// the entire period of healthcheck call to ensure that client will
    		// not be closed during healthcheck.
    		// Given that healthchecks has a 2s timeout, worst case of blocking
    		// shutdown for additional 2s seems acceptable.
    		lock.RLock()
    		defer lock.RUnlock()
    
    		if clientErr != nil {
    			return clientErr
    		}
    		if limiter.Allow() == false {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck_test.go

    func BenchmarkNilCheckDeep10000(b *testing.B) { benchmarkNilCheckDeep(b, 10000) }
    
    // benchmarkNilCheckDeep is a stress test of nilcheckelim.
    // It uses the worst possible input: A linear string of
    // nil checks, none of which can be eliminated.
    // Run with multiple depths to observe big-O behavior.
    func benchmarkNilCheckDeep(b *testing.B, depth int) {
    	c := testConfig(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/staticpod/utils.go

    	if timeoutForControlPlane != nil {
    		timeoutForControlPlaneSeconds = timeoutForControlPlane.Seconds()
    	}
    	// sets failureThreshold big enough to guarantee the full timeout can cover the worst case scenario for the control-plane to come alive
    	// we ignore initialDelaySeconds in the calculation here for simplicity
    	failureThreshold := int32(math.Ceil(timeoutForControlPlaneSeconds / float64(periodSeconds)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    	// performed the write barrier but before we perform the
    	// memory copy. This safe because the write performed by that
    	// other goroutine must also be accompanied by a write
    	// barrier, so at worst we've unnecessarily greyed the old
    	// pointer that was in src.
    	memmove(dst, src, typ.Size_)
    	if goexperiment.CgoCheck2 {
    		cgoCheckMemmove2(typ, dst, src, 0, typ.Size_)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top