Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 997 for Commands (0.4 sec)

  1. pkg/util/iptables/iptables.go

    			}
    		}(locker)
    	}
    
    	// run the command and return the output or an error including the output and error
    	fullArgs := append(runner.restoreWaitFlag, args...)
    	iptablesRestoreCmd := iptablesRestoreCommand(runner.protocol)
    	klog.V(4).InfoS("Running", "command", iptablesRestoreCmd, "arguments", fullArgs)
    	cmd := runner.exec.Command(iptablesRestoreCmd, fullArgs...)
    	cmd.SetStdin(bytes.NewBuffer(data))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils.go

    }
    
    // GetExtraParameters builds a list of flag arguments two string-string maps, one with default, base commands and one with overrides
    func GetExtraParameters(overrides map[string]string, defaults map[string]string) []string {
    	var command []string
    	for k, v := range overrides {
    		if len(v) > 0 {
    			command = append(command, fmt.Sprintf("--%s=%s", k, v))
    		}
    	}
    	for k, v := range defaults {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    }
    
    // newCmdTokenGenerate returns cobra.Command to generate new token
    func newCmdTokenGenerate(out io.Writer) *cobra.Command {
    	return &cobra.Command{
    		Use:   "generate",
    		Short: "Generate and print a bootstrap token, but do not create it on the server",
    		Long: dedent.Dedent(`
    			This command will print out a randomly-generated bootstrap token that can be used with
    			the "init" and "join" commands.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

    * `[.multi-language-text.lang-groovy]`: Most times the gradle command is identical between Groovy and Kotlin samples, but in this case we need to use `[.multi-language-text.lang-*]` that our CSS will collapse and switch for the DSL of choice. This is case-sensitive. You can use this construct for any 2 sibling blocks!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_outside.txt

    env GO111MODULE=on
    [short] skip
    
    # This script tests commands in module mode outside of any module.
    #
    # First, ensure that we really are in module mode, and that we really don't have
    # a go.mod file.
    go env GOMOD
    stdout 'NUL|/dev/null'
    
    
    # 'go list' without arguments implicitly operates on the current directory,
    # which is not in a module.
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    		}
    	}
    	if !found {
    		env = append(env, evplus+evv)
    	}
    	return env
    }
    
    // asCommandLine renders cmd as something that could be copy-and-pasted into a command line
    // If cwd is not empty and different from the command's directory, prepend an appropriate "cd"
    func asCommandLine(cwd string, cmd *exec.Cmd) string {
    	s := "("
    	if cmd.Dir != "" && cmd.Dir != cwd {
    		s += "cd" + escape(cmd.Dir) + ";"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/vendor.go

    		if gv := modload.MainModules.GoVersion(); gover.Compare(gv, "1.17") >= 0 {
    			// As of Go 1.17, we strip go.mod and go.sum files from dependency modules.
    			// Otherwise, 'go' commands invoked within the vendor subtree may misidentify
    			// an arbitrary directory within the vendor tree as a module root.
    			// (See https://golang.org/issue/42970.)
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    Then you can serve that with the command `serve`:
    
    <div class="termy">
    
    ```console
    // Use the command "serve" after running "build-all"
    $ python ./scripts/docs.py serve
    
    Warning: this is a very simple server. For development, use mkdocs serve instead.
    This is here only to preview a site with translations already built.
    Make sure you run the build-all command first.
    Serving at: http://127.0.0.1:8008
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Configuration.java

         */
        boolean isTraceResourceUsage ();
    
    
        /**
         * @param command
         * @return whether to allow creating compound requests with that command
         */
        boolean isAllowCompound ( String command );
    
    
        /**
         * Machine identifier
         * 
         * ClientGuid, ... are derived from this value.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    //
    // Show the documentation for the package, symbol, and method or field. The
    // first argument must be a full package path. This is similar to the
    // command-line usage for the godoc command.
    //
    // For commands, unless the -cmd flag is present "go doc command"
    // shows only the package-level docs for the package.
    //
    // The -src flag causes doc to print the full source code for the symbol, such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top