Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for mib (0.16 sec)

  1. src/syscall/syscall_openbsd_libc.go

    }
    
    //sys	readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_read
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_lseek
    //sys	getcwd(buf []byte) (n int, err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error)
    //sysnb fork() (pid int, err error)
    //sysnb execve(path *byte, argv **byte, envp **byte) (err error)
    //sysnb exit(res int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

          set(i, other[i])
        }
      }
    
      companion object {
        /**
         * From the HTTP/2 specs, the default initial window size for all streams is 64 KiB. (Chrome 25
         * uses 10 MiB).
         */
        const val DEFAULT_INITIAL_WINDOW_SIZE = 65535
    
        /** HTTP/2: Size in bytes of the table used to decode the sender's header blocks. */
        const val HEADER_TABLE_SIZE = 1
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_arm64.s

    	MOVW	flags+16(FP), R2
    	MOVD	$SYS_madvise, R8
    	SVC
    	BCC	ok
    	MOVW	$-1, R0
    ok:
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVD	mib+0(FP), R0
    	MOVD	miblen+8(FP), R1
    	MOVD	out+16(FP), R2
    	MOVD	size+24(FP), R3
    	MOVD	dst+32(FP), R4
    	MOVD	ndst+40(FP), R5
    	MOVD	$SYS___sysctl, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_riscv64.s

    	MOVW	flags+16(FP), A2
    	MOV	$SYS_madvise, T0
    	ECALL
    	BEQ	T0, ZERO, ok
    	MOV	$-1, A0
    ok:
    	MOVW	A0, ret+24(FP)
    	RET
    
    // func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOV	mib+0(FP), A0
    	MOV	miblen+8(FP), A1
    	MOV	out+16(FP), A2
    	MOV	size+24(FP), A3
    	MOV	dst+32(FP), A4
    	MOV	ndst+40(FP), A5
    	MOV	$SYS___sysctl, T0
    	ECALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_mips64.s

    	MOVV	ident+0(FP), R4		// arg 1 - ident
    	MOVW	n+8(FP), R5		// arg 2 - n
    	MOVV	$301, R2		// sys___thrwakeup
    	SYSCALL
    	MOVW	R2, ret+16(FP)
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVV	mib+0(FP), R4		// arg 1 - mib
    	MOVW	miblen+8(FP), R5	// arg 2 - miblen
    	MOVV	out+16(FP), R6		// arg 3 - out
    	MOVV	size+24(FP), R7		// arg 4 - size
    	MOVV	dst+32(FP), R8		// arg 5 - dest
    	MOVV	ndst+40(FP), R9		// arg 6 - newlen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. cmd/untar.go

    	case formatGzip:
    		gz, err := gzip.NewReader(bf)
    		if err != nil {
    			return err
    		}
    		defer gz.Close()
    		r = gz
    	case formatS2:
    		r = s2.NewReader(bf)
    	case formatZstd:
    		// Limit to 16 MiB per stream.
    		dec, err := zstd.NewReader(bf, zstd.WithDecoderMaxWindow(16<<20))
    		if err != nil {
    			return err
    		}
    		defer dec.Close()
    		r = dec
    	case formatBZ2:
    		ctx, cancel := context.WithCancel(ctx)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. docs/distributed/DECOMMISSION.md

    └─────┴─────────────────────────────────┴──────────────────────────────────┴────────┘
    ```
    
    ### Decommissioning status
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommissioning rate at 36 MiB/sec [4 TiB/50 TiB]
    Started: 1 minute ago
    ```
    
    Once it is **Complete**
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

      /**
       * Attempts to enqueue `bytes` to be sent as a the data of a binary (type `0x2`) message.
       *
       * This method returns true if the message was enqueued. Messages that would overflow the outgoing
       * message buffer (16 MiB) will be rejected and trigger a [graceful shutdown][close] of this web
       * socket. This method returns false in that case, and in any other case where this web socket is
       * closing, closed, or canceled.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_openbsd.go

    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    	raw    RawSockaddrDatalink
    }
    
    func nametomib(name string) (mib []_C_int, err error) {
    	// Perform lookup via a binary search
    	left := 0
    	right := len(sysctlMib) - 1
    	for {
    		idx := int(uint(left+right) >> 1)
    		switch {
    		case name == sysctlMib[idx].ctlname:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. src/runtime/cpuprof.go

    	// word or two) and stacks at the profiler's maximum length of 64 frames,
    	// that capacity can support 1900 samples or 19 thread-seconds at a 100 Hz
    	// sample rate, at a cost of 1 MiB.
    	profBufWordCount = 1 << 17
    	// profBufTagCount is the size of the CPU profile buffer's storage for the
    	// goroutine tags associated with each sample. A capacity of 1<<14 means
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top