Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Ward (0.14 sec)

  1. src/bufio/bufio_test.go

    	b.WriteString("0")                         // easy
    	b.WriteString("123456")                    // still easy
    	b.WriteString("7890")                      // easy after flush
    	b.WriteString("abcdefghijklmnopqrstuvwxy") // hard
    	b.WriteString("z")
    	if err := b.Flush(); err != nil {
    		t.Error("WriteString", err)
    	}
    	s := "01234567890abcdefghijklmnopqrstuvwxyz"
    	if buf.String() != s {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	if parent, ok := jniTypes[dt.Name]; ok {
    		// Try to make sure we're talking about a JNI type, not just some random user's
    		// type that happens to use the same name.
    		// C doesn't have the notion of a package, so it's hard to be certain.
    
    		// Walk up to jobject, checking each typedef on the way.
    		w := dt
    		for parent != "" {
    			t, ok := w.Type.(*dwarf.TypedefType)
    			if !ok || t.Name != parent {
    				return false
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top