Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for Prioritize (1.22 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    		// Note that we do this phase after startRegs is set above, so that
    		// we get the right behavior for a block which branches to itself.
    		for _, e := range b.Succs {
    			succ := e.b
    			// TODO: prioritize likely successor?
    			for _, x := range s.startRegs[succ.ID] {
    				desired.add(x.v.ID, x.r)
    			}
    			// Process phi ops in succ.
    			pidx := e.i
    			for _, v := range succ.Values {
    				if v.Op != OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  7. 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)
  8. pilot/pkg/leaderelection/leaderelection.go

    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    	// * Other types use "prioritized leader election", which isn't implemented for Lease
    	GatewayDeploymentController = "istio-gateway-deployment"
    	NodeUntaintController       = "istio-node-untaint"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K 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. schema/schema_helper_test.go

    			var found bool
    			for _, f := range s.PrimaryFields {
    				if f.Name == field {
    					found = true
    				}
    			}
    
    			if idx == 0 {
    				if field != s.PrioritizedPrimaryField.Name {
    					t.Errorf("schema %v prioritized primary field should be %v, but got %v", s, field, s.PrioritizedPrimaryField.Name)
    				}
    			}
    
    			if !found {
    				t.Errorf("schema %v failed to found primary key: %v", s, field)
    			}
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top