Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for ConfigType (0.19 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        }
    
        public ConfigType getConfigType(final String configId) {
            if (configId == null || configId.length() < 2) {
                return null;
            }
            final String configType = configId.substring(0, 1);
            if (ConfigType.WEB.getTypePrefix().equals(configType)) {
                return ConfigType.WEB;
            }
            if (ConfigType.FILE.getTypePrefix().equals(configType)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/filters/filters.go

    	Cors = &hcm.HttpFilter{
    		Name: wellknown.CORS,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&cors.Cors{}),
    		},
    	}
    	Fault = &hcm.HttpFilter{
    		Name: wellknown.Fault,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&fault.HTTPFault{}),
    		},
    	}
    	GrpcWeb = &hcm.HttpFilter{
    		Name: wellknown.GRPCWeb,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    			TransportSocketMatches: []*cluster.Cluster_TransportSocketMatch{
    				{
    					Name: "tlsMode-istio",
    					TransportSocket: &core.TransportSocket{
    						Name: "envoy.transport_sockets.tls",
    						ConfigType: &core.TransportSocket_TypedConfig{
    							TypedConfig: protoconv.MessageToAny(&tls.UpstreamTlsContext{
    								CommonTlsContext: &tls.CommonTlsContext{
    									TlsParams: &tls.TlsParameters{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. 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)
  5. istioctl/cmd/root.go

    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    	// Allow users to override some variables through $HOME/.istioctl/config.yaml
    	// and environment variables.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top