Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for Fault (0.04 sec)

  1. src/runtime/arena.go

    	// We can only set user arenas to fault if we're in the _GCoff phase.
    	if gcphase == _GCoff {
    		lock(&userArenaState.lock)
    		faultList := userArenaState.fault
    		userArenaState.fault = nil
    		unlock(&userArenaState.lock)
    
    		s.setUserArenaChunkToFault()
    		for _, lc := range faultList {
    			lc.mspan.setUserArenaChunkToFault()
    		}
    
    		// Until the chunks are set to fault, keep them alive via the fault list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/nilcheck.go

    				unnecessary.clear()
    			}
    
    			// Find any pointers that this op is guaranteed to fault on if nil.
    			var ptrstore [2]*Value
    			ptrs := ptrstore[:0]
    			if opcodeTable[v.Op].faultOnNilArg0 && (faultOnLoad || v.Type.IsMemory()) {
    				// On AIX, only writing will fault.
    				ptrs = append(ptrs, v.Args[0])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_internal_test.go

    	xdsfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3"
    	cors "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cors/v3"
    	xdshttpfault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/runtime/signal_windows.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 _EXCEPTION_INT_DIVIDE_BY_ZERO:
    		panicdivide()
    	case _EXCEPTION_INT_OVERFLOW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/none_lds_http.json

                                      "fields": {
                                        "name": {
                                          "Kind": {
                                            "StringValue": "envoy.fault"
                                          }
                                        }
                                      }
                                    }
                                  }
                                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  6. 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)
  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/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)
  9. pilot/pkg/model/virtualservice.go

    	}
    	if delegate.Timeout == nil {
    		delegate.Timeout = root.Timeout
    	}
    	if delegate.Retries == nil {
    		delegate.Retries = root.Retries
    	}
    	if delegate.Fault == nil {
    		delegate.Fault = root.Fault
    	}
    	if delegate.Mirror == nil {
    		delegate.Mirror = root.Mirror
    	}
    	// nolint: staticcheck
    	if delegate.MirrorPercent == nil {
    		delegate.MirrorPercent = root.MirrorPercent
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    		Operation: istio_route.GetRouteOperation(out, virtualService.Name, listenPort),
    	}
    	if in.Fault != nil || in.CorsPolicy != nil {
    		out.TypedPerFilterConfig = make(map[string]*any.Any)
    	}
    	if in.Fault != nil {
    		out.TypedPerFilterConfig[wellknown.Fault] = protoconv.MessageToAny(istio_route.TranslateFault(in.Fault))
    	}
    	if in.CorsPolicy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top