Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for Fault (0.32 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_wasip1.go

    		return "bus error"
    	case SIGFPE:
    		return "floating point exception"
    	case SIGKILL:
    		return "killed"
    	case SIGUSR1:
    		return "user defined signal 1"
    	case SIGSEGV:
    		return "segmentation fault"
    	case SIGUSR2:
    		return "user defined signal 2"
    	case SIGPIPE:
    		return "broken pipe"
    	case SIGALRM:
    		return "alarm clock"
    	case SIGTERM:
    		return "terminated"
    	case SIGCHLD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		check.pass.Reportf(check.goBuildPos, "%v", err)
    		return
    	}
    	for _, line := range lines {
    		y, err := constraint.Parse(line)
    		if err != nil {
    			// Definitely should not happen, but not the user's fault.
    			// Do not report.
    			return
    		}
    		if want == nil {
    			want = y
    		} else {
    			want = &constraint.AndExpr{X: want, Y: y}
    		}
    	}
    	if want.String() != check.plusBuild.String() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_arm.s

    	MOVW	R13, R0
    	MOVW	R0, g_stack+stack_hi(g)
    	SUB	$(64*1024), R0
    	MOVW	R0, (g_stack+stack_lo)(g)
    	MOVW	R0, g_stackguard0(g)
    	MOVW	R0, g_stackguard1(g)
    
    	BL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    	BL	runtime·mstart(SB)
    
    	// Exit the thread.
    	MOVW	$0, R0
    	MOVM.IA.W (R13), [R4-R11, R15]		// pop {r4-r11, pc}
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. src/runtime/error.go

    }
    
    func (e errorAddressString) RuntimeError() {}
    
    func (e errorAddressString) Error() string {
    	return "runtime error: " + e.msg
    }
    
    // Addr returns the memory address where a fault occurred.
    // The address provided is best-effort.
    // The veracity of the result may depend on the platform.
    // Errors providing this method will only be returned as
    // a result of using [runtime/debug.SetPanicOnFault].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	return nil
    }
    
    func validateHTTPFaultInjection(fault *networking.HTTPFaultInjection) (errs error) {
    	if fault == nil {
    		return
    	}
    
    	if fault.Abort == nil && fault.Delay == nil {
    		errs = multierror.Append(errs, errors.New("HTTP fault injection must have an abort and/or a delay"))
    	}
    
    	errs = appendErrors(errs, validateHTTPFaultInjectionAbort(fault.Abort))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "fault abort",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
        fault:
          abort:
            percentage:
              value: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    // The runtime.Error that the runtime panics with may have an additional method:
    //
    //	Addr() uintptr
    //
    // If that method exists, it returns the memory address which triggered the fault.
    // The results of Addr are best-effort and the veracity of the result
    // may depend on the platform.
    // SetPanicOnFault applies only to the current goroutine.
    // It returns the previous setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top