Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bootstrapType (0.3 sec)

  1. pilot/pkg/xds/v3/model.go

    	NameTableType              = model.NameTableType
    	HealthInfoType             = model.HealthInfoType
    	ProxyConfigType            = model.ProxyConfigType
    	DebugType                  = model.DebugType
    	BootstrapType              = model.BootstrapType
    	AddressType                = model.AddressType
    	WorkloadType               = model.WorkloadType
    	WorkloadAuthorizationType  = model.WorkloadAuthorizationType
    
    	// nolint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    	// goes through without losing its interfaceness.
    	tBool      = bootstrapType("bool", (*bool)(nil))
    	tInt       = bootstrapType("int", (*int)(nil))
    	tUint      = bootstrapType("uint", (*uint)(nil))
    	tFloat     = bootstrapType("float", (*float64)(nil))
    	tBytes     = bootstrapType("bytes", (*[]byte)(nil))
    	tString    = bootstrapType("string", (*string)(nil))
    	tComplex   = bootstrapType("complex", (*complex128)(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. pkg/model/xds.go

    	ProxyConfigType = APITypePrefix + "istio.mesh.v1alpha1.ProxyConfig"
    	// DebugType requests debug info from istio, a secured implementation for istio debug interface.
    	DebugType                 = "istio.io/debug"
    	BootstrapType             = APITypePrefix + "envoy.config.bootstrap.v3.Bootstrap"
    	AddressType               = APITypePrefix + "istio.workload.Address"
    	WorkloadType              = APITypePrefix + "istio.workload.Workload"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    metadata:
      name: plaintext
      namespace: default
    spec:
      host: app.com
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `})
    	if bootstrapGenerator != nil {
    		ds.Discovery.Generators[v3.BootstrapType] = bootstrapGenerator
    	}
    	ds.Discovery.Authenticators = []security.Authenticator{auth}
    	grpcServer := grpc.NewServer(opt)
    	reflection.Register(grpcServer)
    	ds.Discovery.Register(grpcServer)
    	go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top