Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,167 for command1 (0.28 sec)

  1. src/os/exec/lp_windows_test.go

    		files: []string{`p\a.exe`, `p2\a.exe`},
    		PATH:  []string{".", "p2"},
    		arg0:  `p\a`,
    		want:  `p\a.exe`,
    	},
    	// tests commands, like `a.exe`, with c.Dir set
    	{
    		// should not find a.exe in p, because LookPath(`a.exe`) will fail when
    		// called by Command (before Dir is set), and that error is sticky.
    		name:       "not found before Dir",
    		files:      []string{`p\a.exe`},
    		PATH:       []string{"."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    and test commands:
    
    	-C dir
    		Change to dir before running the command.
    		Any files named on the command line are interpreted after
    		changing directories.
    		If used, this flag must be the first one in the command line.
    	-a
    		force rebuilding of packages that are already up-to-date.
    	-n
    		print the commands but do not run them.
    	-p n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. ci/official/utilities/get_versions.sh

    # explicitly, *after* checking if update_version.py needs to be run for a
    # nightly job. update_version.py affects TF_VER_SUFFIX, TF_VER_PYTHON, and
    # TF_VER_FULL.
    
    # Note: in awk, the command '/search/ {commands}' applies the commands to any line that
    # matches the /search/ regular expression. "print $N" prints the Nth "field",
    # where fields are strings separated by whitespace.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/tool/tool.go

    	Short:     "run specified go tool",
    	Long: `
    Tool runs the go tool command identified by the arguments.
    With no arguments it prints the list of known tools.
    
    The -n flag causes tool to print the command that would be
    executed but not execute it.
    
    For more about each tool command, see 'go doc cmd/<command>'.
    `,
    }
    
    var toolN bool
    
    // Return whether tool can be expected in the gccgo tool directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComWrite.java

        private byte[] b;
    
        SmbComWrite() {
            super();
            command = SMB_COM_WRITE;
        }
        SmbComWrite( int fid, int offset, int remaining, byte[] b, int off, int len ) {
            this.fid = fid;
            this.count = len;
            this.offset = offset;
            this.remaining = remaining;
            this.b = b;
            this.off = off;
            command = SMB_COM_WRITE;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3K bytes
    - Viewed (0)
  6. hack/verify-cli-conventions.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks the description format of help message of kubectl command
    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/graph.go

    The -go flag causes graph to report the module graph as loaded by the
    given Go version, instead of the version indicated by the 'go' directive
    in the go.mod file.
    
    The -x flag causes graph to print the commands graph executes.
    
    See https://golang.org/ref/mod#go-mod-graph for more about 'go mod graph'.
    	`,
    	Run: runGraph,
    }
    
    var (
    	graphGo goVersionFlag
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    	}
    	cmd := exec.Command(testenv.GoToolPath(t), "build", "-o", "a.exe", "main.go")
    	cmd.Dir = dir
    	out, err := testenv.CleanCmdEnv(cmd).CombinedOutput()
    	if err != nil {
    		t.Fatalf("building source %v\n%s", err, out)
    	}
    
    	// Execute gdb commands.
    	// 'setg_gcc' is the first point where we can reproduce the issue with just one 'run' command.
    	args := []string{"-nx", "-batch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. istioctl/pkg/authz/authz.go

    	}
    	return envoyConfig, nil
    }
    
    // AuthZ groups commands used for inspecting and interacting the authorization policy.
    // Note: this is still under active development and is not ready for real use.
    func AuthZ(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "authz",
    		Short: "Inspect Istio AuthorizationPolicy",
    	}
    
    	cmd.AddCommand(checkCmd(ctx))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

        /**
         * Returns the Eclipse build commands configured on the project.
         * <p>
         * Some build commands are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javabuilder"} build command. Note, that the exact list of automatically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top