Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 800 for queuesa (0.15 sec)

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

    type QueuingConfiguration struct {
    	// `queues` is the number of queues for this priority level. The
    	// queues exist independently at each apiserver. The value must be
    	// positive.  Setting it to 1 effectively precludes
    	// shufflesharding and thus makes the distinguisher method of
    	// associated flow schemas irrelevant.  This field has a default
    	// value of 64.
    	// +optional
    	Queues int32 `json:"queues" protobuf:"varint,1,opt,name=queues"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    			}
    		case toSend = <-c.outQueue:
    			if len(toSend) == 0 {
    				continue
    			}
    		}
    		if len(queue) < maxMergeMessages && queueSize+len(toSend) < writeBufferSize-1024 && len(c.outQueue) > 0 {
    			queue = append(queue, toSend)
    			queueSize += len(toSend)
    			continue
    		}
    		c.outMessages.Add(int64(len(queue) + 1))
    		if c.outgoingBytes != nil {
    			c.outgoingBytes(int64(len(toSend) + queueSize))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    type QueuingConfiguration struct {
    	// `queues` is the number of queues for this priority level. The
    	// queues exist independently at each apiserver. The value must be
    	// positive.  Setting it to 1 effectively precludes
    	// shufflesharding and thus makes the distinguisher method of
    	// associated flow schemas irrelevant.  This field has a default
    	// value of 64.
    	// +optional
    	Queues int32 `json:"queues" protobuf:"varint,1,opt,name=queues"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/QueuesTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

            // 3. Stop receiving incoming messages. Blocks until the receive thread has finished. This will notify the stdin and receive queues to signal end of input.
            // 4. Stop the receive queue, to unblock any threads blocked in receive().
            // 5. Stop handling stdin. Blocks until the handler has finished. Discards any queued input.
            CompositeStoppable.stoppable(disconnectQueue, connection, executor, receiveQueue, stdinQueue, cancelQueue).stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/QueuesTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `queues` is the number of queues for this priority level. The
      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    }
    
    var map_QueuingConfiguration = map[string]string{
    	"":                 "QueuingConfiguration holds the configuration parameters for queuing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `queues` is the number of queues for this priority level. The
      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      repeated PriorityLevelConfigurationCondition conditions = 1;
    }
    
    // QueuingConfiguration holds the configuration parameters for queuing
    message QueuingConfiguration {
      // `queues` is the number of queues for this priority level. The
      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top