Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for Maximum (0.65 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top