Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 245 for Fault (0.06 sec)

  1. src/runtime/signal_netbsd_arm.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint32 { return c.regs().__gregs[_REG_R15] }
    
    func (c *sigctxt) cpsr() uint32    { return c.regs().__gregs[_REG_CPSR] }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.info._reason) }
    func (c *sigctxt) trap() uint32    { return 0 }
    func (c *sigctxt) error() uint32   { return 0 }
    func (c *sigctxt) oldmask() uint32 { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/signal_amd64.go

    func (c *sigctxt) setsigpc(x uint64) { c.set_rip(x) }
    func (c *sigctxt) sigsp() uintptr    { return uintptr(c.rsp()) }
    func (c *sigctxt) siglr() uintptr    { return 0 }
    func (c *sigctxt) fault() uintptr    { return uintptr(c.sigaddr()) }
    
    // preparePanic sets up the stack to look like a call to sigpanic.
    func (c *sigctxt) preparePanic(sig uint32, gp *g) {
    	// Work around Leopard bug that doesn't set FPE_INTDIV.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/msan_test.go

    		{src: "msan5.go"},
    		{src: "msan6.go"},
    		{src: "msan7.go"},
    		{src: "msan8.go"},
    		{src: "msan_fail.go", wantErr: true},
    		// This may not always fail specifically due to MSAN. It may sometimes
    		// fail because of a fault. However, we don't care what kind of error we
    		// get here, just that we get an error. This is an MSAN test because without
    		// MSAN it would not fail deterministically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/sigtab_linux_generic.go

    	/* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
    	/* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigThrow + _SigUnblock, "SIGSTKFLT: stack fault"},
    	/* 17 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue"},
    	/* 19 */ {0, "SIGSTOP: stop, unblockable"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    			// We could check that the arena chunk is explicitly set to fault,
    			// but the fact that we faulted on accessing it is enough to prove
    			// that it is.
    			print("accessed data from freed user arena ", hex(gp.sigcode1), "\n")
    		} else {
    			print("unexpected fault address ", hex(gp.sigcode1), "\n")
    		}
    		throw("fault")
    	case _SIGFPE:
    		switch gp.sigcode0 {
    		case _FPE_INTDIV:
    			panicdivide()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/runtime/signal_loong64.go

    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.pc()) }
    
    func (c *sigctxt) sigsp() uintptr { return uintptr(c.sp()) }
    func (c *sigctxt) siglr() uintptr { return uintptr(c.link()) }
    func (c *sigctxt) fault() uintptr { return uintptr(c.sigaddr()) }
    
    // preparePanic sets up the stack to look like a call to sigpanic.
    func (c *sigctxt) preparePanic(sig uint32, gp *g) {
    	// We arrange link, and pc to pretend the panicking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: sample-foo-cluster01
      namespace: foo
    spec:
      hosts:
      - sample.foo.svc.cluster.local
      http:
      - fault:
          delay:
            fixedDelay: 5s
            percentage:
              value: 100
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - mirror:
          host: sample.bar.svc.cluster.local
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. docs/works_with_okhttp.md

     * [CWAC-NetSecurity](https://github.com/commonsguy/cwac-netsecurity): Simplifying Secure Internet Access.
     * [Failsafe](https://failsafe.dev/okhttp/): Fault tolerance and resilience patterns.
     * [Flipper](https://fbflipper.com/): A desktop debugging platform for mobile developers.
     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/sys_linux_arm.s

    TEXT ·Cas(SB),NOSPLIT|NOFRAME,$0
    	MOVB	runtime·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armcas(SB)
    	JMP	kernelcas<>(SB)
    
    TEXT kernelcas<>(SB),NOSPLIT,$0
    	MOVW	ptr+0(FP), R2
    	// trigger potential paging fault here,
    	// because we don't know how to traceback through __kuser_cmpxchg
    	MOVW    (R2), R0
    	MOVW	old+4(FP), R0
    	MOVW	new+8(FP), R1
    	BL	cas<>(SB)
    	BCC	ret0
    	MOVW	$1, R0
    	MOVB	R0, ret+12(FP)
    	RET
    ret0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. test/nilcheck.go

    	_ = *empty1p    // ERROR "nil check"
    }
    
    func fx10k() *[10000]int
    
    var b bool
    
    func f3(x *[10000]int) {
    	// Using a huge type and huge offsets so the compiler
    	// does not expect the memory hardware to fault.
    	_ = x[9999] // ERROR "nil check"
    
    	for {
    		if x[9999] != 0 { // ERROR "nil check"
    			break
    		}
    	}
    
    	x = fx10k()
    	_ = x[9999] // ERROR "nil check"
    	if b {
    		_ = x[9999] // ERROR "nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top