Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 992Z (0.31 sec)

  1. tests/tests_test.go

    	. "gorm.io/gorm/utils/tests"
    )
    
    var DB *gorm.DB
    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	postgresDSN  = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai"
    	sqlserverDSN = "sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm"
    	tidbDSN      = "root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local"
    )
    
    func init() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8_generic.go

    // the first register with the N copies of const1, the second
    // with N copies of const2, and so on, and then running the operations.
    //
    // Each iteration of ChaCha8Rand operates over 32 bytes of input and
    // produces 992 bytes of RNG output, plus 32 bytes of input for the next
    // iteration.
    //
    // The 32 bytes of input are used as a ChaCha8 key, with a zero nonce, to
    // produce 1024 bytes of output (16 blocks, with counters 0 to 15).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. .github/workflows/tests.yml

            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=postgres GORM_DSN="user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai" ./tests/tests_all.sh
    
      sqlserver:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run test in macOS and windows
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv10-ECDHE-ECDSA-AES

    000002f0  44 74 e0 04 2c ab 1c 23  91 dc 06 36 ff 19 a1 60  |Dt..,..#...6...`|
    00000300  19 d4 e5 d3 78 f5 ed d8  09 7b de 61 6f 65 2c 69  |....x....{.aoe,i|
    00000310  a1 d2 5d 07 bf 99 26 2b  70 fa 34 26 30 41 59 3b  |..]...&+p.4&0AY;|
    00000320  bc a3 10 9c 92 fa 60 a7  df ea e4 8a 3a 76 16 03  |......`.....:v..|
    00000330  01 00 04 0e 00 00 00                              |.......|
    >>> Flow 3 (client to server)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000060  00 00 16 03 03 02 66 0b  00 02 62 00 02 5f 00 02  |......f...b.._..|
    00000070  5c 30 82 02 58 30 82 01  8d a0 03 02 01 02 02 11  |\0..X0..........|
    00000080  00 f2 99 26 eb 87 ea 8a  0d b9 fc c2 47 34 7c 11  |...&........G4|.|
    00000090  b0 30 41 06 09 2a 86 48  86 f7 0d 01 01 0a 30 34  |.0A..*.H......04|
    000000a0  a0 0f 30 0d 06 09 60 86  48 01 65 03 04 02 01 05  |..0...`.H.e.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. test/inline_big.go

    	a[979] = 0
    	a[980] = 0
    	a[981] = 0
    	a[982] = 0
    	a[983] = 0
    	a[984] = 0
    	a[985] = 0
    	a[986] = 0
    	a[987] = 0
    	a[988] = 0
    	a[989] = 0
    	a[990] = 0
    	a[991] = 0
    	a[992] = 0
    	a[993] = 0
    	a[994] = 0
    	a[995] = 0
    	a[996] = 0
    	a[997] = 0
    	a[998] = 0
    	a[999] = 0
    	x := small(a)  // ERROR "inlining call to small"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe.go

    	t1.Multiply(x, &t1)      // x^9
    	t0.Multiply(&t0, &t1)    // x^11
    	t0.Square(&t0)           // x^22
    	t0.Multiply(&t1, &t0)    // x^31
    	t1.Square(&t0)           // x^62
    	for i := 1; i < 5; i++ { // x^992
    		t1.Square(&t1)
    	}
    	t0.Multiply(&t1, &t0)     // x^1023 -> 1023 = 2^10 - 1
    	t1.Square(&t0)            // 2^11 - 2
    	for i := 1; i < 10; i++ { // 2^20 - 2^10
    		t1.Square(&t1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    00000330  e4 2b 4c d9 d5 b3 79 83  d3 75 cc a4 47 01 74 0b  |.+L...y..u..G.t.|
    00000340  35 84 be 59 bd 17 03 03  00 99 72 3e 53 38 42 12  |5..Y......r>S8B.|
    00000350  6f 99 20 c4 98 59 48 61  e0 13 80 8e 96 25 96 f8  |o. ..YHa.....%..|
    00000360  c9 c8 35 9c 35 c0 13 d7  34 24 0b 6e 59 4f 1b 77  |..5.5...4$.nYO.w|
    00000370  1f 9a 71 6b 6b dc 71 23  b1 a2 e8 1e c2 a0 b1 8c  |..qkk.q#........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x53, 0x0, 0x3, 1027, 0x20}
    	case AFCVTSW:
    		return &inst{0x53, 0x0, 0x0, -768, 0x68}
    	case AFCVTSWU:
    		return &inst{0x53, 0x0, 0x1, -767, 0x68}
    	case AFCVTWD:
    		return &inst{0x53, 0x0, 0x0, -992, 0x61}
    	case AFCVTWQ:
    		return &inst{0x53, 0x0, 0x0, -928, 0x63}
    	case AFCVTWS:
    		return &inst{0x53, 0x0, 0x0, -1024, 0x60}
    	case AFCVTWUD:
    		return &inst{0x53, 0x0, 0x1, -991, 0x61}
    	case AFCVTWUQ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_table_ppc64le.s

    	/* x^198720 mod p(x), x^198656 mod p(x) */
    DATA ·IEEEConst+976(SB)/8,$0x000000003cd63ac4
    DATA ·IEEEConst+984(SB)/8,$0x000000018c40baf4
    
    	/* x^197696 mod p(x), x^197632 mod p(x) */
    DATA ·IEEEConst+992(SB)/8,$0x00000001bf47d352
    DATA ·IEEEConst+1000(SB)/8,$0x000000004cd390d4
    
    	/* x^196672 mod p(x), x^196608 mod p(x) */
    DATA ·IEEEConst+1008(SB)/8,$0x000000018dc1d708
    DATA ·IEEEConst+1016(SB)/8,$0x00000001e4ece95a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top