Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for 12313123 (0.06 seconds)

  1. tests/test_tutorial/test_python_types/test_tutorial011.py

        call_args = [str(arg.args[0]) for arg in mock_print.call_args_list]
        assert call_args == [
            "id=123 name='John Doe' signup_ts=datetime.datetime(2017, 6, 1, 12, 22) friends=[1, 2, 3]",
            "123",
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 691 bytes
    - Click Count (0)
  2. src/bytes/bytes_test.go

    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    	{faces, "☹", -1, []string{"☺☻", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"123", "", 2, []string{"1", "23"}},
    	{"123", "", 17, []string{"1", "2", "3"}},
    	{"bT", "T", math.MaxInt / 4, []string{"b", ""}},
    	{"\xff-\xff", "", -1, []string{"\xff", "-", "\xff"}},
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 23 23:54:14 GMT 2025
    - 62.9K bytes
    - Click Count (0)
  3. 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