Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for 8192 (0.03 sec)

  1. test/fixedbugs/issue8132.go

    // license that can be found in the LICENSE file.
    
    // issue 8132. stack walk handling of panic stack was confused
    // about what was legal.
    
    package main
    
    import "runtime"
    
    var p *int
    
    func main() {
    	func() {
    		defer func() {
    			runtime.GC()
    			recover()
    		}()
    		var x [8192]byte
    		func(x [8192]byte) {
    			defer func() {
    				if err := recover(); err != nil {
    					println(*p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 534 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	ADDW	R1, R2                // 1a21
    	ADDW	R1, R2, R3            // b9f81032
    	ADDW	$8192, R1             // a71a2000
    	ADDW	$8192, R1, R2         // ec21200000d8
    	ADDE	R1, R2                // b9880021
    	SUB	R3, R4                // b9090043
    	SUB	R3, R4, R5            // b9e93054
    	SUB	$8192, R3             // a73be000
    	SUB	$8192, R3, R4         // ec43e00000d9
    	SUBC	R1, R2                // b90b0021
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. pkg/kubelet/sysctl/util_test.go

    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    			Name:  "net/ipv4/ip_local_port_range",
    			Value: "1024 65535",
    		},
    	}
    	exceptSysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/deadlock.go

    			runtime.LockOSThread()
    			c <- 0
    			select {}
    		}()
    		<-c
    	}
    }
    
    func RecursivePanic() {
    	func() {
    		defer func() {
    			fmt.Println(recover())
    		}()
    		var x [8192]byte
    		func(x [8192]byte) {
    			defer func() {
    				if err := recover(); err != nil {
    					panic("wrap: " + err.(string))
    				}
    			}()
    			panic("bad")
    		}(x)
    	}()
    	panic("again")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 20:44:24 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // callsite: returns2.go:42:18|0 flagstr "" flagval 0 score -51 mask 8200 maskstr "passConstToIfAdj|returnFeedsInlinableFuncToIndCallAdj"
    // callsite: returns2.go:44:20|1 flagstr "" flagval 0 score -23 mask 8192 maskstr "returnFeedsInlinableFuncToIndCallAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_returned_inlinable_func_feeds_indirect_call(q int) {
    	f := returnsFunc(10)
    	f(q)
    	f2 := returnsFunc2()
    	f2(q)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go

    	hwcap_ZARCH  = 2
    	hwcap_STFLE  = 4
    	hwcap_MSA    = 8
    	hwcap_LDISP  = 16
    	hwcap_EIMM   = 32
    	hwcap_DFP    = 64
    	hwcap_ETF3EH = 256
    	hwcap_VX     = 2048
    	hwcap_VXE    = 8192
    )
    
    func initS390Xbase() {
    	// test HWCAP bit vector
    	has := func(featureMask uint) bool {
    		return hwCap&featureMask == featureMask
    	}
    
    	// mandatory
    	S390X.HasZARCH = has(hwcap_ZARCH)
    
    	// optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 890 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    //
    // The returned memory should be freed using a single call to LocalFree.
    //
    // Note that although the return type of CommandLineToArgv indicates 8192
    // entries of up to 8192 characters each, the actual count of parsed arguments
    // may exceed 8192, and the documentation for CommandLineToArgvW does not mention
    // any bound on the lengths of the individual argument strings.
    // (See https://go.dev/issue/63236.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer_test.go

    			nCores:        8,
    			allocRate:     constant(33.0),
    			scanRate:      constant(1024.0),
    			growthRate:    constant(2.0).sum(ramp(-1.0, 12)),
    			scannableFrac: constant(1.0),
    			stackBytes:    constant(8192),
    			length:        50,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n >= 25 {
    					// At this alloc/scan rate, the pacer should be extremely close to the goal utilization.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. src/runtime/sys_wasm.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type m0Stack struct {
    	_ [8192 * sys.StackGuardMultiplier]byte
    }
    
    var wasmStack m0Stack
    
    func wasmDiv()
    
    func wasmTruncS()
    func wasmTruncU()
    
    //go:wasmimport gojs runtime.wasmExit
    func wasmExit(code int32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 758 bytes
    - Viewed (0)
  10. misc/wasm/go_js_wasm_exec

    	[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
    done
    DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    
    # Increase the V8 stack size from the default of 984K
    # to 8192K to ensure all tests can pass without hitting
    # stack size limits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:35:28 UTC 2023
    - 603 bytes
    - Viewed (0)
Back to top