Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for ConfigType (0.18 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/xds/testdata/none_lds_tcp.json

                  "PortValue": 7070
                }
              }
            }
          },
          "filter_chains": [
            {
              "filters": [
                {
                  "name": "envoy.tcp_proxy",
                  "ConfigType": {
                    "Config": {
                      "fields": {
                        "access_log": {
                          "Kind": {
                            "ListValue": {
                              "values": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/security/authz/builder/builder.go

    	}
    	return []*hcm.HttpFilter{
    		{
    			Name:       wellknown.HTTPRoleBasedAccessControl,
    			ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(rbac)},
    		},
    		{
    			Name:       wellknown.HTTPExternalAuthorization,
    			ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: protoconv.MessageToAny(extauthz.http)},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top