Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Prioritize (0.32 sec)

  1. pkg/scheduler/apis/config/validation/validation_test.go

    					Enabled: []config.Plugin{{Name: "CustomSort"}},
    				},
    				Bind: config.PluginSet{
    					Enabled: []config.Plugin{{Name: "CustomBind"}},
    				},
    			},
    		}},
    		Extenders: []config.Extender{{
    			PrioritizeVerb: "prioritize",
    			Weight:         1,
    		}},
    	}
    
    	invalidParallelismValue := validConfig.DeepCopy()
    	invalidParallelismValue.Parallelism = 0
    
    	resourceNameNotSet := validConfig.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller.go

    	// if we declared an intent that is not yet captured in status (prioritize it)
    	if !apiequality.Semantic.DeepEqual(resourceQuota.Spec.Hard, resourceQuota.Status.Hard) {
    		rq.missingUsageQueue.Add(key)
    		return
    	}
    
    	// if we declared a constraint that has no usage (which this controller can calculate, prioritize it)
    	for constraint := range resourceQuota.Status.Hard {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    		// There are two independent errors this function can return:
    		// one for a bad oldname, and one for a bad newname.
    		// At this point we've determined the newname is bad.
    		// But just in case oldname is also bad, prioritize returning
    		// the oldname error because that's what we did historically.
    		// However, if the old name and new name are not the same, yet
    		// they refer to the same file, it implies a case-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/taint_eviction.go

    	}
    	wg.Wait()
    }
    
    func (tc *Controller) worker(ctx context.Context, worker int, done func(), stopCh <-chan struct{}) {
    	defer done()
    
    	// When processing events we want to prioritize Node updates over Pod updates,
    	// as NodeUpdates that interest the controller should be handled as soon as possible -
    	// we don't want user (or system) to wait until PodUpdate queue is drained before it can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashSet.java

     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Dimitris Andreou
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashSet.java

     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Dimitris Andreou
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if len(localityLbEndpoints) == 0 {
    		return buildEmptyClusterLoadAssignment(b.clusterName)
    	}
    
    	l := b.createClusterLoadAssignment(localityLbEndpoints)
    
    	// If locality aware routing is enabled, prioritize endpoints or set their lb weight.
    	// Failover should only be enabled when there is an outlier detection, otherwise Envoy
    	// will never detect the hosts are unhealthy and redirect traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller.go

    	}
    	_, ok := annotations[v1.EndpointsOverCapacity]
    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    	totalNotReady := 0
    	for _, subset := range endpoints.Subsets {
    		totalReady += len(subset.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    ----
    org.gradle.java.installations.paths=/custom/path/jdk1.8,/shared/jre11
    ----
    
    [NOTE]
    ====
    Gradle does not prioritize custom toolchains over <<sec:auto_detection,auto-detected>> toolchains.
    If you enable auto-detection in your build, custom toolchains extend the set of toolchain locations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompactHashMap.java

     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top