Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 211 for Commands (0.15 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

        }
    
        @Nullable
        private File findExecutableInJavaHome(String command) {
            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
            return null;
        }
    
        private File commandLocation(String command) {
            File exec = new File(getJavaHome(), "bin/" + command);
            return new File(os.getExecutableName(exec.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/kubelet/container/helpers.go

    // ExpandContainerCommandAndArgs expands the given Container's command by replacing variable references `with the values of given EnvVar.
    func ExpandContainerCommandAndArgs(container *v1.Container, envs []EnvVar) (command []string, args []string) {
    	mapping := expansion.MappingFuncFor(envVarsToMap(envs))
    
    	if len(container.Command) != 0 {
    		for _, cmd := range container.Command {
    			command = append(command, expansion.Expand(cmd, mapping))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    == Enable Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    }
    
    func newProxyCommand(sds istioagent.SDSServiceFactory) *cobra.Command {
    	return &cobra.Command{
    		Use:   "proxy",
    		Short: "XDS proxy agent",
    		FParseErrWhitelist: cobra.FParseErrWhitelist{
    			// Allow unknown flags for backward-compatibility.
    			UnknownFlags: true,
    		},
    		PersistentPreRunE: configureLogging,
    		RunE: func(c *cobra.Command, args []string) error {
    			cmd.PrintFlags(c.Flags())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        private Ansi appendEscapeSequence(char command) {
            flushAttributes();
            builder.append(FIRST_ESC_CHAR);
            builder.append(SECOND_ESC_CHAR);
            builder.append(command);
            return this;
        }
    
        private Ansi appendEscapeSequence(char command, int option) {
            flushAttributes();
            builder.append(FIRST_ESC_CHAR);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    	"strings"
    	"syscall"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    // whoamiNEWUSER returns a command that runs "whoami" with CLONE_NEWUSER,
    // mapping uid and gid 0 to the actual uid and gid of the test.
    func whoamiNEWUSER(t *testing.T, uid, gid int, setgroups bool) *exec.Cmd {
    	t.Helper()
    	testenv.MustHaveExecPath(t, "whoami")
    	cmd := testenv.Command(t, "whoami")
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Cloneflags: syscall.CLONE_NEWUSER,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/install.go

    func InstallCmdWithArgs(ctx cli.Context, rootArgs *RootArgs, iArgs *InstallArgs) *cobra.Command {
    	ic := &cobra.Command{
    		Use:     "install",
    		Short:   "Applies an Istio manifest, installing or reconfiguring Istio on a cluster.",
    		Long:    "The install command generates an Istio install manifest and applies it to a cluster.",
    		Aliases: []string{"apply"},
    		// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

        private static final String VERSION = "v";
        private static final String VERSION_CONTINUE = "V";
    
        /**
         * <p>Converts the given command-line arguments to an {@link Action} which performs the action requested by the
         * command-line args.
         *
         * @param args The command-line arguments.
         * @return The action to execute.
         */
        @Override
        public CommandLineExecution convert(List<String> args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                lock.unlock();
            }
        }
    
        @Override
        public void runCommand(final Runnable command, String commandDisplayName) throws DaemonUnavailableException {
            onStartCommand(commandDisplayName);
            try {
                executor.execute(() -> {
                    try {
                        command.run();
                        onCommandSuccessful();
                    } catch (Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    }
    
    // Option configures a framework.Registry.
    type Option func(runtime.Registry) error
    
    // NewSchedulerCommand creates a *cobra.Command object with default parameters and registryOptions
    func NewSchedulerCommand(registryOptions ...Option) *cobra.Command {
    	opts := options.NewOptions()
    
    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    		Long: `The Kubernetes scheduler is a control plane process which assigns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top