Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for func4 (0.12 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    const (
    	h2KeepaliveInterval = 10 * time.Second
    	h2KeepaliveTimeout  = 20 * time.Second
    )
    
    func (lb *ListenerBuilder) serviceForHostname(name host.Name) *model.Service {
    	return lb.push.ServiceForHostname(lb.node, name)
    }
    
    func (lb *ListenerBuilder) buildWaypointInbound() []*listener.Listener {
    	listeners := []*listener.Listener{}
    	// We create 3 listeners:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    		cfg config.Config
    	}
    }
    
    func (ts *telemetryStore) add(cfg config.Config) {
    	ts.data = append(ts.data, struct {
    		typ config.GroupVersionKind
    		ns  string
    		cfg config.Config
    	}{
    		typ: cfg.GroupVersionKind,
    		ns:  cfg.Namespace,
    		cfg: cfg,
    	})
    }
    
    func (ts *telemetryStore) Schemas() collection.Schemas {
    	return collection.SchemasFor()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    type PrevMergedGateway struct {
    	ContainsAutoPassthroughGateways bool
    	AutoPassthroughSNIHosts         sets.Set[string]
    }
    
    func (g *PrevMergedGateway) HasAutoPassthroughGateway() bool {
    	if g != nil {
    		return g.ContainsAutoPassthroughGateways
    	}
    	return false
    }
    
    func (g *PrevMergedGateway) GetAutoPassthroughSNIHosts() sets.Set[string] {
    	if g != nil {
    		return g.AutoPassthroughSNIHosts
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top