Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SUBCOMMAND (0.16 sec)

  1. .teamcity/.mvn/wrapper/maven-wrapper.jar

    org/apache/maven/wrapper/cli/CommandLineOption.class package org.apache.maven.wrapper.cli; public synchronized class CommandLineOption { private final java.util.Set options; private Class argumentType; private String description; private String subcommand; private String deprecationWarning; private boolean incubating; public void CommandLineOption(Iterable); public java.util.Set getOptions(); public CommandLineOption hasArgument(); public CommandLineOption hasArguments(); public String getSubcommand();...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Make kubectl find `kubectl-create-subcommand` plugins also when positional arguments exists, e.g. `kubectl create subcommand arg`. ([#124123](https://github.com/kubernetes/kubernetes/pull/124123), [@sttts](https://github.com/sttts)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	var recordingConn *recordingConn
    	var childProcess *exec.Cmd
    
    	if write {
    		var err error
    		recordingConn, childProcess, err = test.connFromCommand()
    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    		}
    		serverConn = recordingConn
    		defer func() {
    			if t.Failed() {
    				t.Logf("OpenSSL output:\n\n%s", childProcess.Stdout)
    			}
    		}()
    	} else {
    		clientConn, serverConn = localPipe(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	var stdin opensslInput
    	var stdout *opensslOutputSink
    
    	if write {
    		var err error
    		recordingConn, childProcess, stdin, stdout, err = test.connFromCommand()
    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    		}
    		clientConn = recordingConn
    		defer func() {
    			if t.Failed() {
    				t.Logf("OpenSSL output:\n\n%s", stdout.all)
    			}
    		}()
    	} else {
    		clientConn, serverConn = localPipe(t)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top