Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,213 for Maximum (0.11 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchy {
        private final long version;
        // We store the maximum version as a performance optimization, so we don't need
        // to query the children every time we query the version for a hierarchy.
        private final long maxVersionInHierarchy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationConstraint.java

     */
    public enum BuildOperationConstraint {
        /**
         * Constrain execution by the configured maximum number of workers.
         */
        MAX_WORKERS,
    
        /**
         * Unconstrained execution allowing as many threads as required to a maximum of 10 times the configured workers.
         */
        UNCONSTRAINED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/image_format/internal_api.h

                                SavedModel* saved_model_proto);
    
    // Writes the SavedModel proto to a file or to string. If the proto is < the
    // protobuf maximum size, then it will be serialized as a `.pb` proto binary.
    // When larger than the maximum size, the SavedModel proto is destructively
    // separated into chunks and written to
    // `.cpb` (chunked proto).
    //
    // Write SavedModel to {file_prefix}{.pb|.cpb}.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

        // global minimum of all sample datasets.
        float global_min = 1;
    
        // global maximum of all sample datasets.
        float global_max = 2;
      }
    
      message AverageMinMaxStatistics {
        // sum of batch's minimum in each sample dataset.
        float min_sum = 1;
    
        // sum of batch's maximum in each sample dataset.
        float max_sum = 2;
    
        // number of sample datasets
        int32 num_samples = 3;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         */
        int getNetbiosCachePolicy ();
    
    
        /**
         * 
         * @return the maximum size of IO buffers, limits the maximum message size
         */
        int getMaximumBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.transaction_buf_size</tt> (int, default 65535)
         * 
         * @return maximum data size for SMB transactions
         */
        int getTransactionBufferSize ();
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. src/packaging/common/systemd/fess.service

    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    namespace tflite {
    
    // The following GetBuiltinCode methods are the utility methods for reading
    // builtin operator code, ensuring compatibility issues between v3 and v3a
    // schema. Always the maximum value of the two fields always will be the correct
    // value as follows:
    //
    // - Supporting schema version v3 models
    //
    // The `builtin_code` field is not available in the v3 models. Flatbuffer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. docs/sts/client-grants.md

    ## API Request Parameters
    
    ### Token
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/concurrent/WorkerLimits.java

     * </ul>
     */
    @NonNullApi
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface WorkerLimits {
    
        /**
         * Returns the maximum number of concurrent workers.
         *
         * @return maximum number of concurrent workers, always &gt;= 1.
         */
        int getMaxWorkerCount();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:30:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. integration-tests/gradle/gradlew

    APP_BASE_NAME=${0##*/}
    # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
    APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
    
    # Use the maximum available, or set MAX_FD != -1 to use that value.
    MAX_FD=maximum
    
    warn () {
        echo "$*"
    } >&2
    
    die () {
        echo
        echo "$*"
        echo
        exit 1
    } >&2
    
    # OS specific support (must be 'true' or 'false').
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top