Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ConfigType (0.18 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    					Filters: []*listener.Filter{
    						{
    							Name: wellknown.HTTPConnectionManager,
    							ConfigType: &listener.Filter_TypedConfig{
    								TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    									HttpFilters: []*hcm.HttpFilter{
    										{
    											Name:       wellknown.Fault,
    											ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: faultFilterInAny},
    										},
    										{Name: "http-filter2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    				Name:       wellknown.FileAccessLog,
    				ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(stdout)},
    			},
    		},
    		{
    			name: "stderr",
    			meshConfig: &meshconfig.MeshConfig{
    				AccessLogEncoding: meshconfig.MeshConfig_TEXT,
    			},
    			fp: stderr,
    			expected: &accesslog.AccessLog{
    				Name:       wellknown.FileAccessLog,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier_test.go

    							{
    								Issuer:  "https://secret.foo.com",
    								JwksUri: jwksURI,
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    				Name: "envoy.filters.http.jwt_authn",
    				ConfigType: &hcm.HttpFilter_TypedConfig{
    					TypedConfig: protoconv.MessageToAny(
    						&envoy_jwt.JwtAuthentication{
    							Rules: []*envoy_jwt.RequirementRule{
    								{
    									Match: &route.RouteMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/listener_test.go

    			oldestService = s
    		}
    	}
    	return oldestService
    }
    
    func getFilterConfig(filter *listener.Filter, out proto.Message) error {
    	switch c := filter.ConfigType.(type) {
    	case *listener.Filter_TypedConfig:
    		if err := c.TypedConfig.UnmarshalTo(out); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top