Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ConfigType (0.27 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/networking/core/route/retry/retry.go

    	}
    
    	if in.RetryRemoteLocalities != nil && in.RetryRemoteLocalities.GetValue() {
    		out.RetryPriority = &route.RetryPolicy_RetryPriority{
    			Name: "envoy.retry_priorities.previous_priorities",
    			ConfigType: &route.RetryPolicy_RetryPriority_TypedConfig{
    				TypedConfig: defaultRetryPriorityTypedConfig,
    			},
    		}
    	}
    
    	return out
    }
    
    func parseRetryOn(retryOn string) (string, []uint32) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/retry/retry_test.go

    					UpdateFrequency: int32(2),
    				}
    				expected := &envoyroute.RetryPolicy_RetryPriority{
    					Name: "envoy.retry_priorities.previous_priorities",
    					ConfigType: &envoyroute.RetryPolicy_RetryPriority_TypedConfig{
    						TypedConfig: protoconv.MessageToAny(previousPrioritiesConfig),
    					},
    				}
    				if !reflect.DeepEqual(policy.RetryPriority, expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_waypoint.go

    						Segment: &metadata.MetadataKey_PathSegment_Key{
    							Key: "waypoint",
    						},
    					}},
    				},
    			},
    		},
    		TransportSocket: &core.TransportSocket{
    			Name: "tls",
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&tls.UpstreamTlsContext{
    				CommonTlsContext: ctx,
    			})},
    		},
    	}
    }
    
    func h2connectUpgrade() map[string]*anypb.Any {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/cds.go

    		tlsCtx := buildUpstreamTLSContext(b.push.ServiceAccounts(b.hostname, b.svc.Attributes.Namespace))
    		c.TransportSocket = &core.TransportSocket{
    			Name:       transportSocketName,
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsCtx)},
    		}
    	}
    }
    
    // TransportSocket proto message has a `name` field which is expected to be set to exactly this value by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top