Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for keepalive_time_ms (0.63 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

                }],
                "channel_args": {
                  "args": {
                    "grpc.http2.max_pings_without_data": {
                      "int_value": 0
                    },
                    "grpc.keepalive_time_ms": {
                      "int_value": 10000
                    },
                    "grpc.keepalive_timeout_ms": {
                      "int_value": 20000
                    }
                  }
                }
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

    // behavior and concerns - we should look for a way to generalize this pattern.
    public class DefaultConditionalExecutionQueue<T> implements ConditionalExecutionQueue<T> {
        public static final int KEEP_ALIVE_TIME_MS = 2000;
    
        private enum QueueState {
            Working, Stopped
        }
    
        private final WorkerLimits workerLimits;
        private final WorkerLeaseService workerLeaseService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorNestingIntegrationTest.groovy

                    doLast {
                        def timeout = System.currentTimeMillis() + (${DefaultConditionalExecutionQueue.KEEP_ALIVE_TIME_MS} * 3)
    
                        // Let the keep-alive time on the thread pool expire
                        sleep(${DefaultConditionalExecutionQueue.KEEP_ALIVE_TIME_MS})
    
                        def executorThreads = WorkerExecutorThreads.getWorkerExecutorThreads()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top