Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for worst (0.04 sec)

  1. src/runtime/testdata/testprog/gc.go

    	//
    	// Add additional slack in case the page size is large and the scavenger
    	// can't reach that memory because it doesn't constitute a complete aligned
    	// physical page. Assume the worst case: a full physical page out of each
    	// allocation.
    	threshold := 0.1 + float64(pageSize)/float64(allocChunk)
    	if overuse <= threshold {
    		fmt.Println("OK")
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/Quantiles.java

     * dataset contains no finite values).
     *
     * <h3>Performance</h3>
     *
     * <p>The average time complexity of the computation is O(N) in the size of the dataset. There is a
     * worst case time complexity of O(N^2). You are extremely unlikely to hit this quadratic case on
     * randomly ordered data (the probability decreases faster than exponentially in N), but if you are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/branchelim.go

    			}
    		}
    	}
    	if !hasphis {
    		return false
    	}
    
    	// Pick some upper bound for the number of instructions
    	// we'd be willing to execute just to generate a dead
    	// argument to CondSelect. In the worst case, this is
    	// the number of useless instructions executed.
    	const maxfuseinsts = 2
    
    	if len(simple.Values) > maxfuseinsts || !canSpeculativelyExecute(simple) {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K 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/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)
  9. guava/src/com/google/common/math/Quantiles.java

     * dataset contains no finite values).
     *
     * <h3>Performance</h3>
     *
     * <p>The average time complexity of the computation is O(N) in the size of the dataset. There is a
     * worst case time complexity of O(N^2). You are extremely unlikely to hit this quadratic case on
     * randomly ordered data (the probability decreases faster than exponentially in N), but if you are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller_test.go

    		c1.OnDisconnect(p1conn1)
    		// stop processing the delayed close queue in c1, forces using periodic cleanup
    		close(stop1)
    		stopped1 = true
    		// unfortunately, this retry at worst could be twice as long as the sweep interval
    		retry.UntilSuccessOrFail(t, func() error {
    			return checkNoEntry(store, wgA, p)
    		}, retry.Timeout(time.Until(time.Now().Add(21*features.WorkloadEntryCleanupGracePeriod))))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top