Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,708 for PORT (0.04 sec)

  1. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    		addr = v
    	}
    	port := url.Port()
    	if port == "" {
    		port = portMap[url.Scheme]
    	}
    	return net.JoinHostPort(addr, port)
    }
    
    // Given a string of the form "host", "host:port", or "[ipv6::address]:port",
    // return true if the string includes a port.
    func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
    
    func idnaASCII(v string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

            port:
              number: 4209
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4201
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4206
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/probe/grpc/grpc_test.go

    		s := New()
    		lis, _ := net.Listen("tcp", ":0")
    		port := lis.Addr().(*net.TCPAddr).Port
    		grpcServer := grpc.NewServer()
    		defer grpcServer.Stop()
    		grpchealth.RegisterHealthServer(grpcServer, &errorNotServeServerMock{})
    		go func() {
    			_ = grpcServer.Serve(lis)
    		}()
    		// take some time to wait server boot
    		time.Sleep(2 * time.Second)
    		p, o, err := s.Probe("0.0.0.0", "", port, time.Second)
    		assert.Equal(t, probe.Failure, p)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
            host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

        }
    
        public String getAddress(){
            String port = Integer.toString(this.port);
            return isNullOrEmpty(host) ? port : host + ":" + port;
        }
    
        public void copyTo(JavaDebugOptionsInternal opts) {
            opts.enabled = enabled;
            opts.suspend = suspend;
            opts.server = server;
            opts.port = port;
            opts.host = host;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. istioctl/pkg/dashboard/dashboard.go

    	kiali.PersistentFlags().IntVar(&kialiPort, "ui-port", defaultKialiPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(kiali)
    
    	prom := promDashCmd(cliContext)
    	prom.PersistentFlags().IntVar(&promPort, "ui-port", defaultPrometheusPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(prom)
    
    	graf := grafanaDashCmd(cliContext)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. src/runtime/internal/wasitest/tcpecho_test.go

    	"time"
    )
    
    func TestTCPEcho(t *testing.T) {
    	if target != "wasip1/wasm" {
    		t.Skip()
    	}
    
    	// We're unable to use port 0 here (let the OS choose a spare port).
    	// Although the WASM runtime accepts port 0, and the WASM module listens
    	// successfully, there's no way for this test to query the selected port
    	// so that it can connect to the WASM module. The WASM module itself
    	// cannot access any information about the socket due to limitations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/net/ipsock_plan9.go

    	var (
    		ip   IP
    		port int
    	)
    	switch a := addr.(type) {
    	case *TCPAddr:
    		proto = "tcp"
    		ip = a.IP
    		port = a.Port
    	case *UDPAddr:
    		proto = "udp"
    		ip = a.IP
    		port = a.Port
    	default:
    		err = UnknownNetworkError(net)
    		return
    	}
    
    	if port > 65535 {
    		err = InvalidAddrError("port should be < 65536")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java

                }
                buf.append('/');
            }
            return buf.toString();
        }
    
        public String getServer() {
            return server;
        }
    
        public void setServer(final String server) {
            this.server = server;
        }
    
        public int getPort() {
            return port;
        }
    
        public void setPort(final int port) {
            this.port = port;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/tls.yaml

      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: passthrough
        port: 34000
        protocol: TLS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Passthrough
      - name: terminate
        hostname: "domain.example"
        port: 34000
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: All
        tls:
          mode: Terminate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top