Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for checkFoo (0.18 sec)

  1. docs/integrations/veeam/README.md

    - Follow the on screen wizard
    
    - On the Capacity Tier screen, check the box to Extend scale-out backup repository capacity with object storage checkbox and select the object storage. If you want to be able to test backup data immediately after a job is run, under the object storage selection, check the "Copy" box and uncheck the "Move" box.
    
    ### Create a backup job
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. src/text/template/parse/lex_test.go

    			break
    		}
    	}
    	return
    }
    
    func equal(i1, i2 []item, checkPos bool) bool {
    	if len(i1) != len(i2) {
    		return false
    	}
    	for k := range i1 {
    		if i1[k].typ != i2[k].typ {
    			return false
    		}
    		if i1[k].val != i2[k].val {
    			return false
    		}
    		if checkPos && i1[k].pos != i2[k].pos {
    			return false
    		}
    		if checkPos && i1[k].line != i2[k].line {
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         *
         * <p>The client UI is free to choose a convenient representation for boolean values, for example
         * allowing the user to type 'y' or 'n' or presenting a checkbox. The user is not required to answer 'true' or 'false'
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

        tfrt::HostContext* host) {
      std::string file_path = GetDataDependencyFilepath(
          "tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/"
          "batch_function_fallback.mlir.bef");
    
      std::string data;
      CHECK_OK(ReadFileToString(Env::Default(), file_path, &data));
    
      tfrt::BefBuffer bef_buffer(data.begin(), data.end());
    
      auto bef_file = tfrt::BEFFile::Open(bef_buffer, host->GetKernelRegistry(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    	if err != nil {
    		return nil, err
    	}
    	for _, f := range cgofiles {
    		checkCgo(pass.Fset, f, info, pass.Reportf)
    	}
    	return nil, nil
    }
    
    func checkCgo(fset *token.FileSet, f *ast.File, info *types.Info, reportf func(token.Pos, string, ...interface{})) {
    	ast.Inspect(f, func(n ast.Node) bool {
    		call, ok := n.(*ast.CallExpr)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/list.go

    }
    
    func (x *Task) Inline() {
    }
    
    func (x *Task) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<input ")
    	if x.Checked {
    		buf.WriteString(`checked="" `)
    	}
    	buf.WriteString(`disabled="" type="checkbox">`)
    }
    
    func (x *Task) printMarkdown(buf *bytes.Buffer) {
    	x.PrintText(buf)
    }
    
    func (x *Task) PrintText(buf *bytes.Buffer) {
    	buf.WriteByte('[')
    	if x.Checked {
    		buf.WriteByte('x')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            div().classAttr("form-check");
                                label().classAttr("form-check-label");
                                    input().classAttr("form-check-input").type("checkbox").checked("true").value(tag.getName()).end();
                                    if(tag.isValid()) {
                                        span().classAttr(tag.getClassAttr()).text(tag.getName()).end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    			if foundSum != "" && foundSum != h { // conflicting sums exist
    				return "", false
    			}
    			foundSum = h
    		}
    	}
    	return foundSum, true
    }
    
    // checkMod checks the given module's checksum and Go version.
    func checkMod(ctx context.Context, mod module.Version) {
    	// Do the file I/O before acquiring the go.sum lock.
    	ziphash, err := CachePath(ctx, mod, "ziphash")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/go/scanner/scanner_test.go

    	}
    	return src
    }()
    
    func newlineCount(s string) int {
    	n := 0
    	for i := 0; i < len(s); i++ {
    		if s[i] == '\n' {
    			n++
    		}
    	}
    	return n
    }
    
    func checkPos(t *testing.T, lit string, p token.Pos, expected token.Position) {
    	pos := fset.Position(p)
    	// Check cleaned filenames so that we don't have to worry about
    	// different os.PathSeparator values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    b=r.fx?r.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a=d.createElement("input"),b=d.createElement("select"),c=b.appendChild(d.createElement("option"));a.type="checkbox",o.checkOn=""!==a.value,o.optSelected=c.selected,a=d.createElement("input"),a.value="t",a.type="radio",o.radioValue="t"===a.value}();var _a,ab=r.expr.attrHandle;r.fn.extend({attr:function(a,b){return T(this,r.attr,a,b,arguments.length>1)},removeAttr:function(a){return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
Back to top