Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for Prioritize (0.21 sec)

  1. pkg/scheduler/schedule_one.go

    				defer func() {
    					metrics.Goroutines.WithLabelValues(metrics.PrioritizingExtender).Dec()
    					wg.Done()
    				}()
    				prioritizedList, weight, err := extenders[extIndex].Prioritize(pod, nodes)
    				if err != nil {
    					// Prioritization errors from extender can be ignored, let k8s/other extenders determine the priorities
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. android/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
    - 35.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    Clearly defined task inputs and outputs serve two purposes:
    
    1. They inform Gradle about task dependencies. +
    For example, if Gradle understands that the output of the `compileJava` task serves as the input for the `jar` task, it will prioritize running `compileJava` first.
    2. They facilitate incremental building. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /**
     * For mobile devices, we show navigation at bottom of page.
     *
     * This is the simplest solution to this issue.
     */
    @media not screen and (min-width: 64rem) {
    	/* Repeat the class twice to prioritize our mobile classes! */
    
    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    }
    
    func (f *fakeExtender) Filter(pod *v1.Pod, nodes []*framework.NodeInfo) ([]*framework.NodeInfo, extenderv1.FailedNodesMap, extenderv1.FailedNodesMap, error) {
    	return nil, nil, nil, nil
    }
    
    func (f *fakeExtender) Prioritize(
    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Some interfaces' signatures in the scheduler were updated: - PluginsRunner: used NodeInfo in `RunPreScorePlugins` and `RunScorePlugins`. - PreScorePlugin: used NodeInfo in `PreScore`. - Extender: used NodeInfo in `Filter` and `Prioritize`.
       ([#121954](https://github.com/kubernetes/kubernetes/pull/121954), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			},
    		},
    		{
    			description:     "prioritise container field over pod field",
    			podSc:           &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}},
    			containerSc:     &v1.SecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeRuntimeDefault}},
    			expectedProfile: runtimeDefaultProfile,
    		},
    		{
    			description:   "prioritise container field over pod field",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                            Proxy or Load Balancer routing configuration generated from GRPCRoutes
                            MUST prioritize rules based on the following criteria, continuing on
                            ties. Merging MUST not be done between GRPCRoutes and HTTPRoutes.
                            Precedence MUST be given to the rule with the largest number of:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. schema/schema.go

    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    		bindName := field.BindName()
    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// hint, but are not required to guarantee strict adherence. If the field is
    	// not set, the implementation will apply its default routing strategy. If set
    	// to "PreferClose", implementations should prioritize endpoints that are
    	// topologically close (e.g., same zone).
    	// +optional
    	TrafficDistribution *string
    }
    
    // ServicePort represents the port on which the service is exposed
    type ServicePort struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top