Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for 12313123 (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns the set of all subsets of {@code set} of size {@code size}. For example, {@code
       * combinations(ImmutableSet.of(1, 2, 3), 2)} returns the set {@code {{1, 2}, {1, 3}, {2, 3}}}.
       *
       * <p>Elements appear in these subsets in the same iteration order as they appeared in the input
       * set. The order in which these subsets appear in the outer set is undefined.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 81.6K bytes
    - Click Count (0)
  2. lib/fips140/v1.1.0-rc1.zip

    * uint64(fieldFromMontgomery(b))) % q) if got != exp { t.Fatalf("%d * %d = %d, expected %d", a, b, got, exp) } } } } func TestFieldToMontgomer(t *testing.T) { // fieldToMontgomery should reject inputs ≥ q. inputs := []uint32{ q, q + 1, q + 2, 1<<23 - 1, 1 << 23, q + 1<<23, q + 1<<31, ^uint32(0), } for _, in := range inputs { if _, err := fieldToMontgomery(in); err == nil { t.Fatalf("fieldToMontgomery(%d) did not return an error", in) } } } func TestFieldMulSub(t *testing.T) { for _, a := range interestingValues()...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
Back to Top