Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for ConfigType (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

            if (StringUtil.isNotBlank(scriptType)) {
                return scriptType;
            }
            return Constants.DEFAULT_SCRIPT;
        }
    
        public enum ConfigType {
            WEB("W"), FILE("F"), DATA("D");
    
            private final String typePrefix;
    
            ConfigType(final String typePrefix) {
                this.typePrefix = typePrefix;
            }
    
            public String getTypePrefix() {
                return typePrefix;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    		}
    		// Ensure consistent ordering as we are looping over a map
    		sort.Ints(ports)
    		filter := &listener.ListenerFilter{
    			Name:           wellknown.TLSInspector,
    			ConfigType:     xdsfilters.TLSInspector.ConfigType,
    			FilterDisabled: listenerPredicateExcludePorts(ports),
    		}
    		return filter
    	}
    	ports := make([]int, 0, len(inspectors))
    	// Collect all ports where TLS inspector is disabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/extension/wasmplugin.go

    	}
    	delete(filterMap, phase)
    	return list
    }
    
    func toEnvoyHTTPFilter(wasmPlugin *model.WasmPluginWrapper) *hcm.HttpFilter {
    	return &hcm.HttpFilter{
    		Name: wasmPlugin.ResourceName,
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{
    			ConfigDiscovery: &core.ExtensionConfigSource{
    				ConfigSource: defaultConfigSource,
    				TypeUrls: []string{
    					xds.WasmHTTPFilterType,
    					xds.RBACHTTPFilterType,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/listener.go

    	rbacTCP  []*rbactcp.RBAC
    }
    
    type parsedListener struct {
    	filterChains []*filterChain
    }
    
    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: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top