Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for Fault (1.28 sec)

  1. src/runtime/signal_plan9.go

    	{_SigThrow, "sys: trap: debug exception"},
    	{_SigThrow, "sys: trap: invalid opcode"},
    
    	// We can recover from some memory errors in runtime·sigpanic.
    	{_SigPanic, "sys: trap: fault read"},  // SIGRFAULT
    	{_SigPanic, "sys: trap: fault write"}, // SIGWFAULT
    
    	// We can also recover from math errors.
    	{_SigPanic, "sys: trap: divide error"}, // SIGINTDIV
    	{_SigPanic, "sys: fp:"},                // SIGFLOAT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue10486.go

    // run
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10486.
    // Check stack walk during div by zero fault,
    // especially on software divide systems.
    
    package main
    
    import "runtime"
    
    var A, B int
    
    func divZero() int {
    	defer func() {
    		if p := recover(); p != nil {
    			var pcs [512]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 518 bytes
    - Viewed (0)
  3. test/fixedbugs/bug008.go

    	i5 := 5;
    
    	switch {  // compiler crash fixable with 'switch true'
    	case i5 < 5: dummy := 0; _ = dummy;
    	case i5 == 5: dummy := 0; _ = dummy;
    	case i5 > 5: dummy := 0; _ = dummy;
    	}
    }
    /*
    Segmentation fault
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 405 bytes
    - Viewed (0)
  4. pilot/pkg/xds/filters/filters.go

    		Name: wellknown.CORS,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&cors.Cors{}),
    		},
    	}
    	Fault = &hcm.HttpFilter{
    		Name: wellknown.Fault,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&fault.HTTPFault{}),
    		},
    	}
    	GrpcWeb = &hcm.HttpFilter{
    		Name: wellknown.GRPCWeb,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        fault:
          abort:
            percentage:
              value: 100.0
            httpStatus: 500
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 423 bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                }
                              },
                              {
                                "name": "envoy.filters.http.fault",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.fault.v3.HTTPFault"
                                }
                              },
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  7. test/fixedbugs/bug313.go

    // license that can be found in the LICENSE file.
    
    // Issue 1284
    
    package bug313
    
    /*
    6g bug313.dir/[ab].go
    
    Before:
    bug313.dir/b.go:7: internal compiler error: fault
    
    Now:
    bug313.dir/a.go:10: undefined: fmt.DoesNotExist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 350 bytes
    - Viewed (0)
  8. test/fixedbugs/bug052.go

    package main
    
    func main() {
    	c := 10;
    	d := 7;
    	var x [10]int;
    	i := 0;
    	/* this works:
    	q := c/d;
    	x[i] = q;
    	*/
    	// this doesn't:
    	x[i] = c/d;	// BUG segmentation fault
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 341 bytes
    - Viewed (0)
  9. src/runtime/signal_arm.go

    	print("ip      ", hex(c.ip()), "\n")
    	print("sp      ", hex(c.sp()), "\n")
    	print("lr      ", hex(c.lr()), "\n")
    	print("pc      ", hex(c.pc()), "\n")
    	print("cpsr    ", hex(c.cpsr()), "\n")
    	print("fault   ", hex(c.fault()), "\n")
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.pc()) }
    
    func (c *sigctxt) sigsp() uintptr { return uintptr(c.sp()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        fault:
          delay:
            percentage:
              value: 100.0
            fixedDelay: 7s
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 422 bytes
    - Viewed (0)
Back to top