- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 187 for Sum (0.01 sec)
-
lib/hg/goreposum.py
# the hashes of all the branch heads, so we can use a hash of # all those branch names and heads as a conservative snapshot # of the entire remote repo state, and use that as the tag sum. # Any change on the server then invalidates the tag sum, # even if it didn't have anything to do with tags, but at least # we will avoid re-cloning a server when there have been no # changes at all. #
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Nov 11 15:21:02 UTC 2025 - 2.4K bytes - Viewed (0) -
tests/.gitignore
go.sum...
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Tue Jul 28 06:46:48 UTC 2020 - 7 bytes - Viewed (0) -
internal/hash/crc.go
// Modified for hash/crc64 by Klaus Post, 2024. func gf2MatrixTimes(mat []uint64, vec uint64) uint64 { var sum uint64 for vec != 0 { if vec&1 != 0 { sum ^= mat[0] } vec >>= 1 mat = mat[1:] } return sum } func gf2MatrixSquare(square, mat []uint64) { if len(square) != len(mat) { panic("square matrix size mismatch") } for n := range mat {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 5.8K bytes - Viewed (0) -
.gitattributes
**/generated.pb.go linguist-generated=true **/generated.proto **/types_swagger_doc_generated.go linguist-generated=true api/openapi-spec/*.json linguist-generated=true api/openapi-spec/**/*.json linguist-generated=true
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Mon Oct 28 20:33:50 UTC 2024 - 510 bytes - Viewed (0) -
tensorflow/c/c_api_function_test.cc
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Mon Nov 17 00:00:38 UTC 2025 - 63.6K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapTest.java
} public void testSum() { AtomicLongMap<Object> map = AtomicLongMap.create(); long sum = 0; for (int i = 0; i < ITERATIONS; i++) { map.put(new Object(), i); sum += i; } assertEquals(ITERATIONS, map.size()); assertEquals(sum, map.sum()); } public void testEmpty() { AtomicLongMap<String> map = AtomicLongMap.create();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/LongAddable.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 816 bytes - Viewed (0) -
lib/fips140/README.md
The file x.txt (for example, inprocess.txt, certified.txt) defines the meaning of the FIPS version alias x, listing the exact version to use. The zip files are created by cmd/go/internal/fips140/mkzip.go. The fips140.sum file lists checksums for the zip files.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Nov 20 20:28:34 UTC 2024 - 416 bytes - Viewed (0) -
go.env
# The environment overrides everything else. # Use the Go module mirror and checksum database by default. # See https://proxy.golang.org for details. GOPROXY=https://proxy.golang.org,direct GOSUMDB=sum.golang.org # Automatically download newer toolchains as directed by go.mod files. # See https://go.dev/doc/toolchain for details.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Jun 06 19:18:46 UTC 2023 - 505 bytes - Viewed (0) -
docs_src/custom_request_and_route/tutorial002_an_py39.py
return custom_route_handler app = FastAPI() app.router.route_class = ValidationErrorLoggingRoute @app.post("/") async def sum_numbers(numbers: Annotated[list[int], Body()]):Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 08:55:32 UTC 2025 - 947 bytes - Viewed (0)