Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for ConfigType (0.24 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        @Override
        public String getIndexingTarget(final String input) {
            // always return true
            return Constants.TRUE;
        }
    
        @Override
        public String getConfigId() {
            return ConfigType.DATA.getConfigId(getId());
        }
    
        public Map<String, String> getHandlerParameterMap() {
            if (handlerParameterMap == null) {
                handlerParameterMap = ParameterUtil.parse(getHandlerParameter());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    		Name:       wellknown.TransportSocketTLS,
    		ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsContext)},
    	}
    }
    
    func buildDownstreamQUICTransportSocket(tlsContext *auth.DownstreamTlsContext) *core.TransportSocket {
    	if tlsContext == nil {
    		return nil
    	}
    	return &core.TransportSocket{
    		Name: wellknown.TransportSocketQuic,
    		ConfigType: &core.TransportSocket_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing.go

    	cfg, err := anyFn()
    	if err != nil {
    		return config, fmt.Errorf("could not configure tracing provider %q: %v", provider, err)
    	}
    
    	config.Provider = &tracingcfg.Tracing_Http{
    		Name:       provider,
    		ConfigType: &tracingcfg.Tracing_Http_TypedConfig{TypedConfig: cfg},
    	}
    
    	if maxTagLen != 0 {
    		config.MaxPathTagLength = &wrapperspb.UInt32Value{Value: maxTagLen}
    	}
    	return config, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final String[] values = configName.split("/");
                if (values.length == 2) {
                    final String configIndex = values[0];
                    final String configType = values[1];
    
                    final boolean isFessIndex = "fess".equals(configIndex);
                    final String indexName;
                    if (isFessIndex) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    	filterConfig := MaybeBuildStatefulSessionFilterConfig(svc)
    	if filterConfig == nil {
    		return nil
    	}
    
    	return &hcm.HttpFilter{
    		Name: StatefulSessionFilter,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(filterConfig),
    		},
    	}
    }
    
    func MaybeBuildStatefulSessionFilterConfig(svc *model.Service) *statefulsession.StatefulSession {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    			}
    			opt.httpOpts.port = opts.port
    			httpConnectionManagers[i] = builder.buildHTTPConnectionManager(opt.httpOpts)
    			filter := &listener.Filter{
    				Name:       wellknown.HTTPConnectionManager,
    				ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(httpConnectionManagers[i])},
    			}
    			filterChain.Filters = append(filterChain.Filters, filter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    			oldestService = s
    		}
    	}
    	return oldestService
    }
    
    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: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top