Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for French (0.12 sec)

  1. pilot/pkg/networking/networking.go

    		protocol.Mongo, protocol.Redis, protocol.MySQL:
    		return ListenerProtocolTCP
    	case protocol.UDP:
    		return ListenerProtocolUnknown
    	case protocol.Unsupported:
    		return ListenerProtocolAuto
    	default:
    		// Should not reach here.
    		return ListenerProtocolAuto
    	}
    }
    
    type TransportProtocol uint8
    
    const (
    	// TransportProtocolTCP is a TCP listener
    	TransportProtocolTCP = iota
    	// TransportProtocolQUIC is a QUIC listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	var req *model.PushRequest
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    	push := func(req *model.PushRequest, debouncedEvents int, startDebounce time.Time) {
    		pushFn(req)
    		updateSent.Add(int64(debouncedEvents))
    		debounceTime.Record(time.Since(startDebounce).Seconds())
    		freeCh <- struct{}{}
    	}
    
    	pushWorker := func() {
    		eventDelay := time.Since(startDebounce)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/test/framework/integration/framework_test.go

    		Build().
    		Run(t)
    }
    
    func newLevels() levels {
    	return levels{
    		{
    			name: "root",
    		},
    	}
    }
    
    type level struct {
    	name string
    
    	// branchFactor indicates how the parent should branch for this level
    	// (i.e. how many child tests should be created per parent test in the previous level).
    	branchFactor int
    
    	// runParallel if true, all tests in this level will be run in parallel.
    	runParallel bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/mirror_test.go

    //
    // Since we don't want to rely on actual external websites, we simulate that by using a Sidecar to limit connectivity
    // from "a" so that it cannot reach "external" directly, and we use a ServiceEntry to define our "external" website, which
    // is static and points to the service "external" ip.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. tests/integration/security/util/reachability/context.go

    	// Indicates whether the test should expect a successful response.
    	ExpectSuccess func(from echo.Instance, opts echo.CallOptions) bool
    
    	// Allows filtering the destinations we expect to reach (optional).
    	ExpectDestinations func(from echo.Instance, to echo.Target) echo.Instances
    
    	// Indicates whether the test should expect a MTLS response.
    	ExpectMTLS func(from echo.Instance, opts echo.CallOptions) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  6. pkg/cache/bench.baseline

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    								"IngressHttpPort": ports[i],
    							})).
    							Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    								// TODO validate L7 processing/some headers indicating we reach the svc we wanted
    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    {{- if .Values.global.remotePilotAddress }} apiVersion: v1 kind: Service metadata: {{- if .Values.pilot.enabled }} # when local istiod is enabled, we can't use istiod service name to reach the remote control plane name: istiod-remote {{- else }} # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane name: istiod {{- end }} namespace: {{ .Release.Namespace }} spec: ports: - port: 15012 name: tcp-istiod protocol: TCP - port: 443 targetPort: 15017 name: tcp-webhook...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. pkg/util/concurrent/debouncer.go

    	// Keeps track of the push requests. If updates are debounce they will be merged.
    	combinedEvents := sets.New[T]()
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    	push := func(events sets.Set[T], debouncedEvents int, startDebounce time.Time) {
    		pushFn(events)
    		freeCh <- struct{}{}
    	}
    
    	pushWorker := func() {
    		eventDelay := time.Since(startDebounce)
    		quietTime := time.Since(lastConfigUpdateTime)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top