Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 700 for clip (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/rich-cli.png

    rich-cli.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 142.4K bytes
    - Viewed (0)
  2. hack/verify-cli-conventions.sh

    # 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"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/clicheck
    
    if ! output=$(clicheck 2>&1)
    then
    	echo "$output"
    	echo
    	echo "FAILURE: CLI is not following one or more required conventions."
    	exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		}
    	}
    	modRootContainingCWD := findModuleRoot(base.Cwd())
    	mainModules := &MainModuleSet{
    		versions:        slices.Clip(ms),
    		inGorootSrc:     map[module.Version]bool{},
    		pathPrefix:      map[module.Version]string{},
    		modRoot:         map[module.Version]string{},
    		modFiles:        map[module.Version]*modfile.File{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/python/loader.clif

    A. Unique TensorFlower <******@****.***> 1515103377 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 22:06:37 UTC 2018
    - 134 bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		t0             time.Time
    		cancelKilled   = false
    		cancelSignaled = false
    	)
    	for {
    		cmd = exec.CommandContext(ctx, args[0], args[1:]...)
    		cmd.Dir = a.Package.Dir
    
    		env := slices.Clip(cfg.OrigEnv)
    		env = base.AppendPATH(env)
    		env = base.AppendPWD(env, cmd.Dir)
    		cmd.Env = env
    		if addToEnv != "" {
    			cmd.Env = append(cmd.Env, addToEnv)
    		}
    
    		cmd.Stdout = stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    Dmitri Shuralyov <******@****.***> 1692114357 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/math/big/arith_s390x.s

    	VPDI  $0x4, V18, V18, V18 // flip the doublewords to big-endian order
    	VPDI  $0x4, V19, V19, V19 // flip the doublewords to big-endian order
    	VPDI  $0x4, V20, V20, V20 // flip the doublewords to big-endian order
    	VPDI  $0x4, V21, V21, V21 // flip the doublewords to big-endian order
    	VPDI  $0x4, V22, V22, V22 // flip the doublewords to big-endian order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. test/codegen/fuse.go

    func si2c(c <-chan int32) {
    	// amd64:"CMPL\t.+, [$]256"
    	// s390x:"CLIJ\t[$]12, R[0-9]+, [$]255"
    	for x := <-c; x >= 0 && x < 256; x = <-c {
    	}
    }
    
    func si3c(c <-chan int16) {
    	// amd64:"CMPW\t.+, [$]256"
    	// s390x:"CLIJ\t[$]12, R[0-9]+, [$]255"
    	for x := <-c; x >= 0 && x < 256; x = <-c {
    	}
    }
    
    func si4c(c <-chan int8) {
    	// amd64:"CMPB\t.+, [$]10"
    	// s390x:"CLIJ\t[$]4, R[0-9]+, [$]10"
    	for x := <-c; x >= 0 && x < 10; x = <-c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 03 14:30:26 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  9. docs/en/docs/fastapi-cli.md

    # FastAPI CLI
    
    **FastAPI CLI** is a command line program that you can use to serve your FastAPI app, manage your FastAPI project, and more.
    
    When you install FastAPI (e.g. with `pip install fastapi`), it includes a package called `fastapi-cli`, this package provides the `fastapi` command in the terminal.
    
    To run your FastAPI app for development, you can use the `fastapi dev` command:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. docs/pt/docs/fastapi-cli.md

    # FastAPI CLI
    
    **FastAPI CLI** é uma interface por linha de comando do `fastapi` que você pode usar para rodar sua app FastAPI, gerenciar seu projeto FastAPI e mais.
    
    Quando você instala o FastAPI (ex.: com `pip install fastapi`), isso inclui um pacote chamado `fastapi-cli`. Esse pacote disponibiliza o comando `fastapi` no terminal.
    
    Para rodar seu app FastAPI em desenvolvimento, você pode usar o comando `fastapi dev`:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top