Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bug15 (0.04 sec)

  1. src/text/template/exec_test.go

    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    	// Dereferencing nil pointer while evaluating function arguments should not panic. Issue 7333.
    	{"bug11", "{{valueString .PS}}", "", T{}, false},
    	// 0xef gave constant type float64. Issue 8622.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    	// Dereferencing nil pointer while evaluating function arguments should not panic. Issue 7333.
    	{"bug11", "{{valueString .PS}}", "", T{}, false},
    	// 0xef gave constant type float64. Issue 8622.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/text/template/parse/parse_test.go

    	{"bug0e", "{{range $x := $y := 3}}{{end}}", hasError, ""},
    	// Another bug: variable read must ignore following punctuation.
    	{"bug1a", "{{$x:=.}}{{$x!2}}", hasError, ""},                     // ! is just illegal here.
    	{"bug1b", "{{$x:=.}}{{$x+2}}", hasError, ""},                     // $x+2 should not parse as ($x) (+2).
    	{"bug1c", "{{$x:=.}}{{$x +2}}", noError, "{{$x := .}}{{$x +2}}"}, // It's OK with a space.
    	// dot following a literal value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. test/fixedbugs/bug248.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ignored
    
    // Compile: bug0.go, bug1.go
    // Compile and errorCheck: bug2.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 328 bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	"initializerr.go", // types2 reports extra error
    	"typecheck.go",    // types2 reports extra error at function call
    
    	"fixedbugs/bug176.go", // types2 reports all errors (pref: types2)
    	"fixedbugs/bug195.go", // types2 reports slight different errors, and an extra error
    	"fixedbugs/bug412.go", // types2 produces a follow-on error
    
    	"fixedbugs/issue11614.go", // types2 reports an extra error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top