Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for checkFoo (0.43 sec)

  1. src/text/scanner/scanner_test.go

    	checkTok(t, s, 0, s.Next(), ' ', "")
    	checkTok(t, s, 0, s.Next(), 'b', "")
    	checkTok(t, s, 1, s.Scan(), Ident, "cd")
    	checkTok(t, s, 1, s.Scan(), '{', "{")
    	checkTok(t, s, 2, s.Scan(), Ident, "a")
    	checkTok(t, s, 2, s.Scan(), '+', "+")
    	checkTok(t, s, 0, s.Next(), '=', "")
    	checkTok(t, s, 2, s.Scan(), Ident, "c")
    	checkTok(t, s, 3, s.Scan(), '}', "}")
    	checkTok(t, s, 3, s.Scan(), BOM, BOMs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  2. src/go/token/position_test.go

    		}
    	}
    
    	apos3 := a.Pos(3)
    	bpos3 := b.Pos(3)
    	checkPos(apos3, "fileA:1:4")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(2)
    
    	// After removal, queries on fileA fail.
    	fset.RemoveFile(a)
    	checkPos(apos3, "-")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(1)
    
    	// idempotent / no effect
    	fset.RemoveFile(a)
    	checkPos(apos3, "-")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/mmu.go

            </p>
            <p>
              <b>Include</b><br>
              <input type="checkbox" id="stw" checked><label for="stw">STW</label>
              <span class="help">?<span>Stop-the-world stops all goroutines simultaneously.</span></span><br>
              <input type="checkbox" id="background" checked><label for="background">Background workers</label>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. 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)
  5. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    b.errorMessageKey?e[b.errorMessageKey]:e[b.errorMessageKey(d)],g||(g=b.errorMessage))),g},getParentContainer:function(b){if(b.valAttr("error-msg-container"))return a(b.valAttr("error-msg-container"));var c=b.parent();return"checkbox"===b.attr("type")&&b.closest(".checkbox").length?c=b.closest(".checkbox").parent():"radio"===b.attr("type")&&b.closest(".radio").length&&(c=b.closest(".radio").parent()),c.closest(".input-group").length&&(c=c.closest(".input-group").parent()),c},applyInputErrorStyling:function(a,b...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  6. 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)
  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. src/cmd/compile/internal/ssa/_gen/rulegen.go

    func genMatch(rr *RuleRewrite, arch arch, match string, pregenTop bool) (pos, checkOp string) {
    	cnt := varCount(rr)
    	return genMatch0(rr, arch, match, "v", cnt, pregenTop)
    }
    
    func genMatch0(rr *RuleRewrite, arch arch, match, v string, cnt map[string]int, pregenTop bool) (pos, checkOp string) {
    	if match[0] != '(' || match[len(match)-1] != ')' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top