Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for mib (0.04 sec)

  1. src/runtime/sys_darwin.go

    	KeepAlive(new)
    	KeepAlive(old)
    }
    func setitimer_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sysctl(mib *uint32, miblen uint32, oldp *byte, oldlenp *uintptr, newp *byte, newlen uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(sysctl_trampoline)), unsafe.Pointer(&mib))
    	KeepAlive(mib)
    	KeepAlive(oldp)
    	KeepAlive(oldlenp)
    	KeepAlive(newp)
    	return ret
    }
    func sysctl_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/recipes.md

    Download a file, print its headers, and print its response body as a string.
    
    The `string()` method on response body is convenient and efficient for small documents. But if the response body is large (greater than 1 MiB), avoid `string()` because it will load the entire document into memory. In that case, prefer to process the body as a stream.
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K 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. docs/changelogs/changelog_4x.md

        calls and that can receive data faster than they can process it. Previously, OkHttp limited
        HTTP/2 to 16 MiB of unacknowledged data per connection. With this fix there is a limit of 16 MiB
        of unacknowledged data per stream and no per-connection limit.
    
     *  Fix: Don't operate on a connection after it's been returned to the pool. This race occurred
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_freebsd_riscv64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top