Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 408 for 0_80 (0.41 sec)

  1. src/net/http/fcgi/fcgi_test.go

    	"io"
    	"net/http"
    	"strings"
    	"testing"
    	"time"
    )
    
    var sizeTests = []struct {
    	size  uint32
    	bytes []byte
    }{
    	{0, []byte{0x00}},
    	{127, []byte{0x7F}},
    	{128, []byte{0x80, 0x00, 0x00, 0x80}},
    	{1000, []byte{0x80, 0x00, 0x03, 0xE8}},
    	{33554431, []byte{0x81, 0xFF, 0xFF, 0xFF}},
    }
    
    func TestSize(t *testing.T) {
    	b := make([]byte, 4)
    	for i, test := range sizeTests {
    		n := encodeSize(b, test.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	Fd     int32
    	Pad    int32
    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    )
    
    type Sigset_t struct {
    	Val [32]uint32
    }
    
    const _C__NSIG = 0x80
    
    const (
    	SIG_BLOCK   = 0x1
    	SIG_UNBLOCK = 0x2
    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     [116]byte
    }
    
    type Termios struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/math/big/natconv_test.go

    	// invalid: incorrect use of separators
    	{"_0", 0, false, nil, 10, 1, errInvalSep, 0},
    	{"0_", 0, false, nil, 10, 1, errInvalSep, 0},
    	{"0__0", 0, false, nil, 8, 1, errInvalSep, 0},
    	{"0x___0", 0, false, nil, 16, 1, errInvalSep, 0},
    	{"0_x", 0, false, nil, 10, 1, errInvalSep, 'x'},
    	{"0_8", 0, false, nil, 10, 1, errInvalSep, '8'},
    	{"123_.", 0, true, nat{123}, 10, 0, errInvalSep, 0},
    	{"._123", 0, true, nat{123}, 10, -3, errInvalSep, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  4. src/encoding/json/indent.go

    			dst = append(dst, src[start:i]...)
    			dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
    			start = i + 1
    		}
    		// Convert U+2028 and U+2029 (E2 80 A8 and E2 80 A9).
    		if c == 0xE2 && i+2 < len(src) && src[i+1] == 0x80 && src[i+2]&^1 == 0xA8 {
    			dst = append(dst, src[start:i]...)
    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + len("\u2029")
    		}
    	}
    	return append(dst, src[start:]...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/image/color/ycbcr.go

    	// 0x80, Cr: 0x80} and c1 := Gray{Y: y} then c0.RGBA() should equal
    	// c1.RGBA(). Specifically, if y == 0 then "R = etc >> 8" should yield
    	// 0x0000 and if y == 0xff then "R = etc >> 8" should yield 0xffff. If we
    	// used a constant rounding adjustment of 1<<15, then it would yield 0x0080
    	// and 0xff80 respectively.
    	//
    	// Note that when cb == 0x80 and cr == 0x80 then the formulae collapse to:
    	//	R = YY1 >> n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. src/internal/runtime/syscall/asm_linux_ppc64x.s

    //go:build linux && (ppc64 || ppc64le)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6<ABIInternal>(SB),NOSPLIT,$0-80
    	MOVD	R3, R10	// Move syscall number to R10. SYSCALL will move it R0, and restore R0.
    	MOVD	R4, R3
    	MOVD	R5, R4
    	MOVD	R6, R5
    	MOVD	R7, R6
    	MOVD	R8, R7
    	MOVD	R9, R8
    	SYSCALL	R10
    	MOVD	$-1, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 702 bytes
    - Viewed (0)
  7. build-logic-settings/settings.gradle.kts

     */
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    include("build-environment")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 891 bytes
    - Viewed (0)
  8. src/crypto/aes/asm_amd64.s

    	AESKEYGENASSIST $0x10, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x20, X2, X1
    	CALL _expand_key_192b<>(SB)
    	AESKEYGENASSIST $0x40, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x80, X2, X1
    	CALL _expand_key_192b<>(SB)
    	JMP Lexp_dec
    Lexp_enc128:
    	AESKEYGENASSIST $0x01, X0, X1
    	CALL _expand_key_128<>(SB)
    	AESKEYGENASSIST $0x02, X0, X1
    	CALL _expand_key_128<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/settings.gradle

    plugins {
        id 'org.gradle.toolchains.foojay-resolver' version '0.8.0'
    }
    
    import java.util.Optional
    import javax.inject.Inject
    
    apply plugin: MadeUpPlugin
    
    // tag::toolchain-management[]
    toolchainManagement {
        jvm { // <1>
            javaRepositories {
                repository('foojay') { // <2>
                    resolverClass = org.gradle.toolchains.foojay.FoojayToolchainResolver
                }
                repository('made_up') { // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	NTF_PROXY          = 0x8
    	NTF_EXT_LEARNED    = 0x10
    	NTF_OFFLOADED      = 0x20
    	NTF_ROUTER         = 0x80
    	NUD_INCOMPLETE     = 0x1
    	NUD_REACHABLE      = 0x2
    	NUD_STALE          = 0x4
    	NUD_DELAY          = 0x8
    	NUD_PROBE          = 0x10
    	NUD_FAILED         = 0x20
    	NUD_NOARP          = 0x40
    	NUD_PERMANENT      = 0x80
    	NUD_NONE           = 0x0
    	IFA_UNSPEC         = 0x0
    	IFA_ADDRESS        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top