Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for QueueSize (0.33 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

         */
        public SimplexTransferListener(
                TransferListener delegate, int queueSize, int batchMaxSize, boolean blockOnLastEvent) {
            this.delegate = requireNonNull(delegate);
            if (queueSize < 1 || batchMaxSize < 1) {
                throw new IllegalArgumentException("Queue and batch sizes must be greater than 1");
            }
            this.batchMaxSize = batchMaxSize;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. internal/logger/help.go

    		},
    		config.HelpKV{
    			Key:         BatchSize,
    			Description: "Number of events per HTTP send to webhook target",
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         QueueSize,
    			Description: "configure channel queue size for webhook targets",
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         QueueDir,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 07 20:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/data_flow_grad.cc

    REGISTER_NO_GRADIENT_OP("QueueEnqueueMany");
    REGISTER_NO_GRADIENT_OP("QueueDequeue");
    REGISTER_NO_GRADIENT_OP("QueueDequeueMany");
    REGISTER_NO_GRADIENT_OP("QueueDequeueUpTo");
    REGISTER_NO_GRADIENT_OP("QueueClose");
    REGISTER_NO_GRADIENT_OP("QueueSize");
    REGISTER_NO_GRADIENT_OP("Stack");
    REGISTER_NO_GRADIENT_OP("StackPush");
    REGISTER_NO_GRADIENT_OP("StackPop");
    REGISTER_NO_GRADIENT_OP("StackClose");
    REGISTER_NO_GRADIENT_OP("GetSessionHandle");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

       * queue. If may return a nonzero value after the web socket has been canceled; this indicates
       * that enqueued messages were not transmitted.
       */
      fun queueSize(): Long
    
      /**
       * Attempts to enqueue `text` to be UTF-8 encoded and sent as a the data of a text (type `0x1`)
       * message.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top