Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 317 for 4996 (0.05 sec)

  1. test/fixedbugs/issue4396a.go

    package main
    
    var s = struct {
    	// based on lzw.decoder
    	a, b, c, d, e uint16
    	f             [4096]uint8
    	g             [4096]uint8
    }{}
    
    func main() {
    	s.g[0] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 627 bytes
    - Viewed (0)
  2. src/syscall/zsysnum_linux_mipsle.go

    	SYS_MUNMAP                 = 4091
    	SYS_TRUNCATE               = 4092
    	SYS_FTRUNCATE              = 4093
    	SYS_FCHMOD                 = 4094
    	SYS_FCHOWN                 = 4095
    	SYS_GETPRIORITY            = 4096
    	SYS_SETPRIORITY            = 4097
    	SYS_PROFIL                 = 4098
    	SYS_STATFS                 = 4099
    	SYS_FSTATFS                = 4100
    	SYS_IOPERM                 = 4101
    	SYS_SOCKETCALL             = 4102
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_linux_mips.go

    	SYS_MUNMAP                 = 4091
    	SYS_TRUNCATE               = 4092
    	SYS_FTRUNCATE              = 4093
    	SYS_FCHMOD                 = 4094
    	SYS_FCHOWN                 = 4095
    	SYS_GETPRIORITY            = 4096
    	SYS_SETPRIORITY            = 4097
    	SYS_PROFIL                 = 4098
    	SYS_STATFS                 = 4099
    	SYS_FSTATFS                = 4100
    	SYS_IOPERM                 = 4101
    	SYS_SOCKETCALL             = 4102
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/loong64enc2.s

    	SGT	$65536, R4, R5		// 1e02001485781200
    	SGT	$4096, R4, R5		// 3e00001485781200
    	SGT	$65536, R4		// 1e02001484781200
    	SGT	$4096, R4		// 3e00001484781200
    	SGTU	$65536, R4, R5		// 1e02001485f81200
    	SGTU	$4096, R4, R5		// 3e00001485f81200
    	SGTU	$65536, R4		// 1e02001484f81200
    	SGTU	$4096, R4		// 3e00001484f81200
    	ADDU	$65536, R4, R5		// 1e02001485781000
    	ADDU	$4096, R4, R5		// 3e00001485781000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/asm_test.go

    	asm := `
    TEXT _stub(SB),$0-0
    	LB	4096(X5), X6
    	LH	4096(X5), X6
    	LW	4096(X5), X6
    	LD	4096(X5), X6
    	LBU	4096(X5), X6
    	LHU	4096(X5), X6
    	LWU	4096(X5), X6
    	SB	X6, 4096(X5)
    	SH	X6, 4096(X5)
    	SW	X6, 4096(X5)
    	SD	X6, 4096(X5)
    
    	FLW	4096(X5), F6
    	FLD	4096(X5), F6
    	FSW	F6, 4096(X5)
    	FSD	F6, 4096(X5)
    
    	MOVB	4096(X5), X6
    	MOVH	4096(X5), X6
    	MOVW	4096(X5), X6
    	MOV	4096(X5), X6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/loong64enc3.s

    	MOVB	65536(R5), R4			// 1e020014de971000c4030028
    	MOVBU	65536(R5), R4			// 1e020014de971000c403002a
    	MOVW	4096(R5), R4			// 3e000014de971000c4038028
    	MOVWU	4096(R5), R4			// 3e000014de971000c403802a
    	MOVV	4096(R5), R4			// 3e000014de971000c403c028
    	MOVB	4096(R5), R4			// 3e000014de971000c4030028
    	MOVBU	4096(R5), R4			// 3e000014de971000c403002a
    	MOVW	y+65540(FP), F4			// 1e020014de8f1000c433002b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 23:57:43 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. test/uintptrescapes.dir/a.go

    //go:uintptrescapes
    func F1(a uintptr) {
    	var s [16]byte
    	recurse(4096, s[:])
    	*(*int)(unsafe.Pointer(a)) = 42
    }
    
    //go:uintptrescapes
    func F2(a ...uintptr) {
    	var s [16]byte
    	recurse(4096, s[:])
    	*(*int)(unsafe.Pointer(a[0])) = 42
    }
    
    type t struct{}
    
    func GetT() *t {
    	return &t{}
    }
    
    //go:uintptrescapes
    func (*t) M1(a uintptr) {
    	var s [16]byte
    	recurse(4096, s[:])
    	*(*int)(unsafe.Pointer(a)) = 42
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 20:48:41 UTC 2016
    - 879 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            1 * action.execute(_, _) >> "result"
        }
    
        def "fires progress events as content is read"() {
            setup:
            metaData.getContentLength() >> 4096
            expectReadBuildOperation(4096)
            expectResourceRead(new ByteArrayInputStream(new byte[4096]))
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == "result"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. security/pkg/pki/testdata/multilevelpki/certs.sh

    # Root CA
    #openssl genrsa -out root-key.pem 4096
    openssl req -new -key root-key.pem -out root-cert.csr -sha256 <<EOF
    US
    California
    Sunnyvale
    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in root-cert.csr -sha256 -signkey root-key.pem -out root-cert.pem
    
    # Intermediate CA
    #openssl genrsa -out int-key.pem 4096
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4316.go

    		pT += 1
    		p()
    		if pT < len(s) && s[pT] == ')' {
    			pT += 1
    		} else {
    			return
    		}
    		p()
    	}
    }
    
    func main() {
    	countArg = makePeano(4096)
    	countPeano()
    	if countResult != 4096 {
    		println("countResult =", countResult)
    		panic("countResult != 4096")
    	}
    
    	p()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 972 bytes
    - Viewed (0)
Back to top