Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 257 for PORT (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

        }
    
        def "build fails if debugger is not ready"() {
            setup:
            // port is assigned but not connected
            def port = jdwpClient.port
    
            when:
            withConnection { connection ->
                connection.newTestLauncher()
                    .withJvmTestClasses("example.MyTest")
                    .debugTestsOn(port)
                    .run()
            }
    
            then:
            thrown(BuildException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. samples/ratelimit/rate-limit-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: ratelimit
      labels:
        app: ratelimit
    spec:
      ports:
      - name: http-port
        port: 8080
        targetPort: 8080
        protocol: TCP
      - name: grpc-port
        port: 8081
        targetPort: 8081
        protocol: TCP
      - name: http-debug
        port: 6070
        targetPort: 6070
        protocol: TCP
      selector:
        app: ratelimit
    ---
    apiVersion: apps/v1
    kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listenertest/match.go

    	}
    	if want.Type != "" {
    		assert.Equal(t, want.Type, haveType, context(fmt.Sprintf("type should be equal (%+v)", have.FilterChainMatch)))
    	}
    	if want.Port != 0 {
    		assert.Equal(t, want.Port, have.GetFilterChainMatch().GetDestinationPort().GetValue(), context("port should be equal"))
    	}
    	haveNetwork, haveHTTP := xdstest.ExtractFilterNames(t, have)
    	if want.TotalMatch {
    		if want.NetworkFilters != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/config/security/security.go

    	}
    	info := JwksInfo{}
    	switch u.Scheme {
    	case "http":
    		info.UseSSL = false
    		info.Port = 80
    	case "https":
    		info.UseSSL = true
    		info.Port = 443
    	default:
    		return JwksInfo{}, fmt.Errorf("URI scheme %q is not supported", u.Scheme)
    	}
    
    	if u.Port() != "" {
    		info.Port, err = strconv.Atoi(u.Port())
    		if err != nil {
    			return JwksInfo{}, err
    		}
    	}
    	info.Hostname = host.Name(u.Hostname())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils.go

    		return v1.IPv4Protocol
    	}
    
    	return v1.IPv6Protocol
    }
    
    // AppendPortIfNeeded appends the given port to IP address unless it is already in
    // "ipv4:port" or "[ipv6]:port" format.
    func AppendPortIfNeeded(addr string, port int32) string {
    	// Return if address is already in "ipv4:port" or "[ipv6]:port" format.
    	if _, _, err := net.SplitHostPort(addr); err == nil {
    		return addr
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                ports:
                ## You can add custom gateway ports - google ILB default quota is 5 ports,
                - port: 15011
                  name: grpc-pilot-mtls
                - port: 8060
                  targetPort: 8060
                  name: tcp-citadel-grpc-tls
                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/server/server.go

    }
    
    // validatePort checks that the network port is in range
    func validatePort(port int) error {
    	if 1 <= port && port <= 65535 {
    		return nil
    	}
    	return fmt.Errorf("port number %d must be in the range 1..65535", port)
    }
    
    // Validate tests if the Options has valid params.
    func (o Options) Validate() error {
    	var errs *multierror.Error
    	if err := validatePort(int(o.Port)); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. cluster/addons/dns/kube-dns/kube-dns.yaml.base

        addonmanager.kubernetes.io/mode: Reconcile
        kubernetes.io/name: "KubeDNS"
    spec:
      selector:
        k8s-app: kube-dns
      clusterIP: __DNS__SERVER__
      ports:
      - name: dns
        port: 53
        protocol: UDP
      - name: dns-tcp
        port: 53
        protocol: TCP
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        istio: pilot
        release: {{ .Release.Name }}
    spec:
      ports:
        - port: 15010
          name: grpc-xds # plaintext
          protocol: TCP
        - port: 15012
          name: https-dns # mTLS with k8s-signed cert
          protocol: TCP
        - port: 443
          name: https-webhook # validation and injection
          targetPort: 15017
          protocol: TCP
        - port: 15014
          name: http-monitoring # prometheus stats
          protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

      listeners:
        - name: empty-hostname
          port: 80
          protocol: HTTP
          allowedRoutes:
            namespaces:
              from: All
        - name: wildcard-example-com
          port: 80
          protocol: HTTP
          hostname: "*.example.com"
          allowedRoutes:
            namespaces:
              from: All
        - name: wildcard-foo-example-com
          port: 80
          protocol: HTTP
          hostname: "*.foo.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top