Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for SUM (0.01 sec)

  1. docs/debugging/s3-verify/go.sum

    dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1744890333 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 17 11:45:33 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. docs/debugging/inspect/go.sum

    dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1744840456 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 21:54:16 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. docs/debugging/reorder-disks/go.sum

    Harshavardhana <******@****.***> 1716837466 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 165 bytes
    - Viewed (0)
  4. docs/debugging/xattr/go.sum

    Harshavardhana <******@****.***> 1703893961 -0800
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. go.sum

    Jinzhu <******@****.***> 1732179811 +0800
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Nov 21 09:03:31 UTC 2024
    - 491 bytes
    - Viewed (0)
  6. go.sum

    Alex <******@****.***> 1757179999 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/collect/MultisetIteratorBenchmark.java

      @Benchmark
      int hashMultiset(int reps) {
        int sum = 0;
        for (int i = 0; i < reps; i++) {
          for (Object value : hashMultiset) {
            sum += value.hashCode();
          }
        }
        return sum;
      }
    
      @Benchmark
      int linkedHashMultiset(int reps) {
        int sum = 0;
        for (int i = 0; i < reps; i++) {
          for (Object value : linkedHashMultiset) {
            sum += value.hashCode();
          }
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/collect/IteratorBenchmark.java

            sum += array[index].hashCode();
          }
        }
        return sum;
      }
    
      @Benchmark
      int arrayFor(int reps) {
        int sum = 0;
        for (int i = 0; i < reps; i++) {
          for (Object value : array) {
            sum += value.hashCode();
          }
        }
        return sum;
      }
    
      @Benchmark
      int arrayListIndexed(int reps) {
        int sum = 0;
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LongAdder.java

        add(-1L);
      }
    
      /**
       * Returns the current sum. The returned value is NOT an atomic snapshot; invocation in
       * the absence of concurrent updates returns an accurate result, but concurrent updates that occur
       * while the sum is being calculated might not be incorporated.
       *
       * @return the sum
       */
      @Override
      public long sum() {
        long sum = base;
        Cell[] as = cells;
        if (as != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. cmd/bitrot.go

    		}
    		var (
    			hash = algorithm.New()
    			msg  = make([]byte, 0, hash.Size()*hash.BlockSize())
    			sum  = make([]byte, 0, hash.Size())
    		)
    		for i := 0; i < hash.Size()*hash.BlockSize(); i += hash.Size() {
    			hash.Write(msg)
    			sum = hash.Sum(sum[:0])
    			msg = append(msg, sum...)
    			hash.Reset()
    		}
    		if !bytes.Equal(sum, checksum) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Feb 26 19:26:13 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top