Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 427 for Maximum (0.23 sec)

  1. 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)
  2. 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)
  3. src/runtime/sys_wasm.s

    	I64DivS
    	Return
    
    TEXT runtime·wasmTruncS(SB), NOSPLIT, $0-0
    	Get R0
    	Get R0
    	F64Ne // NaN
    	If
    		I64Const $0x8000000000000000
    		Return
    	End
    
    	Get R0
    	F64Const $0x7ffffffffffffc00p0 // Maximum truncated representation of 0x7fffffffffffffff
    	F64Gt
    	If
    		I64Const $0x8000000000000000
    		Return
    	End
    
    	Get R0
    	F64Const $-0x7ffffffffffffc00p0 // Minimum truncated representation of -0x8000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. cmd/server-rlimit.go

    			debug.SetMaxThreads(minioMaxThreads)
    		}
    	}
    
    	var maxLimit uint64
    
    	// Set open files limit to maximum.
    	if _, maxLimit, err = sys.GetMaxOpenFileLimit(); err != nil {
    		return err
    	}
    
    	if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName {
    		logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"",
    			maxLimit)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/crypto/rand/rand_getrandom.go

    		// Per the manpage:
    		//     When reading from the urandom source, a maximum of 33554431 bytes
    		//     is returned by a single call to getrandom() on systems where int
    		//     has a size of 32 bits.
    		maxGetRandomRead = (1 << 25) - 1
    	case "dragonfly", "freebsd", "illumos", "solaris":
    		maxGetRandomRead = 1 << 8
    	default:
    		panic("no maximum specified for GetRandom")
    	}
    	altGetRandom = batched(getRandom, maxGetRandomRead)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:26:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/sys_dragonfly.go

    package route
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func (typ RIBType) parseable() bool { return true }
    
    // RouteMetrics represents route metrics.
    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. pilot/pkg/features/tuning.go

    	StatusMaxWorkers = env.Register("PILOT_STATUS_MAX_WORKERS", 100, "The maximum number of workers"+
    		" Pilot will use to keep configuration status up to date.  Smaller numbers will result in higher status latency, "+
    		"but larger numbers may impact CPU in high scale environments.").Get()
    
    	XDSCacheMaxSize = env.Register("PILOT_XDS_CACHE_SIZE", 60000,
    		"The maximum number of cache entries for the XDS cache.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/AbstractCodeQualityTask.java

        @Input
        public abstract Property<String> getMinHeapSize();
    
        /**
         * The maximum heap size for the worker process.  If unspecified, a maximum heap size will be provided by Gradle.
         *
         * Supports units like the command-line option {@code -Xmx} such as {@code "1g"}.
         *
         * @return The maximum heap size.
         */
        @Optional
        @Input
        public abstract Property<String> getMaxHeapSize();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      internal const val OPCODE_CONTROL_PING = 0x9
      internal const val OPCODE_CONTROL_PONG = 0xa
    
      /**
       * Maximum length of frame payload. Larger payloads, if supported by the frame type, can use the
       * special values [PAYLOAD_SHORT] or [PAYLOAD_LONG].
       */
      internal const val PAYLOAD_BYTE_MAX = 125L
    
      /** Maximum length of close message in bytes. */
      internal const val CLOSE_MESSAGE_MAX = PAYLOAD_BYTE_MAX - 2
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    	// AdditionalLatency should not have any impact on the user experience, the
    	// caller must not experience this additional latency.
    	AdditionalLatency time.Duration
    }
    
    // MaxSeats returns the maximum number of seats the request occupies over the
    // phases of being served.
    func (we *WorkEstimate) MaxSeats() int {
    	if we.InitialSeats >= we.FinalSeats {
    		return int(we.InitialSeats)
    	}
    
    	return int(we.FinalSeats)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top