Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,708 for PORT (0.04 sec)

  1. pkg/test/framework/components/echo/port.go

    // NoServicePort defines the ServicePort value for a Port that is a workload-only port.
    const NoServicePort = -1
    
    // Port exposed by an Echo Instance
    type Port struct {
    	// Name of this port
    	Name string
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance
    
    	// ServicePort number where the service can be reached. Does not necessarily
    	// map to the corresponding port numbers for the instances behind the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. src/net/port.go

    		n *= 10
    		nn := n + uint32(d)
    		if nn < n || nn > max {
    			n = max
    			break
    		}
    		n = nn
    	}
    	if !neg && n >= cutoff {
    		port = int(cutoff - 1)
    	} else if neg && n > cutoff {
    		port = int(cutoff)
    	} else {
    		port = int(n)
    	}
    	if neg {
    		port = -port
    	}
    	return port, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  3. releasenotes/notes/ignore-port.yaml

    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. 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)
  6. releasenotes/notes/ingress-named-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 23052
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 163 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/destinationrule-mutual-port.yaml

    # No caCertificates when mode is mutual at port level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: MUTUAL
              clientCertificate: /etc/certs/myclientcert.pem
              privateKey: /etc/certs/client_private_key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 472 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

    # If port is unnamed or port name doesn't follow <protocol>[-<suffix>], the analyzer will report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # internal waypoint, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/gateway-no-port.yaml

    # Gateway with bogus port
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 347 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-listener-port.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-listener-port
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo
        protocol: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 200 bytes
    - Viewed (0)
Back to top