Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 887 for priority1 (0.38 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `"Limited"` means that (a) requests of this priority level
    	// _are_ subject to limits and (b) some of the server's limited
    	// capacity is made available exclusively to this priority level.
    	// Required.
    	// +unionDiscriminator
    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ingest/Ingester.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public abstract class Ingester {
    
        protected int priority = 99;
    
        public int getPriority() {
            return priority;
        }
    
        public void setPriority(final int priority) {
            this.priority = priority;
        }
    
        public void register() {
            ComponentUtil.getIngestFactory().add(this);
        }
    
        // web/file
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/loadbalancer/weight.go

    	return func(src *mesh2.Client, dest *mesh2.Node) *WeightedConnection {
    		// Select the priority for this node.
    		priority := selectPriority(src, dest)
    
    		// Get the weight for the priority.
    		weight := uint32(1)
    		if priorityWeightMap != nil {
    			if w := priorityWeightMap[priority]; w > 0 {
    				weight = w
    			}
    		}
    
    		return &WeightedConnection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Name:           "dispatched_requests_total",
    			Help:           "Number of requests executed by API Priority and Fairness subsystem",
    			StabilityLevel: compbasemetrics.BETA,
    		},
    		[]string{priorityLevel, flowSchema},
    	)
    	// PriorityLevelExecutionSeatsGaugeVec creates observers of seats occupied throughout execution for priority levels
    	PriorityLevelExecutionSeatsGaugeVec = NewTimingRatioHistogramVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. internal/bucket/replication/replication_test.go

    eteReplication><Status>Disabled</Status></DeleteReplication><Prefix>prefix</Prefix><Priority>2</Priority><Destination><Bucket>arn:minio:replication:xxx::destinationbucket2</Bucket></Destination></Rule><Rule><Status>Enabled</Status><DeleteMarkerReplication><Status>Disabled</Status></DeleteMarkerReplication><DeleteReplication><Status>Disabled</Status></DeleteReplication><Prefix>prefix</Prefix><Priority>4</Priority><Destination><Bucket>arn:minio:replication:xxx::destinationbucket2</Bucket></Destina...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. okhttp-android/src/main/kotlin/okhttp3/android/AndroidLogging.kt

      priority: Int = Log.INFO,
      tag: String = "OkHttp",
    ) = LoggingEventListener.Factory { Log.println(priority, tag, it) }
    
    /**
     * An OkHttp [HttpLoggingInterceptor], with android Log as the target.
     */
    fun HttpLoggingInterceptor.Companion.androidLogging(
      priority: Int = Log.INFO,
      tag: String = "OkHttp",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.h

      // Register optimization `pass` with the given `priority`.
      void Add(int priority, std::unique_ptr<MlirOptimizationPass> pass) {
        auto inserted = passes_.insert({priority, std::move(pass)});
        CHECK(inserted.second)
            << "Pass priority must be unique. "
            << "Previously registered pass with the same priority: "
            << inserted.first->pass->name().str();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 22:53:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top