Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for ConfigType (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/model/telemetry_logging.go

    					},
    				},
    			},
    			TransportApiVersion:     core.ApiVersion_V3,
    			FilterStateObjectsToLog: filterObjects,
    		},
    	}
    
    	return &accesslog.AccessLog{
    		Name:       TCPEnvoyALSName,
    		ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(fl)},
    	}
    }
    
    func fileAccessLogFromTelemetry(prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider) *accesslog.AccessLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/lds.go

    		if rules != nil && len(rules.Policies) > 0 {
    			rbac := &rbachttp.RBAC{
    				Rules: rules,
    			}
    			fc = append(fc,
    				&hcm.HttpFilter{
    					Name:       RBACHTTPFilterNameDeny,
    					ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(rbac)},
    				})
    		}
    		arules := buildRBAC(node, push, nameSuffix, tlsContext, rbacpb.RBAC_ALLOW, policies.Allow)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    					userFilter.ConfigType.(*listener.Filter_TypedConfig).TypedConfig.TypeUrl = filter.GetTypedConfig().TypeUrl
    				}
    				if retVal, err = util.MergeAnyWithAny(filter.GetTypedConfig(), userFilter.GetTypedConfig()); err != nil {
    					retVal = filter.GetTypedConfig()
    				}
    			}
    			filter.Name = filterName
    			if retVal != nil {
    				filter.ConfigType = &listener.Filter_TypedConfig{TypedConfig: retVal}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/ep_filters_test.go

    						{Address: "40.0.0.1", Weight: 6},
    					},
    					Weight: 6,
    				},
    			},
    			wantWorkloadMetadata: []string{
    				";ns;example;;cluster4",
    			},
    		},
    	}
    
    	for configType, cases := range mtlsCases {
    		t.Run(configType, func(t *testing.T) {
    			for name, pa := range cases {
    				t.Run(name, func(t *testing.T) {
    					cfgs := pa.Configs
    					if pa.Config.Name != "" {
    						cfgs = append(cfgs, pa.Config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

    import org.codelibs.fess.app.service.RoleTypeService;
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigType;
    import org.codelibs.fess.es.config.exentity.FileConfig;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top