Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for Fault (1.19 sec)

  1. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/dependency/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/matcher/action/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/set_filter_state/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    		if httpOpts.class != istionetworking.ListenerClassSidecarInbound {
    			filters = append(filters, xdsfilters.Alpn)
    		}
    	}
    
    	// TypedPerFilterConfig in route needs these filters.
    	filters = append(filters, xdsfilters.Fault, xdsfilters.Cors)
    	if !httpOpts.isWaypoint {
    		filters = append(filters, lb.push.Telemetry.HTTPFilters(lb.node, httpOpts.class, nil)...)
    	}
    	// Add EmptySessionFilter so that it can be overridden at route level per service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/lds.go

    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var supportedFilters = []*hcm.HttpFilter{
    	xdsfilters.Fault,
    	xdsfilters.BuildRouterFilter(xdsfilters.RouterFilterContext{
    		StartChildSpan:       false,
    		SuppressDebugHeaders: false, // No need to set this to true, gRPC doesn't respect it anyways
    	}),
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    			spill = &spilledBatch{gen: gen, batch: &b}
    			break
    		}
    		if gen != g.gen {
    			// N.B. Fail as fast as possible if we see this. At first it
    			// may seem prudent to be fault-tolerant and assume we have a
    			// complete generation, parsing and returning that first. However,
    			// if the batches are mixed across generations then it's likely
    			// we won't be able to parse this generation correctly at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/config/model.go

    	Name string `json:"name,omitempty"`
    
    	// Namespace defines the space for names (optional for some types),
    	// applications may choose to use namespaces for a variety of purposes
    	// (security domains, fault domains, organizational domains)
    	Namespace string `json:"namespace,omitempty"`
    
    	// Domain defines the suffix of the fully qualified name past the namespace.
    	// Domain is not a part of the unique key unlike name and namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    details are printed before `throw` using `print` or `println` and the
    messages are prefixed with "runtime:".
    
    For unrecoverable errors where user code is expected to be at fault for the
    failure (such as racing map writes), use `fatal`.
    
    For runtime error debugging, it may be useful to run with `GOTRACEBACK=system`
    or `GOTRACEBACK=crash`. The output of `panic` and `fatal` is as described by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/runtime/arena_test.go

    func testUserArenaLiveness(t *testing.T, useArenaFinalizer bool) {
    	// Disable the GC so that there's zero chance we try doing anything arena related *during*
    	// a mark phase, since otherwise a bunch of arenas could end up on the fault list.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    	// Defensively ensure that any full arena chunks leftover from previous tests have been cleared.
    	GC()
    	GC()
    
    	arena := NewUserArena()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/mranges.go

    	// structure is meant to represent the Go heap. At worst, copying this
    	// would take ~160µs assuming a conservative copying rate of 25 GiB/s (the
    	// copy will almost never trigger a page fault) for a 1 TiB heap with 4 MiB
    	// arenas which is completely discontiguous. ~160µs is still a lot, but in
    	// practice most platforms have 64 MiB arenas (which cuts this by a factor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top