Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,167 for command1 (0.23 sec)

  1. docs/batch-jobs/README.md

    ## Batch Jobs via Commandline
    [mc](http://github.com/minio/mc) provides 'mc batch' command to create, start and manage submitted jobs.
    
    ```
    NAME:
      mc batch - manage batch jobs
    
    USAGE:
      mc batch COMMAND [COMMAND FLAGS | -h] [ARGUMENTS...]
    
    COMMANDS:
      generate  generate a new batch job definition
      start     start a new batch job
      list, ls  list all current batch jobs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

    import java.util.Map;
    import java.util.Set;
    import java.util.TreeSet;
    import java.util.regex.Pattern;
    
    /**
     * <p>A command-line parser which supports a command/sub-command style command-line interface. Supports the following
     * syntax:</p>
     * <pre>
     * &lt;option&gt;* (&lt;sub-command&gt; &lt;sub-command-option&gt;*)*
     * </pre>
     *
     * <ul> <li>Short options are a '-' followed by a single character. For example: {@code -a}.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            rootProject.projectNatures.collect{ it.id } == ['org.eclipse.jdt.core.javanature', 'sample.nature.a', 'sample.nature.b']
        }
    
        @TargetGradleVersion(">=3.0")
        def "applying plugins configure appropriate build commands"() {
            given:
            plugins.each { plugin -> buildFile << "apply plugin: '${plugin}'\n" }
            settingsFile << "rootProject.name = 'root'"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo_test.go

    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{GitRepo: &v1.GitRepoVolumeSource{}}}}) {
    		t.Errorf("Expected true")
    	}
    }
    
    // Expected command
    type expectedCommand struct {
    	// The git command
    	cmd []string
    	// The dir of git command is executed
    	dir string
    }
    
    func TestPlugin(t *testing.T) {
    	gitURL := "https://github.com/kubernetes/kubernetes.git"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/runtime/runtime-gdb.py

    			return obj['data'].cast(iface_dtype(obj))
    		except gdb.error:
    			pass
    		return obj
    
    #
    #  Commands
    #
    
    def linked_list(ptr, linkfield):
    	while ptr:
    		yield ptr
    		ptr = ptr[linkfield]
    
    
    class GoroutinesCmd(gdb.Command):
    	"List all goroutines."
    
    	def __init__(self):
    		gdb.Command.__init__(self, "info goroutines", gdb.COMMAND_STACK, gdb.COMPLETE_NONE)
    
    	def invoke(self, _arg, _from_tty):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. src/debug/macho/file.go

    	for i := uint32(0); i < f.Ncmd; i++ {
    		// Each load command begins with uint32 command and length.
    		if len(dat) < 8 {
    			return nil, &FormatError{offset, "command block too small", nil}
    		}
    		cmd, siz := LoadCmd(bo.Uint32(dat[0:4])), bo.Uint32(dat[4:8])
    		if siz < 8 || siz > uint32(len(dat)) {
    			return nil, &FormatError{offset, "invalid command block size", nil}
    		}
    		var cmddat []byte
    		cmddat, dat = dat[0:siz], dat[siz:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcweb.go

    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    // conditions, as well as commands for each supported VCS binary (bzr, fossil,
    // git, hg, and svn), a "handle" command that informs the script which protocol
    // or handler to use to serve the request, and utilities "at" (which sets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. hack/lib/util.sh

    #  CFSSLJSON_BIN: The path of the installed cfssljson binary
    #
    # shellcheck disable=SC2120 # optional parameters
    function kube::util::ensure-cfssl {
      if command -v cfssl &>/dev/null && command -v cfssljson &>/dev/null; then
        CFSSL_BIN=$(command -v cfssl)
        CFSSLJSON_BIN=$(command -v cfssljson)
        return 0
      fi
    
      host_arch=$(kube::util::host_arch)
    
      if [[ "${host_arch}" != "amd64" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/README.vendor

    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    Chaque personne devant vous attend 🕙 que son burger 🍔 soit prêt avant de quitter le comptoir car chacun des 8 serveurs va lui-même préparer le burger directement avant de prendre la commande suivante.
    
    Puis c'est enfin votre tour, vous commandez 2 magnifiques burgers 🍔 pour vous et votre crush 😍.
    
    Vous payez 💸.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top