Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 873 for Commands (0.13 sec)

  1. src/internal/trace/testdata/README.md

    trace, but with the `.go` extension removed.
    
    ## Trace test programs
    
    The trace test programs in the `testprog` directory generate traces to
    stdout.
    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

     * methods willed be called sequentially in the following order:
     *
     * - {@link RemoteTestClassProcessor#startProcessing()}
     * - 0 or more calls to {@link RemoteTestClassProcessor#processTestClass(TestClassRunInfo)}
     * - {@link RemoteTestClassProcessor#stop()}
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ForwardClientInput.java

    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    import org.gradle.internal.daemon.clientinput.ClientInputForwarder;
    
    /**
     * Listens for {@link org.gradle.launcher.daemon.protocol.InputMessage} commands during execution and forwards them to this process' System.in and services such
     * as {@link UserInputReader}.
     */
    public class ForwardClientInput implements DaemonCommandAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    The bin directory holds compiled commands.
    Each command is named for its source directory, but only
    the final element, not the entire path. That is, the
    command with source in DIR/src/foo/quux is installed into
    DIR/bin/quux, not DIR/bin/foo/quux. The "foo/" prefix is stripped
    so that you can add DIR/bin to your PATH to get at the
    installed commands. If the GOBIN environment variable is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

        }
    
        @Provides
        protected DefaultBuildTaskSelector createBuildTaskSelector(BuildStateRegistry buildRegistry, TaskSelector taskSelector, List<BuiltInCommand> commands, InternalProblems problemsService) {
            return new DefaultBuildTaskSelector(buildRegistry, taskSelector, commands, problemsService);
        }
    
        @Provides
        protected ScopedListenerManager createListenerManager(ScopedListenerManager parent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    }
    
    // runOut runs the command given by cmdline in the directory dir.
    // It returns the command output and any errors that occurred.
    // It accumulates execution time in a.
    func (sh *Shell) runOut(dir string, env []string, cmdargs ...any) ([]byte, error) {
    	a := sh.action
    
    	cmdline := str.StringList(cmdargs...)
    
    	for _, arg := range cmdline {
    		// GNU binutils commands, including gcc and gccgo, interpret an argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    fi
    
    # gitconfig conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.gitconfig" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.gitconfig,destination=/home/.gitconfig,readonly "
    fi
    
    # .netrc conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.netrc" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. README.md

    ```sh
    firewall-cmd --get-active-zones
    ```
    
    This command gets the active zone(s). Now, apply port rules to the relevant zones returned above. For example if the zone is `public`, use
    
    ```sh
    firewall-cmd --zone=public --add-port=9000/tcp --permanent
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation.go

    		return ""
    	}
    }
    
    // IsWriteCmd returns true for all command types that do write actions (and thus need a lock)
    func (v IptablesVersion) IsWriteCmd(cmd constants.IptablesCmd) bool {
    	switch cmd {
    	case constants.IPTables:
    		return true
    	case constants.IPTablesRestore:
    		return true
    	default:
    		return false
    	}
    }
    
    // Constants for iptables commands
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    	if testing.Short() {
    		// VCS commands are always somewhat slow: they either require access to external hosts,
    		// or they require our intercepted vcs-test.golang.org to regenerate the repository.
    		// Require all tests that use VCS commands to be skipped in short mode.
    		env = append(env, "TESTGOVCS=panic")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top