Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 245 for Fault (0.04 sec)

  1. 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)
  2. test/fixedbugs/issue8336.go

    package main
    
    type X struct {
    	c chan int
    }
    
    func main() {
    	defer func() {
    		recover()
    	}()
    	var x *X
    	select {
    	case <-x.c: // should fault and panic before foo is called
    	case <-foo():
    	}
    }
    
    func foo() chan int {
    	println("BUG: foo must not be called")
    	return make(chan int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 515 bytes
    - Viewed (0)
  3. test/ken/array.go

    	print("good\n")
    	for i := 0; i < 100; i++ {
    		a[i] = 0
    	}
    	print("should fault\n")
    	a[100] = 0
    	print("bad\n")
    }
    
    // generate bounds error with ptr fixed
    func testfdfault() {
    	var a [80]int
    
    	print("good\n")
    	for i := 0; i < 80; i++ {
    		a[i] = 0
    	}
    	print("should fault\n")
    	x := 80
    	a[x] = 0
    	print("bad\n")
    }
    
    func main() {
    	testpdpd()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  4. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4353.go

    // run
    
    // Copyright 2012 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 4353. An optimizer bug in 8g triggers a runtime fault
    // instead of an out of bounds panic.
    
    package main
    
    var aib [100000]int
    var paib *[100000]int = &aib
    var i64 int64 = 100023
    
    func main() {
    	defer func() { recover() }()
    	_ = paib[i64]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 418 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

            if (ptype == 2 || ptype == 3) { /* Response or Fault */
                alloc_hint = buf.dec_ndr_long();
                buf.dec_ndr_short();        /* context id */
                buf.dec_ndr_short();        /* cancel count */
            }
            if (ptype == 3 || ptype == 13) {               /* Fault */
                result = buf.dec_ndr_long();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/runtime/signal_darwin_amd64.go

    			// SIGTRAP on something other than INT 3.
    			c.set_sigcode(_SI_USER)
    		}
    
    	case _SIGSEGV:
    		// x86-64 has 48-bit virtual addresses. The top 16 bits must echo bit 47.
    		// The hardware delivers a different kind of fault for a malformed address
    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							},
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_MERGE,
    				Value: buildPatchStruct(`
    {"name": "envoy.filters.http.fault",
    "typed_config": {
            "@type": "type.googleapis.com/envoy.extensions.filters.http.fault.v3.HTTPFault",
            "downstreamNodes": ["foo"]
    }
    }`),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top