Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 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/util/internal_upstream.go

    	},
    }
    
    var DefaultInternalUpstreamTransportSocket = &core.TransportSocket{
    	Name: "internal_upstream",
    	ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&internalupstream.InternalUpstreamTransport{
    		TransportSocket: &core.TransportSocket{
    			Name:       "raw_buffer",
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&rawbuffer.RawBuffer{})},
    		},
    	})},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 22 21:35:52 UTC 2023
    - 2.1K 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/xds/filters/filters_test.go

    		expected *hcm.HttpFilter
    	}{
    		{
    			name: "test for build router filter",
    			ctx:  RouterFilterContext{StartChildSpan: true},
    			expected: &hcm.HttpFilter{
    				Name: wellknown.Router,
    				ConfigType: &hcm.HttpFilter_TypedConfig{
    					TypedConfig: protoconv.MessageToAny(&router.Router{
    						StartChildSpan: true,
    					}),
    				},
    			},
    		},
    		{
    			name: "both true",
    			ctx: RouterFilterContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top