Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for Fault (0.41 sec)

  1. src/runtime/signal_darwin_amd64.go

    			// SIGTRAP on something other than INT 3.
    			c.set_sigcode(_SI_USER)
    		}
    
    	case _SIGSEGV:
    		// x86-64 has 48-bit virtual addresses. The top 16 bits must echo bit 47.
    		// The hardware delivers a different kind of fault for a malformed address
    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							},
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_MERGE,
    				Value: buildPatchStruct(`
    {"name": "envoy.filters.http.fault",
    "typed_config": {
            "@type": "type.googleapis.com/envoy.extensions.filters.http.fault.v3.HTTPFault",
            "downstreamNodes": ["foo"]
    }
    }`),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. src/runtime/signal_arm64.go

    	print("r28     ", hex(c.r28()), "\n")
    	print("r29     ", hex(c.r29()), "\n")
    	print("lr      ", hex(c.lr()), "\n")
    	print("sp      ", hex(c.sp()), "\n")
    	print("pc      ", hex(c.pc()), "\n")
    	print("fault   ", hex(c.fault()), "\n")
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.pc()) }
    
    func (c *sigctxt) setsigpc(x uint64) { c.set_pc(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapability.java

     *       Could not create task ':santa-tracker:generateDebugFeatureTransitiveDeps'.
     *         org/gradle/internal/component/external/model/ImmutableCapability
     * </code>
     *
     * The task at fault is {@code com.android.build.gradle.internal.tasks.featuresplit.PackagedDependenciesWriterTask`}.
     *
     * @deprecated Use {@link DefaultImmutableCapability} instead.
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/signal_386.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.eip()) }
    
    func (c *sigctxt) sigsp() uintptr { return uintptr(c.esp()) }
    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) {
    	pc := uintptr(c.eip())
    	sp := uintptr(c.esp())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue11656.dir/issue11656.go

    			}
    			panic("cannot find main.f on stack")
    		}
    	}()
    	f(20)
    }
    
    func f(n int) {
    	if n > 0 {
    		f(n - 1)
    	}
    	var f struct {
    		x uintptr
    	}
    
    	// We want to force a seg fault, to get a crash at a PC value != 0.
    	// Not all systems make the data section non-executable.
    	ill := make([]byte, 64)
    	switch runtime.GOARCH {
    	case "386", "amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/runtime/os_plan9.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 _SIGTRAP:
    		if gp.paniconfault {
    			panicmem()
    		}
    		throw(note)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top