Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 427 for Maximum (0.11 sec)

  1. docs/minio-limits.md

    | Maximum number of buckets                                                       | unlimited (we recommend not beyond 500000 buckets) - see NOTE:                  |
    | Maximum number of objects per bucket                                            | no-limit                                                                        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoLimitImpl.java

            }
            return maximum != null ? maximum.equals(that.maximum) : that.maximum == null;
        }
    
        @Override
        public int hashCode() {
            int result = counter != null ? counter.hashCode() : 0;
            result = 31 * result + (value != null ? value.hashCode() : 0);
            result = 31 * result + (minimum != null ? minimum.hashCode() : 0);
            result = 31 * result + (maximum != null ? maximum.hashCode() : 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

        /**
         * Gets the maximum expected value for limit. Default to null.
         */
        @Nullable
        @Optional
        @Input
        BigDecimal getMaximum();
    
        /**
         * Sets the maximum expected value for limit.
         *
         * @param maximum Maximum
         */
        void setMaximum(@Nullable BigDecimal maximum);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

      }
    
    // CHECK-LABEL: func @conv_with_multiple_uses
    // CHECK: %[[div:.*]] = "tf.Div"(%arg0
    // CHECK: %[[add:.*]] = "tf.AddV2"(%[[div]]
    // CHECK: %[[maximum:.*]] = "tf.Maximum"(%[[add]]
    // CHECK: %[[minimum:.*]] = "tf.Minimum"(%[[maximum]]
    // CHECK: %[[round:.*]] = "tf.Round"(%[[minimum]]
    // CHECK: %[[quant:.*]] = "tf.Cast"(%[[round]]) : (tensor<1x3x4x3xf32>) -> tensor<1x3x4x3xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/RecordedResponse.kt

        }
    
      fun assertSentRequestAtMillis(
        minimum: Long,
        maximum: Long,
      ) = apply {
        assertDateInRange(minimum, response!!.sentRequestAtMillis, maximum)
      }
    
      fun assertReceivedResponseAtMillis(
        minimum: Long,
        maximum: Long,
      ) = apply {
        assertDateInRange(minimum, response!!.receivedResponseAtMillis, maximum)
      }
    
      private fun assertDateInRange(
        minimum: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleExtension.java

            return configDirectory;
        }
    
        /**
         * The maximum number of errors that are tolerated before breaking the build
         * or setting the failure property. Defaults to <code>0</code>.
         * <p>
         * Example: maxErrors = 42
         *
         * @return the maximum number of errors allowed
         * @since 3.4
         */
        public int getMaxErrors() {
            return maxErrors;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcExtension.java

            setConfig(project.getResources().getText().fromFile(file));
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        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 Jun 21 12:23:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top