Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for portnet (0.18 sec)

  1. pkg/registry/core/node/strategy.go

    	if portReq == "" || portReq == info.Port {
    		return &url.URL{
    				Scheme: info.Scheme,
    				Host:   net.JoinHostPort(info.Hostname, info.Port),
    			},
    			info.Transport,
    			nil
    	}
    
    	// Otherwise, return the requested scheme and port, and the proxy transport
    	return &url.URL{Scheme: schemeReq, Host: net.JoinHostPort(info.Hostname, portReq)}, proxyTransport, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    	hostPortNum := s2.Containers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    
    	hostPortNum = s2.InitContainers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

         */
        public static final ArtifactStatus CONVERTED = new ArtifactStatus("converted", 2);
    
        /**
         * Moderate trust - it was deployed directly from a partner.
         */
        public static final ArtifactStatus PARTNER = new ArtifactStatus("partner", 3);
    
        /**
         * Moderate trust - it was deployed directly by a user.
         */
        public static final ArtifactStatus DEPLOYED = new ArtifactStatus("deployed", 4);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. docs/tr/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config.go

    	portGen := newPortGenerators()
    	for _, p := range c.Ports {
    		if p.ServicePort > 0 {
    			if portGen.Service.IsUsed(p.ServicePort) {
    				return fmt.Errorf("failed configuring port %s: service port already used %d", p.Name, p.ServicePort)
    			}
    			portGen.Service.SetUsed(p.ServicePort)
    		}
    		if p.WorkloadPort > 0 {
    			if portGen.Instance.IsUsed(p.WorkloadPort) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    	example.net/y v0.2.0 => ./y2
    )
    -- go.mod.postget --
    module example.net/m
    
    go 1.16
    
    replace (
    	example.net/x v0.1.0 => ./x1
    	example.net/x v0.2.0-pre => ./x2-pre
    	example.net/y v0.1.0 => ./y1
    	example.net/y v0.2.0 => ./y2
    )
    
    require (
    	example.net/x v0.1.0
    	example.net/y v0.1.0 // indirect
    )
    -- go.mod.postget-117 --
    module example.net/m
    
    go 1.17
    
    replace (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/endpoint.go

    // If the string is not a valid representation of a TCP port, ParsePort returns an error.
    func ParsePort(port string) (int, error) {
    	portInt, err := netutils.ParsePort(port, true)
    	if err == nil && (1 <= portInt && portInt <= 65535) {
    		return portInt, nil
    	}
    
    	return 0, errors.New("port must be a valid number between 1 and 65535, inclusive")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. docs/ko/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 10:38:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_signal_ios_arm64.c

    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_allocate failed for port_set: %d\n", ret);
    		abort();
    	}
    
    	// Block all signals to the exception handler thread
    	sigfillset(&ign);
    	pthread_sigmask(SIG_SETMASK, &ign, &oset);
    
    	// Start a thread to handle exceptions.
    	uintptr_t port_set = (uintptr_t)mach_exception_handler_port_set;
    	pthread_attr_init(&attr);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top