Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 245 for Fault (0.04 sec)

  1. src/embed/internal/embedtest/embedx_test.go

    	}
    
    	// Could check &glass[0] == &glass2[0] but also want to make sure write does not fault
    	// (data must not be in read-only memory).
    	old := glass[0]
    	glass[0]++
    	if glass2[0] != glass[0] {
    		t.Fatalf("glass and glass2 do not share storage")
    	}
    	glass[0] = old
    
    	// Could check &bbig[0] == &bbig2[0] but also want to make sure write does not fault
    	// (data must not be in read-only memory).
    	old = bbig[0]
    	bbig[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 15 20:37:17 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/bug031.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 802 bytes
    - Viewed (0)
  4. pkg/wellknown/wellknown.go

    const (
    	// Buffer HTTP filter
    	Buffer = "envoy.filters.http.buffer"
    	// CORS HTTP filter
    	CORS = "envoy.filters.http.cors"
    	// Dynamo HTTP filter
    	Dynamo = "envoy.filters.http.dynamo"
    	// Fault HTTP filter
    	Fault = "envoy.filters.http.fault"
    	// GRPCHTTP1Bridge HTTP filter
    	GRPCHTTP1Bridge = "envoy.filters.http.grpc_http1_bridge"
    	// GRPCJSONTranscoder HTTP filter
    	GRPCJSONTranscoder = "envoy.filters.http.grpc_json_transcoder"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. pkg/config/validation/virtualservice.go

    	if http.Redirect != nil {
    		if len(http.Route) > 0 {
    			errs = appendErrors(errs, errors.New("HTTP route cannot contain both route and redirect"))
    		}
    
    		if http.Fault != nil {
    			errs = appendErrors(errs, errors.New("HTTP route cannot contain both fault and redirect"))
    		}
    
    		if http.Rewrite != nil {
    			errs = appendErrors(errs, errors.New("HTTP route rule cannot contain both rewrite and redirect"))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. pkg/config/xds/deprecated.go

    		"envoy.filters.http.csrf":             "envoy.csrf",
    		wellknown.Dynamo:                      "envoy.http_dynamo_filter",
    		wellknown.HTTPExternalAuthorization:   "envoy.ext_authz",
    		wellknown.Fault:                       "envoy.fault",
    		wellknown.GRPCHTTP1Bridge:             "envoy.grpc_http1_bridge",
    		wellknown.GRPCJSONTranscoder:          "envoy.grpc_json_transcoder",
    		wellknown.GRPCWeb:                     "envoy.grpc_web",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/race/race_linux_test.go

    	atomic.AddUint64(a, 1)
    	if *a != 2 {
    		t.Fatalf("bad atomic value: %v, want 2", *a)
    	}
    }
    
    func TestAtomicPageBoundary(t *testing.T) {
    	// Test that atomic access near (but not cross) a page boundary
    	// doesn't fault. See issue 60825.
    
    	// Mmap two pages of memory, and make the second page inaccessible,
    	// so we have an address at the end of a page.
    	pagesize := syscall.Getpagesize()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 16 14:09:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/mem.go

    // 2) Reserved - Owned by the runtime, but accessing it would cause a fault.
    //               Does not count against the process' memory footprint.
    // 3) Prepared - Reserved, intended not to be backed by physical memory (though
    //               an OS may implement this lazily). Can transition efficiently to
    //               Ready. Accessing memory in such a region is undefined (may
    //               fault, may give back unexpected zeroes, etc.).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top