Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,213 for Maximum (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

        }
    
        /**
         * The maximum number of errors that are tolerated before breaking the build
         * or setting the failure property.
         *
         * @return the maximum number of errors allowed
         * @since 3.4
         */
        @Input
        public int getMaxErrors() {
            return maxErrors;
        }
    
        /**
         * Set the maximum number of errors that are tolerated before breaking the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/bigdata/README.md

    fs.s3a.committer.threads=2048 # Number of threads writing to MinIO
    fs.s3a.connection.maximum=8192 # Maximum number of concurrent conns
    fs.s3a.fast.upload.active.blocks=2048 # Number of parallel uploads
    fs.s3a.fast.upload.buffer=disk # Use disk as the buffer for uploads
    fs.s3a.fast.upload=true # Turn on fast upload mode
    fs.s3a.max.total.tasks=2048 # Maximum number of parallel tasks
    fs.s3a.multipart.size=512M # Size of each multipart chunk
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top