Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,612 for xdsfault (0.23 sec)

  1. pilot/pkg/networking/core/route/route_internal_test.go

    						Value: float64(50),
    					},
    				},
    			},
    			want: &xdshttpfault.HTTPFault{
    				Delay: &xdsfault.FaultDelay{
    					Percentage: &xdstype.FractionalPercent{
    						Numerator:   uint32(50 * 10000),
    						Denominator: xdstype.FractionalPercent_MILLION,
    					},
    					FaultDelaySecifier: &xdsfault.FaultDelay_FixedDelay{
    						FixedDelay: &durationpb.Duration{
    							Seconds: int64(3),
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	HeaderScheme    = ":scheme"
    )
    
    // DefaultRouteName is the name assigned to a route generated by default in absence of a virtual service.
    const DefaultRouteName = "default"
    
    var Notimeout = durationpb.New(0)
    
    // DefaultMaxDirectResponseBodySizeBytes is 1mb, the same limit the control plane validates via webhook. Set this to increase from envoy default of 4k
    var DefaultMaxDirectResponseBodySizeBytes = wrapperspb.UInt32(1024 * 1024)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/default.go

    package cache
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"internal/goexperiment"
    )
    
    // Default returns the default cache to use.
    // It never returns nil.
    func Default() Cache {
    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. manifests/profiles/default.yaml

      tag: latest
    
      # Turn on default components: base, pilot, and ingress gateway
      components:
        base:
          enabled: true
        pilot:
          enabled: true
        # Istio Gateway feature
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        egressGateways:
        - name: istio-egressgateway
          enabled: false
    
      # Most default values come from the helm chart's values.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input/default.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 10 04:08:45 UTC 2020
    - 84 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj

      <ItemGroup Label="ProjectConfigurations"/>
      <PropertyGroup Label="Globals">
        <Keyword>MakeFileProj</Keyword>
      </PropertyGroup>
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
      <PropertyGroup Label="UserMacros" />
      <ItemGroup Label="Sources">
      </ItemGroup>
      <ItemGroup Label="Headers">
      </ItemGroup>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 662 bytes
    - Viewed (0)
  7. istioctl/pkg/waypoint/testdata/waypoint/default-gateway

    NAME         REVISION     PROGRAMMED
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 68 bytes
    - Viewed (0)
  8. cluster/addons/storage-class/local/default.yaml

    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      namespace: kube-system
      name: standard
      annotations:
        storageclass.kubernetes.io/is-default-class: "true"
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 06 09:27:25 UTC 2018
    - 269 bytes
    - Viewed (0)
  9. manifests/charts/base/templates/default.yaml

    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/default.yaml

    {{- if .Values.global.configCluster }}
    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top