{"id":23192058,"url":"https://github.com/ztrue/hashmap-test","last_synced_at":"2025-10-25T19:18:17.799Z","repository":{"id":72787354,"uuid":"147614246","full_name":"ztrue/hashmap-test","owner":"ztrue","description":"Golang test work: hashmap implementation.","archived":false,"fork":false,"pushed_at":"2018-09-06T03:57:10.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T07:08:44.572Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ztrue.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-06T03:47:02.000Z","updated_at":"2019-02-10T12:12:13.000Z","dependencies_parsed_at":"2023-09-18T04:46:09.268Z","dependency_job_id":null,"html_url":"https://github.com/ztrue/hashmap-test","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ztrue/hashmap-test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztrue%2Fhashmap-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztrue%2Fhashmap-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztrue%2Fhashmap-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztrue%2Fhashmap-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ztrue","download_url":"https://codeload.github.com/ztrue/hashmap-test/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ztrue%2Fhashmap-test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275357582,"owners_count":25450361,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-16T02:00:10.229Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-18T12:19:44.285Z","updated_at":"2025-09-16T03:35:21.472Z","avatar_url":"https://github.com/ztrue.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HashMap Test Work\nRequirements (task 1): https://github.com/trafficstars/test-job\n\n`make install` – install dependencies (testify)\n\n`make test` – run unit tests\n\n`make bench` – run benchmarks\n\n```\nBenchmarkHashMap/16-SET-8           1000000    1894 ns/op    16 B/op    1 allocs/op\nBenchmarkHashMap/16-GET-8           1000000    1828 ns/op     3 B/op    0 allocs/op\nBenchmarkHashMap/16-UNSET-8         1000000      99.5 ns/op   3 B/op    0 allocs/op\n\nBenchmarkHashMap/64-SET-8           1000000     802 ns/op    15 B/op    1 allocs/op\nBenchmarkHashMap/64-GET-8           1000000     747 ns/op     3 B/op    0 allocs/op\nBenchmarkHashMap/64-UNSET-8         1000000      98.5 ns/op   3 B/op    0 allocs/op\n\nBenchmarkHashMap/128-SET-8          1000000     486 ns/op    15 B/op    1 allocs/op\nBenchmarkHashMap/128-GET-8          1000000     451 ns/op     3 B/op    0 allocs/op\nBenchmarkHashMap/128-UNSET-8        1000000      99.2 ns/op   3 B/op    0 allocs/op\n\nBenchmarkHashMap/1024-SET-8         1000000     214 ns/op    15 B/op    1 allocs/op\nBenchmarkHashMap/1024-GET-8         1000000     194 ns/op     3 B/op    0 allocs/op\nBenchmarkHashMap/1024-UNSET-8       1000000      99.2 ns/op   3 B/op    0 allocs/op\n\nBenchmarkHashMap/16384-SET-8        1000000     160 ns/op    15 B/op    1 allocs/op\nBenchmarkHashMap/16384-GET-8        1000000     142 ns/op     3 B/op    0 allocs/op\nBenchmarkHashMap/16384-UNSET-8      1000000     100 ns/op     3 B/op    0 allocs/op\n\nBenchmarkNativeMap/SET-8            1000000     136 ns/op    15 B/op    1 allocs/op\nBenchmarkNativeMap/GET-8            1000000     116 ns/op     3 B/op    0 allocs/op\nBenchmarkNativeMap/UNSET-8          1000000      69.6 ns/op   3 B/op    0 allocs/op\n\nBenchmarkDefaultHashFunc/16-8       1000000      91.4 ns/op   3 B/op    0 allocs/op\nBenchmarkDefaultHashFunc/64-8       1000000      95.9 ns/op   3 B/op    0 allocs/op\nBenchmarkDefaultHashFunc/128-8      1000000      90.0 ns/op   3 B/op    0 allocs/op\nBenchmarkDefaultHashFunc/1024-8     1000000      91.0 ns/op   3 B/op    0 allocs/op\nBenchmarkDefaultHashFunc/16384-8    1000000      91.0 ns/op   3 B/op    0 allocs/op\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztrue%2Fhashmap-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fztrue%2Fhashmap-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztrue%2Fhashmap-test/lists"}