Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ConfigType (0.25 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/xds/testdata/none_rds.json

                        },
                        "retry_host_predicate": [
                          {
                            "name": "envoy.retry_host_predicates.previous_hosts",
                            "ConfigType": null
                          }
                        ],
                        "host_selection_retry_max_attempts": 3,
                        "retriable_status_codes": [
                          503
                        ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  4. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    			FilterChains: []*envoy_listener.FilterChain{
    				{
    					Filters: []*envoy_listener.Filter{
    						{
    							Name: "envoy.filters.network.http_connection_manager",
    							ConfigType: &envoy_listener.Filter_TypedConfig{
    								TypedConfig: protoconv.MessageToAny(hcm),
    							},
    						},
    					},
    					TransportSocket: createTransportSocket(listenerSettings.TLSEnabled),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. istioctl/pkg/authz/listener.go

    	rbacTCP  []*rbactcp.RBAC
    }
    
    type parsedListener struct {
    	filterChains []*filterChain
    }
    
    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: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top