Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Prioritize (0.38 sec)

  1. releasenotes/notes/drop-reload-prioritized-leader-election.yaml

    John Howard <******@****.***> 1682620625 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:37:05 UTC 2023
    - 148 bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // BalancedAllocation is a score plugin that calculates the difference between the cpu and memory fraction
    // of capacity, and prioritizes the host based on how close the two metrics are to each other.
    type BalancedAllocation struct {
    	handle framework.Handle
    	resourceAllocationScorer
    }
    
    var _ framework.PreScorePlugin = &BalancedAllocation{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. .idea/dictionaries/valentin.xml

          <w>delegator</w>
          <w>elipsis</w>
          <w>funs</w>
          <w>immediates</w>
          <w>initializers</w>
          <w>inserter</w>
          <w>negatable</w>
          <w>pparent</w>
          <w>precheck</w>
          <w>prioritizer</w>
          <w>processings</w>
          <w>rbrace</w>
          <w>rbracket</w>
          <w>renderers</w>
          <w>rparenth</w>
          <w>selectioner</w>
          <w>smartcast</w>
          <w>summand</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 13 14:46:16 UTC 2016
    - 605 bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/pilot/locality_test.go

    				expected map[string]int
    			}{
    				{
    					"Prioritized/CDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    						Resolution:      "DNS",
    						Local:           destA.Config().Service,
    						Remote:          destB.Config().Service,
    					},
    					expectAllTrafficTo(destA.Config().Service),
    				},
    				{
    					"Prioritized/EDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    )
    
    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    // prioritizes based on the minimum of the average of the fraction of requested to capacity.
    //
    // Details:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            match on \"/\", which has the effect of matching every HTTP
                            request. \n Proxy or Load Balancer routing configuration generated
                            from HTTPRoutes MUST prioritize matches based on the following
                            criteria, continuing on ties. Across all rules specified on
                            applicable Routes, precedence must be given to the match having:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types_pluginargs.go

    // ScoringStrategyType the type of scoring strategy used in NodeResourcesFit plugin.
    type ScoringStrategyType string
    
    const (
    	// LeastAllocated strategy prioritizes nodes with least allocated resources.
    	LeastAllocated ScoringStrategyType = "LeastAllocated"
    	// MostAllocated strategy prioritizes nodes with most allocated resources.
    	MostAllocated ScoringStrategyType = "MostAllocated"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top