Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for new512 (0.2 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. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ISO", Const, 0},
    		{"MakeTable", Func, 0},
    		{"New", Func, 0},
    		{"Size", Const, 0},
    		{"Table", Type, 0},
    		{"Update", Func, 0},
    	},
    	"hash/fnv": {
    		{"New128", Func, 9},
    		{"New128a", Func, 9},
    		{"New32", Func, 0},
    		{"New32a", Func, 0},
    		{"New64", Func, 0},
    		{"New64a", Func, 0},
    	},
    	"hash/maphash": {
    		{"(*Hash).BlockSize", Method, 14},
    		{"(*Hash).Reset", Method, 14},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg hash/crc64, func MakeTable(uint64) *Table
    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
    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