Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for PORT (0.07 sec)

  1. hack/local-up-cluster.sh

                echo "API SERVER insecure port is free, proceeding..."
            else
                echo "ERROR starting API SERVER, exiting. Some process on ${API_HOST} is serving already on ${API_PORT}"
                exit 1
            fi
        fi
    
        if ! curl --silent -k -g "${API_HOST}:${API_SECURE_PORT}" ; then
            echo "API SERVER secure port is free, proceeding..."
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	Path *string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`
    
    	// If specified, the port on the service that hosting webhook.
    	// Default to 443 for backward compatibility.
    	// `port` should be a valid port number (1-65535, inclusive).
    	// +optional
    	Port *int32 `json:"port,omitempty" protobuf:"varint,4,opt,name=port"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		addr = v
    	}
    	return addr
    }
    
    // canonicalAddr returns url.Host but always with a ":port" suffix.
    func canonicalAddr(url *url.URL) string {
    	port := url.Port()
    	if port == "" {
    		port = portMap[url.Scheme]
    	}
    	return net.JoinHostPort(idnaASCIIFromURL(url), port)
    }
    
    // bodyEOFSignal is used by the HTTP/1 transport when reading response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	l, err := net.ListenTCP("tcp", &net.TCPAddr{
    		IP:   net.IPv4(127, 0, 0, 1),
    		Port: 0,
    	})
    	if err != nil {
    		return nil, nil, err
    	}
    	defer l.Close()
    
    	port := l.Addr().(*net.TCPAddr).Port
    
    	var command []string
    	command = append(command, test.command...)
    	if len(command) == 0 {
    		command = defaultClientCommand
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
      // `port` should be a valid port number (1-65535, inclusive).
      // +optional
      optional int32 port = 4;
    }
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

            -Name ${env:KUBE_NETWORK} `
            -Verbose
        $created_hns_network = $true
      }
      # This name of endpoint is referred in pkg/proxy/winkernel/proxier.go as part of
      # kube-proxy as well. A health check port for every service that is specified as
      # "externalTrafficPolicy: local" will be added on the endpoint.
      # PLEASE KEEP THEM CONSISTENT!!!
      $endpoint_name = "cbr0"
    
      $vnic_name = "vEthernet (${endpoint_name})"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    			t.Errorf("%d. for (%v, %v) String = %q; want %q", i, tt.in.Addr(), tt.in.Port(), got, tt.want)
    		}
    		mt, err := tt.in.MarshalText()
    		if err != nil {
    			t.Errorf("%d. for (%v, %v) MarshalText error: %v", i, tt.in.Addr(), tt.in.Port(), err)
    			continue
    		}
    		if string(mt) != tt.want {
    			t.Errorf("%d. for (%v, %v) MarshalText = %q; want %q", i, tt.in.Addr(), tt.in.Port(), mt, tt.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    	flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
    
    	xflagparse(0)
    
    	if noClean {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Fixed a bug where `kubectl describe` incorrectly displayed NetworkPolicy port ranges
      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    - Fixed a regression where `kubelet --hostname-override` no longer worked
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	globalObjLayerMutex.Lock()
    	globalObjectAPI = objLayer
    	globalObjLayerMutex.Unlock()
    
    	// initialize peer rpc
    	host, port := mustSplitHostPort(testServer.Server.Listener.Addr().String())
    	globalMinioHost = host
    	globalMinioPort = port
    	globalMinioAddr = getEndpointsLocalAddr(testServer.Disks)
    
    	initAllSubsystems(ctx)
    
    	globalEtcdClient = nil
    
    	initConfigSubsystem(ctx, objLayer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top