Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for ConfigType (0.15 sec)

  1. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if c.cluster.TransportSocket != nil {
    		// add an upstream proxy protocol wrapper for transportSocket
    		c.cluster.TransportSocket = &core.TransportSocket{
    			Name: "envoy.transport_sockets.upstream_proxy_protocol",
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&proxyprotocol.ProxyProtocolUpstreamTransport{
    				Config:          &core.ProxyProtocolConfig{Version: core.ProxyProtocolConfig_Version(proxyProtocol.Version)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier.go

    	if filterConfigProto == nil {
    		return nil
    	}
    	return &hcm.HttpFilter{
    		Name:       authn_model.EnvoyJwtFilterName,
    		ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(filterConfigProto)},
    	}
    }
    
    func defaultAuthnFilter() *authn_filter.FilterConfig {
    	return &authn_filter.FilterConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/cds.go

    		tlsCtx := buildUpstreamTLSContext(b.push.ServiceAccounts(b.hostname, b.svc.Attributes.Namespace))
    		c.TransportSocket = &core.TransportSocket{
    			Name:       transportSocketName,
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsCtx)},
    		}
    	}
    }
    
    // TransportSocket proto message has a `name` field which is expected to be set to exactly this value by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    				t.Fatalf("got diff: %v", diff)
    			}
    		})
    	}
    }
    
    func buildTestClustersWithTCPKeepalive(t testing.TB, configType ConfigType) []*cluster.Cluster {
    	// Set mesh wide defaults.
    	m := testMesh()
    	if configType != None {
    		m.TcpKeepalive = &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    			Time: &durationpb.Duration{
    				Seconds: MeshWideTCPKeepaliveSeconds,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter_test.go

    	redisFilter := buildRedisFilter("redis", "redis-cluster")
    	if redisFilter.Name != wellknown.RedisProxy {
    		t.Errorf("redis filter name is %s not %s", redisFilter.Name, wellknown.RedisProxy)
    	}
    	if config, ok := redisFilter.ConfigType.(*listener.Filter_TypedConfig); ok {
    		redisProxy := redis.RedisProxy{}
    		if err := config.TypedConfig.UnmarshalTo(&redisProxy); err != nil {
    			t.Errorf("unmarshal failed: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    	thirdOctet  int
    	fourthOctet int
    }
    
    func makeInstanceKey(i *model.ServiceInstance) instancesKey {
    	return instancesKey{i.Service.Hostname, i.Service.Attributes.Namespace}
    }
    
    type configType int
    
    const (
    	serviceEntryConfigType configType = iota
    	workloadEntryConfigType
    	podConfigType
    )
    
    // configKeyWithParent is a superset of configKey that also encodes the parent resource. For instance, if something comes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        @Override
        public String getIndexingTarget(final String input) {
            // always return true
            return Constants.TRUE;
        }
    
        @Override
        public String getConfigId() {
            return ConfigType.DATA.getConfigId(getId());
        }
    
        public Map<String, String> getHandlerParameterMap() {
            if (handlerParameterMap == null) {
                handlerParameterMap = ParameterUtil.parse(getHandlerParameter());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    		Name:       wellknown.TransportSocketTLS,
    		ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsContext)},
    	}
    }
    
    func buildDownstreamQUICTransportSocket(tlsContext *auth.DownstreamTlsContext) *core.TransportSocket {
    	if tlsContext == nil {
    		return nil
    	}
    	return &core.TransportSocket{
    		Name: wellknown.TransportSocketQuic,
    		ConfigType: &core.TransportSocket_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	cfg, err := anyFn()
    	if err != nil {
    		return config, fmt.Errorf("could not configure tracing provider %q: %v", provider, err)
    	}
    
    	config.Provider = &tracingcfg.Tracing_Http{
    		Name:       provider,
    		ConfigType: &tracingcfg.Tracing_Http_TypedConfig{TypedConfig: cfg},
    	}
    
    	if maxTagLen != 0 {
    		config.MaxPathTagLength = &wrapperspb.UInt32Value{Value: maxTagLen}
    	}
    	return config, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final String[] values = configName.split("/");
                if (values.length == 2) {
                    final String configIndex = values[0];
                    final String configType = values[1];
    
                    final boolean isFessIndex = "fess".equals(configIndex);
                    final String indexName;
                    if (isFessIndex) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top