Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,275 for port (0.17 sec)

  1. cmd/ftp-server.go

    			}
    			port, err = strconv.Atoi(portStr)
    			if err != nil {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s (%v)", arg, err), "unable to start FTP server")
    			}
    			if port < 1 || port > 65535 {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s, (port number must be between 1 to 65535)", arg), "unable to start FTP server")
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 4.8K bytes
    - Viewed (2)
  2. mockwebserver-junit5/src/test/java/mockwebserver3/junit5/internal/ExtensionMultipleInstancesTest.kt

        @MockWebServerInstance("A") instanceA: MockWebServer,
        @MockWebServerInstance("B") instanceB: MockWebServer,
      ) {
        defaultInstancePort = defaultInstance.port
        instanceAPort = instanceA.port
        instanceBPort = instanceB.port
        assertThat(defaultInstance.started).isTrue()
        assertThat(instanceA.started).isTrue()
        assertThat(instanceB.started).isTrue()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Jan 14 10:20:09 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/listener.go

    		if filter.Verify(l) {
    			verifiedListeners = append(verifiedListeners, l)
    		}
    	}
    
    	// Sort by port, addr, type
    	sort.Slice(verifiedListeners, func(i, j int) bool {
    		iPort := retrieveListenerPort(verifiedListeners[i])
    		jPort := retrieveListenerPort(verifiedListeners[j])
    		if iPort != jPort {
    			return iPort < jPort
    		}
    		iAddr := retrieveListenerAddress(verifiedListeners[i])
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

              "address": "/10.244.1.37",
              "port": {
                "9080": 9080
              }
            },
            "Kubernetes//Pod/bookinfo/reviews-v3-5b9bd44f4-7fff4:/10.244.1.39": {
              "workloadUid": "Kubernetes//Pod/bookinfo/reviews-v3-5b9bd44f4-7fff4",
              "service": "bookinfo/reviews.bookinfo.svc.cluster.local",
              "address": "/10.244.1.39",
              "port": {
                "9080": 9080
              }
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  6. cni/test/testdata/env_vars.sh

    KUBE_DNS_PORT_53_TCP_PORT=53
    # shellcheck disable=SC2034
    KUBE_DNS_PORT_53_TCP=tcp://10.110.0.10:53
    # shellcheck disable=SC2034
    KUBERNETES_SERVICE_PORT=443
    # shellcheck disable=SC2034
    KUBE_DNS_SERVICE_PORT_DNS=53
    # shellcheck disable=SC2034
    KUBE_DNS_SERVICE_PORT_DNS_TCP=53
    # shellcheck disable=SC2034
    KUBERNETES_SERVICE_HOST=10.110.0.1
    # shellcheck disable=SC2034
    KUBE_DNS_PORT_53_UDP_PORT=53
    # shellcheck disable=SC2034
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe_test.go

    		},
    		{
    			port: corev1.ServicePort{
    				AppProtocol: &http,
    				Protocol:    corev1.ProtocolTCP,
    			},
    			expectedProtocol: "HTTP",
    		},
    		{
    			port: corev1.ServicePort{
    				Protocol: corev1.ProtocolTCP,
    				Port:     80,
    			},
    			expectedProtocol: "auto-detect",
    		},
    		{
    			port: corev1.ServicePort{
    				Protocol: corev1.ProtocolUDP,
    				Port:     80,
    			},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  8. 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
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Oct 02 00:02:18 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    		"http": 80,
    	}
    
    	for _, port := range ingress.service.Spec.Ports {
    		if port.Protocol != "TCP" || !portsToShow[port.Name] {
    			continue
    		}
    
    		// Get port number
    		_, err := pilotcontroller.FindPort(ingress.pods[0], &port)
    		if err == nil {
    			nport := int(port.Port)
    			protocol := string(configKube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol))
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

    public class SampleServer extends Dispatcher {
      private final SSLContext sslContext;
      private final String root;
      private final int port;
    
      public SampleServer(SSLContext sslContext, String root, int port) {
        this.sslContext = sslContext;
        this.root = root;
        this.port = port;
      }
    
      public void run() throws IOException {
        MockWebServer server = new MockWebServer();
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Jan 02 02:50:44 GMT 2019
    - 4.7K bytes
    - Viewed (0)
Back to top