Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for ConfigType (0.26 sec)

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

    		}
    
    		if telFilter := buildAccessLogFilterFromTelemetry(c); telFilter != nil {
    			filters = append(filters, telFilter)
    		}
    
    		al := &accesslog.AccessLog{
    			Name:       c.AccessLog.Name,
    			ConfigType: c.AccessLog.ConfigType,
    			Filter:     buildAccessLogFilter(filters...),
    		}
    
    		als = append(als, al)
    	}
    	return als
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_lds_http.json

                }
              }
            }
          },
          "filter_chains": [
            {
              "filters": [
                {
                  "name": "envoy.http_connection_manager",
                  "ConfigType": {
                    "Config": {
                      "fields": {
                        "access_log": {
                          "Kind": {
                            "ListValue": {
                              "values": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/accesslog_test.go

    			},
    			tcp:   &tcp.TcpProxy{},
    			class: networking.ListenerClassSidecarInbound,
    			expected: &tcp.TcpProxy{
    				AccessLog: []*accesslog.AccessLog{
    					{
    						Name:       wellknown.FileAccessLog,
    						ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(defaultJSONLabelsOut)},
    					},
    				},
    			},
    		},
    		{
    			name: "log-selector-unmatched-telemetry",
    			push: env.PushContext(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    			FilterChains: []*envoy_listener.FilterChain{
    				{
    					Filters: []*envoy_listener.Filter{
    						{
    							Name: "envoy.filters.network.http_connection_manager",
    							ConfigType: &envoy_listener.Filter_TypedConfig{
    								TypedConfig: protoconv.MessageToAny(hcm),
    							},
    						},
    					},
    					TransportSocket: createTransportSocket(listenerSettings.TLSEnabled),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertNull(crawlingConfigHelper.getConfigType("F"));
            assertNull(crawlingConfigHelper.getConfigType("D"));
            assertEquals(ConfigType.WEB, crawlingConfigHelper.getConfigType("WX"));
            assertEquals(ConfigType.FILE, crawlingConfigHelper.getConfigType("FX"));
            assertEquals(ConfigType.DATA, crawlingConfigHelper.getConfigType("DX"));
        }
    
        public void test_getCrawlingConfig() {
            crawlingConfigHelper.refresh();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pkg/adsc/delta_test.go

    				Ads: &core.AggregatedConfigSource{},
    			},
    		},
    	},
    	LbPolicy: cluster.Cluster_ROUND_ROBIN,
    	TransportSocket: &core.TransportSocket{
    		Name: wellknown.TransportSocketTLS,
    		ConfigType: &core.TransportSocket_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&tls.UpstreamTlsContext{
    				CommonTlsContext: &tls.CommonTlsContext{
    					ValidationContextType: &tls.CommonTlsContext_CombinedValidationContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing_test.go

    								},
    							},
    						},
    					}),
    				},
    			}
    
    			fakeOtelHTTPAny := &tracingcfg.Tracing_Http{
    				Name:       envoyOpenTelemetry,
    				ConfigType: &tracingcfg.Tracing_Http_TypedConfig{TypedConfig: protoconv.MessageToAny(fakeOTelHTTPProviderConfig)},
    			}
    			want := fakeTracingConfig(fakeOtelHTTPAny, 100, 256, append(defaultTracingTags(), fakeEnvTag))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter.go

    ) *listener.Filter {
    	accessLogBuilder.setTCPAccessLog(push, node, config, class, svc)
    
    	tcpFilter := &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(config)},
    	}
    	return tcpFilter
    }
    
    // buildOutboundNetworkFiltersWithSingleDestination takes a single cluster name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top