Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for new224 (0.15 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    					}
    				} else if wantError {
    					t.Fatal("unexpected success")
    				}
    			})
    		}
    	}
    }
    
    func shardMatch(name string) bool {
    	if *shards <= 1 {
    		return true
    	}
    	h := fnv.New32()
    	io.WriteString(h, name)
    	return int(h.Sum32()%uint32(*shards)) == *shard
    }
    
    func goFiles(t *testing.T, dir string) []string {
    	f, err := os.Open(filepath.Join(testenv.GOROOT(t), "test", dir))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg hash/crc64, func New(*Table) hash.Hash64
    pkg hash/crc64, func Update(uint64, *Table, []uint8) uint64
    pkg hash/crc64, type Table [256]uint64
    pkg hash/fnv, func New32() hash.Hash32
    pkg hash/fnv, func New32a() hash.Hash32
    pkg hash/fnv, func New64() hash.Hash64
    pkg hash/fnv, func New64a() hash.Hash64
    pkg html, func EscapeString(string) string
    pkg html, func UnescapeString(string) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top