Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for effort (0.22 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    			t.Errorf("Usage Used: Key: %v, Expected: %v, Actual: %v", k, expectedValue, actualValue)
    		}
    	}
    }
    
    // TestAdmitBelowBestEffortQuotaLimit creates a best effort and non-best effort quota.
    // It verifies that best effort pods are properly scoped to the best effort quota document.
    func TestAdmitBelowBestEffortQuotaLimit(t *testing.T) {
    	resourceQuotaBestEffort := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: api.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("best-effort", []api.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    			}),
    			expected: api.PodQOSBestEffort,
    		},
    		{
    			pod: newPod("burstable", []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    //
    // The result of this race is that the two assist ratio values may not line
    // up or may be stale. In practice this is OK because the assist ratio
    // moves slowly throughout a GC cycle, and the assist ratio is a best-effort
    // heuristic anyway. Furthermore, no part of the heuristic depends on
    // the two assist ratio values being exact reciprocals of one another, since
    // the two values are used to convert values from different sources.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[deprecate_filtered_configuration_file_and_filecollection_methods]]
    ==== Filtered Configuration `file` and `fileCollection` methods are deprecated
    
    In an ongoing effort to simplify the Gradle API, the following methods that support filtering based on declared dependencies have been deprecated:
    
    On link:{javadocPath}/org/gradle/api/artifacts/Configuration.html--[Configuration]:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		if err := m.deps.StartCPUProfile(f); err != nil {
    			fmt.Fprintf(os.Stderr, "testing: can't start cpu profile: %s\n", err)
    			f.Close()
    			return
    		}
    		// Could save f so after can call f.Close; not worth the effort.
    	}
    	if *traceFile != "" {
    		f, err := os.Create(toOutputDir(*traceFile))
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
    			return
    		}
    		if err := trace.Start(f); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	UnreachableTaintTemplate = &v1.Taint{
    		Key:    v1.TaintNodeUnreachable,
    		Effect: v1.TaintEffectNoExecute,
    	}
    
    	// NotReadyTaintTemplate is the taint for when a node is not ready for
    	// executing pods
    	NotReadyTaintTemplate = &v1.Taint{
    		Key:    v1.TaintNodeNotReady,
    		Effect: v1.TaintEffectNoExecute,
    	}
    
    	// map {NodeConditionType: {ConditionStatus: TaintKey}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    func (c *Conn) readFromUntil(r io.Reader, n int) error {
    	if c.rawInput.Len() >= n {
    		return nil
    	}
    	needs := n - c.rawInput.Len()
    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    // shuttle.
    //
    // Originally, the work of this controller was split amongst three
    // controllers. This controller is the result a large effort to simplify the
    // PV subsystem. During that effort, it became clear that we needed to ensure
    // that every single condition was handled and accounted for in the code, even
    // if it resulted in no-op code branches.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

     * string formatting itself should not be a concern.
     *
     * <p>As with any performance concerns, you should consider profiling your code (in a production
     * environment if possible) before spending a lot of effort on tweaking a particular element.
     *
     * <h3>Other types of preconditions</h3>
     *
     * <p>Not every type of precondition failure is supported by these methods. Continue to throw
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	// visited records the structs that have been considered already.
    	// Embedded pointer fields can create cycles in the graph of
    	// reachable embedded types; visited avoids following those cycles.
    	// It also avoids duplicated effort: if we didn't find the field in an
    	// embedded type T at level 2, we won't find it in one at level 4 either.
    	visited := map[*structType]bool{}
    
    	for len(next) > 0 {
    		current, next = next, current[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top