Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for Fault (0.79 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. istioctl/pkg/authz/testdata/configdump.yaml

                     ]
                    }
                   ]
                  }
                 },
                 {
                  "name": "envoy.filters.http.fault",
                  "typed_config": {
                   "@type": "type.googleapis.com/envoy.extensions.filters.http.fault.v3.HTTPFault"
                  }
                 },
                 {
                  "name": "envoy.filters.http.cors",
                  "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  9. pkg/config/analysis/analyzers/testdata/deprecation.yaml

           portNumber: 15443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage
      http:
      - fault:
          delay:
            percent: 50
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: no-selector
      namespace: default
    spec:
      ingress:
      - port:
          number: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    	testCases := []struct {
    		objectName string
    		content    string
    		partNumber string
    		fault      Fault
    		accessKey  string
    		secretKey  string
    
    		expectedAPIError APIErrorCode
    	}{
    		// Success case.
    		0: {
    			objectName: testObject,
    			content:    "hello",
    			partNumber: "1",
    			fault:      None,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top