Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 886 for priorityOk (0.17 sec)

  1. src/strings/replace.go

    	// this node is not a complete key.
    	value string
    	// priority is the priority (higher is more important) of the trie node's
    	// key/value pair; keys are not necessarily matched shortest- or longest-
    	// first. Priority is positive if this node is a complete key, and zero
    	// otherwise. In the example above, positive/zero priorities are marked
    	// with a trailing "+" or "-".
    	priority int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

          "00011110",
          "00011111",
          "PRIORITY",
          "END_STREAM|PRIORITY",
          "00100010",
          "00100011",
          "END_HEADERS|PRIORITY",
          "END_STREAM|END_HEADERS|PRIORITY",
          "00100110",
          "00100111",
          "00101000",
          "END_STREAM|PRIORITY|PADDED",
          "00101010",
          "00101011",
          "00101100",
          "END_STREAM|END_HEADERS|PRIORITY|PADDED",
          "00101110",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcExtension.java

            setConfig(project.getResources().getText().fromFile(file));
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        public int getMaxPriority1Violations() {
            return maxPriority1Violations;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        public void setMaxPriority1Violations(int maxPriority1Violations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/apis/scheduling/v1/helpers.go

    	"fmt"
    	"k8s.io/api/scheduling/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    )
    
    // SystemPriorityClasses define system priority classes that are auto-created at cluster bootstrapping.
    // Our API validation logic ensures that any priority class that has a system prefix or its value
    // is higher than HighestUserDefinablePriority is equal to one of these SystemPriorityClasses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 16:51:57 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/resources/resources.go

    						unitName = "integer"
    					}
    				}
    				var priority string
    				if p.Spec.Priority != nil {
    					priority = strconv.FormatInt(int64(*p.Spec.Priority), 10)
    				}
    				recordMetricWithUnit(ch, t.desc.total, p.Namespace, p.Name, p.Spec.NodeName, p.Spec.SchedulerName, priority, resourceName, unitName, val)
    			}
    		}
    	}
    }
    
    func recordMetricWithUnit(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. pkg/registry/scheduling/priorityclass/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/scheduling/priorityclass"
    )
    
    // REST implements a RESTStorage for priority classes against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against priority classes.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    // which when called signals that watch initialization has already finished
    // to priority and fairness dispatcher.
    func initializationSignalFrom(ctx context.Context) (InitializationSignal, bool) {
    	signal, ok := ctx.Value(priorityAndFairnessInitializationSignalKey).(InitializationSignal)
    	return signal, ok && signal != nil
    }
    
    // WatchInitialized sends a signal to priority and fairness dispatcher
    // that a given watch request has already been initialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/prioritylevelconfiguration/storage/storage.go

    type PriorityLevelConfigurationStorage struct {
    	PriorityLevelConfiguration *REST
    	Status                     *StatusREST
    }
    
    // REST implements a RESTStorage for priority level configuration against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against priority level configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:11:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    			},
    		},
    	}
    
    	expectedns := []string{
    		"testns/super-high-priority", "testns/high-priority", "testns/default-priority", "testns/a-medium-priority",
    		"testns/b-medium-priority", "testns/b-low-priority", "testns/a-low-priority",
    	}
    
    	expectedns1 := []string{"testns-1/default-priority", "testns-1/a-medium-priority", "testns-1/b-medium-priority"}
    
    	for _, cfg := range envoyFilters {
    		_, _ = store.Create(cfg)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    		{
    			name:      "suggested priority level configuration does not exist - the object should always be re-created",
    			strategy:  NewSuggestedEnsureStrategy[*flowcontrolv1.PriorityLevelConfiguration],
    			bootstrap: newPLConfiguration("pl1").WithLimited(10).Object(),
    			current:   nil,
    			expected:  newPLConfiguration("pl1").WithLimited(10).Object(),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top