Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 505 for clip (0.07 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .dlist dt code {
    	color: var(--text-color);
    	font-size: 1em;
    	font-weight: bold;
    }
    
    .dlist p {
    	margin-bottom: 0.625rem;
    }
    
    .sr-only {
    	border: 0;
    	clip: rect(0, 0, 0, 0);
    	height: 1px;
    	margin: -1px;
    	overflow: hidden;
    	padding: 0;
    	position: absolute;
    	width: 1px;
    }
    
    /* Layout */
    .main-content>.appendix,
    .main-content>.book,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    	if len(mainModuleMatches) > 0 && len(results) == 0 && modOnly == nil && errors.Is(err, fs.ErrNotExist) {
    		return nil, nil, &QueryMatchesMainModulesError{
    			Pattern: pattern,
    			Query:   query,
    		}
    	}
    	return slices.Clip(results), modOnly, err
    }
    
    // modulePrefixesExcludingTarget returns all prefixes of path that may plausibly
    // exist as a module, excluding targetPrefix but otherwise including path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    		var extra []string
    		for _, path := range absTests {
    			if strings.Contains(path, "$") {
    				continue
    			}
    			path = vol + path
    			extra = append(extra, path)
    		}
    		tests = append(slices.Clip(tests), extra...)
    	}
    
    	err = os.Chdir(absTestDirs[0])
    	if err != nil {
    		t.Fatal("chdir failed: ", err)
    	}
    
    	for _, path := range tests {
    		path = strings.ReplaceAll(path, "$", root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    t&&b(t.mode,"hover")&&Yt(t.toggle.$el,this.$el)&&t},transitionTo:function(t,e){var i=this,n=this.dropbar,r=Wt(n)?ci(n):0;return Ve(e=r<t&&e,"clip","rect(0,"+e.offsetWidth+"px,"+r+"px,0)"),ci(n,r),Ze.cancel([e,n]),se.all([Ze.start(n,{height:t},this.duration),Ze.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(et).then(function(){Ve(e,{clip:""}),i.$update(n)})},getDropdown:function(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}},lr={mixins:[sr],a...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // The caller must not modify the returned list, but may safely append to it
    // and may rely on it not to be modified.
    func (mg *ModuleGraph) BuildList() []module.Version {
    	mg.buildListOnce.Do(func() {
    		mg.buildList = slices.Clip(mg.g.BuildList())
    	})
    	return mg.buildList
    }
    
    func (mg *ModuleGraph) findError() error {
    	errStack := mg.g.FindPath(func(m module.Version) bool {
    		_, err := mg.loadCache.Get(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Float32Tensor, [{The final quantization range minimum, used to clip input values before scaling
    and rounding them to quantized values.
    If the `axis` attribute is specified, this will be a 1-D tensor whose size
    matches the `axis` dimension of the input and output tensors.}]>:$output_min,
        Res<TF_Float32Tensor, [{The final quantization range maximum, used to clip input values before scaling
    and rounding them to quantized values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top