Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for ConfigType (0.16 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter_test.go

    		})
    	}
    }
    
    func TestRecurseMissingTypedConfig(t *testing.T) {
    	good := &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: nil},
    	}
    	ecds := &hcm.HttpFilter{
    		Name:       "something",
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{},
    	}
    	bad := &listener.Filter{
    		Name: wellknown.TCPProxy,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    						Specifier: &core.DataSource_InlineBytes{
    							InlineBytes: s.CertificateChain,
    						},
    					},
    					PrivateKeyProvider: &tls.PrivateKeyProvider{
    						ProviderName: "cryptomb",
    						ConfigType: &tls.PrivateKeyProvider_TypedConfig{
    							TypedConfig: msg,
    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			}
    		case *mesh.PrivateKeyProvider_Qat:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    			StartChildSpan:       false,
    			SuppressDebugHeaders: ph.SuppressDebugHeaders,
    		}),
    	}
    	return []*listener.Filter{
    		{
    			Name:       wellknown.HTTPConnectionManager,
    			ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(h)},
    		},
    	}
    }
    
    func (lb *ListenerBuilder) buildConnectTerminateListener(routes []*route.Route) *listener.Listener {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.ds.DataStoreFactory;
    import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigType;
    import org.codelibs.fess.es.config.exentity.DataConfig;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/core/listener_builder.go

    	accessLogBuilder.setTCPAccessLog(push, node, tcpProxy, istionetworking.ListenerClassSidecarOutbound, nil)
    	filterStack = append(filterStack, &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(tcpProxy)},
    	})
    
    	return filterStack
    }
    
    func parseDuration(s string) *durationpb.Duration {
    	if s == "" {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/lds_test.go

    			t.Fatalf("Expected HTTP connection, found %v", chain.Filters[0].Name)
    		}
    		httpCfg, ok := filter.ConfigType.(*listener.Filter_TypedConfig)
    		if !ok {
    			t.Fatalf("Expected Http Connection Manager Config Filter_TypedConfig, found %T", filter.ConfigType)
    		}
    		connectionManagerCfg := hcm.HttpConnectionManager{}
    		err := httpCfg.TypedConfig.UnmarshalTo(&connectionManagerCfg)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    						Specifier: &core.DataSource_InlineBytes{
    							InlineBytes: certInfo.Cert,
    						},
    					},
    					PrivateKeyProvider: &envoytls.PrivateKeyProvider{
    						ProviderName: "cryptomb",
    						ConfigType: &envoytls.PrivateKeyProvider_TypedConfig{
    							TypedConfig: msg,
    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			},
    		})
    	case *mesh.PrivateKeyProvider_Qat:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    				f := &hcm.HttpFilter{
    					Name:       xds.StatsFilterName,
    					ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: waypointStatsConfig},
    				}
    				res = append(res, f)
    			} else {
    				if statsCfg := generateStatsConfig(class, cfg); statsCfg != nil {
    					f := &hcm.HttpFilter{
    						Name:       xds.StatsFilterName,
    						ConfigType: &hcm.HttpFilter_TypedConfig{TypedConfig: statsCfg},
    					}
    					res = append(res, f)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_tls.go

    	},
    }
    
    var internalUpstreamSocket = &core.TransportSocket{
    	Name: "envoy.transport_sockets.internal_upstream",
    	ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(&internalupstream.InternalUpstreamTransport{
    		PassthroughMetadata: []*internalupstream.InternalUpstreamTransport_MetadataValueSource{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top