Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,143 for Maximum (0.18 sec)

  1. internal/config/batch/help.go

    		config.HelpKV{
    			Key:         ReplicationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch replication operation` + defaultHelpPostfix(ReplicationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         KeyRotationWorkersWait,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * @param interfaceType the interface you wish the returned proxy to implement
       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @return a time-limiting proxy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/version.go

    func (rv *RevVerMap) Minimum() IstioVersion {
    	return rv.Versions().Minimum()
    }
    
    // Maximum returns the maximum version from the revision-version mapping.
    func (rv *RevVerMap) Maximum() IstioVersion {
    	return rv.Versions().Maximum()
    }
    
    // AtLeast returns true if the minimum Istio version under test is at least the given version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        void setMinHeapSize(@Nullable String heapSize);
    
        /**
         * Returns the maximum heap size for the process, if any.
         *
         * @return The maximum heap size. Returns null if the default maximum heap size should be used.
         */
        @Nullable @Optional @Input
        String getMaxHeapSize();
    
        /**
         * Sets the maximum heap size for the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/concurrent/ParallelismConfiguration.java

         * </ul>
         *
         * Defaults to the number of processors available to the Java virtual machine.
         *
         * @return maximum number of concurrent workers, always &gt;= 1.
         * @see java.lang.Runtime#availableProcessors()
         */
        int getMaxWorkerCount();
    
        /**
         * Specifies the maximum number of concurrent workers used for underlying build operations.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: The maximum number of concurrent streams
                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoViolationRulesLimit.groovy

            }
            if (minimum) {
                limit <<= "    minimum = $minimum\n"
            }
            if (maximum) {
                limit <<= "    maximum = $maximum\n"
            }
    
            limit <<= '}'
            limit.toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            """
    
            fails TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS
    
            then:
            executed(JACOCO_COVERAGE_VERIFICATION_TASK_PATH)
            skipped(TEST_TASK_PATH)
            failure.assertHasCause("Rule violated for bundle $testDirectory.name: lines covered ratio is 1.0, but expected maximum is 0.5")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarc.java

            this.config = config;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        @Input
        public int getMaxPriority1Violations() {
            return maxPriority1Violations;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/pipelines/process_nchw_tensor.mlir

    // CHECK: stablehlo.maximum
    // CHECK: (tensor<1x5x5x4xf32>, tensor<f32>) -> tensor<1x2x2x4xf32>
    // CHECK: %[[TRANSPOSE_1:.+]] = stablehlo.transpose %[[REDUCE_WINDOW_MAX]], dims = [0, 3, 1, 2] : (tensor<1x2x2x4xf32>) -> tensor<1x4x2x2xf32>
    // CHECK: return %[[TRANSPOSE_1]]
    
    // -----
    
    // Tests that a `maximum(add(convolution(%activation, %weight), %bias), %zero)`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top