Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testnode (0.49 sec)

  1. src/bytes/buffer_test.go

    	for ; n > 0; n-- {
    		m, err := buf.WriteString(fus)
    		if m != len(fus) {
    			t.Errorf(testname+" (fill 2): m == %d, expected %d", m, len(fus))
    		}
    		if err != nil {
    			t.Errorf(testname+" (fill 3): err should always be nil, found err == %s", err)
    		}
    		s += fus
    		check(t, testname+" (fill 4)", buf, s)
    	}
    	return s
    }
    
    // Fill buf through n writes of byte slice fub.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/testdata/callback/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	if len(os.Args) != 2 {
    		fatal("usage: callback testname")
    	}
    	switch os.Args[1] {
    	default:
    		fatal("unknown test %q", os.Args[1])
    	case "Call":
    		testCall()
    	case "Callback":
    		testCallback()
    	}
    	println("OK")
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 1K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg text/template/parse, type TextNode struct
    pkg text/template/parse, type TextNode struct, Text []uint8
    pkg text/template/parse, type TextNode struct, embedded NodeType
    pkg text/template/parse, type Tree struct
    pkg text/template/parse, type Tree struct, Name string
    pkg text/template/parse, type Tree struct, Root *ListNode
    pkg text/template/parse, type VariableNode struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. api/go1.1.txt

    pkg text/template/parse, method (RangeNode) Position() Pos
    pkg text/template/parse, method (StringNode) Position() Pos
    pkg text/template/parse, method (TemplateNode) Position() Pos
    pkg text/template/parse, method (TextNode) Position() Pos
    pkg text/template/parse, method (VariableNode) Position() Pos
    pkg text/template/parse, method (WithNode) Position() Pos
    pkg text/template/parse, type ActionNode struct, embedded Pos
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top