Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tallMode (0.15 sec)

  1. pilot/pkg/simulation/traffic.go

    	Result Result
    }
    
    type CallMode string
    
    type CustomFilterChainValidation func(filterChain *listener.FilterChain) error
    
    var (
    	// CallModeGateway simulate no iptables
    	CallModeGateway CallMode = "gateway"
    	// CallModeOutbound simulate iptables redirect to 15001
    	CallModeOutbound CallMode = "outbound"
    	// CallModeInbound simulate iptables redirect to 15006
    	CallModeInbound CallMode = "inbound"
    )
    
    type Call struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    							port = int(i.Endpoint.EndpointPort)
    						}
    					}
    				}
    				sim.Run(simulation.Call{
    					Port:     port,
    					Protocol: simulation.HTTP,
    					Address:  "1.2.3.4",
    					CallMode: simulation.CallModeInbound,
    				}).Matches(t, simulation.Result{
    					ClusterMatched: cname,
    				})
    			}
    		})
    	}
    }
    
    type clusterServicesMetadata struct {
    	Services []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

     resolution: STATIC
     ports:
     - name: http
       number: 8000
       protocol: HTTP
    ---`
    	mkCall := func(port int, tls simulation.TLSMode) simulation.Call {
    		r := simulation.Call{Protocol: simulation.HTTP, Port: port, CallMode: simulation.CallModeInbound, TLS: tls}
    		if tls == simulation.MTLS {
    			r.Alpn = "istio"
    		}
    		return r
    	}
    	cases := []struct {
    		name   string
    		config string
    		calls  []simulation.Expect
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ned;this.tabView_=document.createElement('tr-ui-b-tab-view');this.tabView_.addEventListener('selected-tab-change',this.onSelectedSubViewChanged_.bind(this));Polymer.dom(this).appendChild(this.tabView_);},set tallMode(value){Polymer.dom(this).classList.toggle('tall-mode',value);},get tallMode(){return Polymer.dom(this).classList.contains('tall-mode');},get tabView(){return this.tabView_;},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStat...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top