Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Fault (0.09 sec)

  1. 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)
  2. 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)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.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: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	out.Decorator = &route.Decorator{
    		Operation: GetRouteOperation(out, virtualService.Name, listenPort),
    	}
    	if in.Fault != nil || in.CorsPolicy != nil {
    		out.TypedPerFilterConfig = make(map[string]*anypb.Any)
    	}
    	if in.Fault != nil {
    		out.TypedPerFilterConfig[wellknown.Fault] = protoconv.MessageToAny(TranslateFault(in.Fault))
    	}
    	if in.CorsPolicy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump.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: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        // Once the journal has a failure, subsequent writes aren't permitted.
        filesystem.setFaultyWrite(journalFile, false)
        assertThat(cache.edit("d")).isNull()
    
        // Confirm that the fault didn't corrupt entries stored before the fault was introduced.
        cache.close()
        cache =
          DiskLruCache(filesystem, cacheDir, appVersion, 2, Int.MAX_VALUE.toLong(), taskRunner).also {
            toClose.add(it)
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    			}
    		}
    	}
    
    	if match {
    		reqMatchFacts := []string{}
    
    		if route.Fault != nil {
    			reqMatchFacts = append(reqMatchFacts, fmt.Sprintf("Fault injection %s", route.Fault.String()))
    		}
    
    		// TODO Consider adding Headers, SourceLabels
    
    		for _, trafficMatch := range route.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    			"extenstions.istio.io/wasmplugin/istio-system.wasm-authz",
    			wellknown.HTTPRoleBasedAccessControl,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-stats",
    			wellknown.HTTPGRPCStats,
    			xdsfilters.Fault.Name,
    			xdsfilters.Cors.Name,
    			xds.StatsFilterName,
    			wellknown.Router,
    		}
    		httpNetworkFilters := []string{
    			xdsfilters.MxFilterName,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-network-authn",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    //
    // An additional factor of retainExtraPercent is added as a buffer to help ensure
    // that there's more unscavenged memory to allocate out of, since each allocation
    // out of scavenged memory incurs a potentially expensive page fault.
    //
    // If a memory limit is set, then we wish to pick a scavenge goal that maintains
    // that memory limit. For that, we look at total memory that has been committed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    		if work.userForced {
    			print(" (forced)")
    		}
    		print("\n")
    		printunlock()
    	}
    
    	// Set any arena chunks that were deferred to fault.
    	lock(&userArenaState.lock)
    	faultList := userArenaState.fault
    	userArenaState.fault = nil
    	unlock(&userArenaState.lock)
    	for _, lc := range faultList {
    		lc.mspan.setUserArenaChunkToFault()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top