Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for PORT (0.04 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    	s, _ := NewKubeControllerManagerOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	var command []string
    	command = append(command, serverCommand...)
    	command = append(command, test.args...)
    	command = append(command, "-cert", certPath, "-certform", "DER", "-key", keyPath)
    	// serverPort contains the port that OpenSSL will listen on. OpenSSL
    	// can't take "0" as an argument here so we have to pick a number and
    	// hope that it's not in use on the machine. Since this only occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      if (!parse_result) {
        std::cerr << "Required test_model_file\n";
        std::abort();
      }
      g_test_model_dir =
          new tensorflow::string(tensorflow::io::Dirname(model_file));
      ::tensorflow::port::InitMain(argv[0], &argc, &argv);
      return RUN_ALL_TESTS();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    // for TestLinuxSendfile.
    func TestLinuxSendfileChild(*testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
    		return
    	}
    	defer os.Exit(0)
    	fd3 := os.NewFile(3, "ephemeral-port-listener")
    	ln, err := net.FileListener(fd3)
    	if err != nil {
    		panic(err)
    	}
    	mux := NewServeMux()
    	mux.Handle("/", FileServer(Dir(os.TempDir())))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
    		ruri = r.URL.Scheme + "://" + host + ruri
    	} else if r.Method == "CONNECT" && r.URL.Path == "" {
    		// CONNECT requests normally give just the host and port, not a full URL.
    		ruri = host
    		if r.URL.Opaque != "" {
    			ruri = r.URL.Opaque
    		}
    	}
    	if stringContainsCTLByte(ruri) {
    		return errors.New("net/http: can't write control character in Request.URL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote>
     * 
     * <pre>
     *     smb://[[[domain;]username[:password]@]server[:port]/[[share/[dir/]file]]][?param=value[param2=value2[...]]]
     * </pre>
     * 
     * </blockquote>
     *
     * This example:
     *
     * <blockquote>
     * 
     * <pre>
     *     smb://storage15/public/foo.txt
     * </pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top