Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Prejudice (0.1 sec)

  1. src/encoding/xml/marshal_test.go

    	{Value: &Domain{Name: []byte("google.com"), Comment: []byte(" &friends ")}, ExpectXML: `<domain>google.com<!-- &friends --></domain>`},
    	{Value: &Book{Title: "Pride & Prejudice"}, ExpectXML: `<book>Pride &amp; Prejudice</book>`},
    	{Value: &Event{Year: -3114}, ExpectXML: `<event>-3114</event>`},
    	{Value: &Movie{Length: 13440}, ExpectXML: `<movie>13440</movie>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    // means we can't see it.
    func argCanBeChecked(pass *analysis.Pass, call *ast.CallExpr, formatArg int, state *formatState) bool {
    	argNum := state.argNums[formatArg]
    	if argNum <= 0 {
    		// Shouldn't happen, so catch it with prejudice.
    		panic("negative arg num")
    	}
    	if argNum < len(call.Args)-1 {
    		return true // Always OK.
    	}
    	if call.Ellipsis.IsValid() {
    		return false // We just can't tell; there could be many more arguments.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top