Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 841 for PORT (0.07 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to your compiler flags.
    # define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX \
        || GTEST_OS_QNX)
    #endif  // GTEST_HAS_PTHREAD
    
    #if GTEST_HAS_PTHREAD
    // gtest-port.h guarantees to #include <pthread.h> when GTEST_HAS_PTHREAD is
    // true.
    # include <pthread.h>  // NOLINT
    
    // For timespec and nanosleep, used below.
    # include <time.h>  // NOLINT
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. releasenotes/notes/sidecar-port-merge.yaml

      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 288 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/deployment.yaml

              - --xds-grpc-server={{ $p.Port }}
    {{- else if eq .Protocol "GRPC" }}
              - --grpc={{ $p.Port }}
    {{- else if eq .Protocol "TCP" }}
              - --tcp={{ $p.Port }}
    {{- else }}
              - --port={{ $p.Port }}
    {{- end }}
    {{- if $p.TLS }}
              - --tls={{ $p.Port }}
    {{- end }}
    {{- if $p.ServerFirst }}
              - --server-first={{ $p.Port }}
    {{- end }}
    {{- if $p.InstanceIP }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    								expect := expect
    								p := expect.port
    								opts := echo.CallOptions{
    									// Do not set To, otherwise fillInCallOptions() will
    									// complain with port does not match.
    									ToWorkload: to.Instances()[0],
    									Port: echo.Port{
    										Protocol: p.Protocol,
    
    										// The ServicePort tells the client which port to connect to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

     - address: 1.1.1.1
     location: MESH_INTERNAL
     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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/allocator.go

    		klog.Warningf("port is not in the range when release it. port: %v", port)
    		return nil
    	}
    
    	err := r.alloc.Release(offset)
    	if err == nil {
    		// update metrics
    		r.metrics.setAllocated(r.Used())
    		r.metrics.setAvailable(r.Free())
    	}
    	return err
    }
    
    // Has returns true if the provided port is already allocated and a call
    // to Allocate(port) would fail with ErrAllocated.
    func (r *PortAllocator) Has(port int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/storage/storage_test.go

    			port:   basePortRange + sizePortRange,
    			errMsg: fmt.Sprintf("provided port is not in the valid range. The range of valid ports is %d-%d", basePortRange, basePortRange+sizePortRange-1),
    		},
    		{
    			name:   "Allocate invalid port",
    			port:   -2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/plugin/authn/authentication.go

    	// Then generate the per-port passthrough filter chains.
    	for port := range b.applier.PortLevelSetting() {
    		// Skip the per-port passthrough filterchain if the port is already handled by InboundMTLSConfiguration().
    		if !needPerPortPassthroughFilterChain(port, b.proxy) {
    			continue
    		}
    
    		authnLog.Debugf("InboundMTLSConfiguration: build extra pass through filter chain for %v:%d", b.proxy.ID, port)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top