Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pad000 (0.05 sec)

  1. .golangci.yml

        - unconvert
        - unused
        - usetesting
        - whitespace
      settings:
        misspell:
          locale: US
        staticcheck:
          checks:
            - all
            - -SA1008
            - -SA1019
            - -SA4000
            - -SA9004
            - -ST1000
            - -ST1005
            - -ST1016
            - -U1000
      exclusions:
        generated: lax
        rules:
          - linters:
              - forcetypeassert
            path: _test\.go
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/idn/PunycodeTest.kt

       * overflow and return null.
       */
      @Test fun overflowEncodingOversizedLabel() {
        val a1000 = "a".repeat(1000)
        val a1000MaxCodePoint = a1000 + "\udbff\udfff"
        testEncodeDecode(
          a1000MaxCodePoint,
          "xn--$a1000-nc89312g",
        )
        assertNull(
          Punycode.encode(a1000MaxCodePoint.repeat(2)),
        )
      }
    
      @Test fun invalidPunycode() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    	if err != nil {
    		t.Errorf("AutoMigrate err:%v", err)
    	}
    }
    
    // TODO: ERROR: must have at least one column (SQLSTATE 0A000)
    func TestInvalidCachedPlanSimpleProtocolGaussDB(t *testing.T) {
    	t.Skipf("This test case skipped, because of gaussdb not support creaing empty table(SQLSTATE 0A000)")
    	if DB.Dialector.Name() != "gaussdb" {
    		return
    	}
    
    	db, err := gorm.Open(gaussdb.Open(gaussdbDSN), &gorm.Config{})
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 65.2K bytes
    - Viewed (0)
  4. lib/fips140/v1.0.0.zip

    provided_data) h := hmac.New(hash, K) h.Write(d.V) h.Write([]byte{0x00}) h.Write(entropy) h.Write(nonce) switch s := s.(type) { case plainPersonalization: h.Write(s) case blockAlignedPersonal: l := len(d.V) + 1 + len(entropy) + len(nonce) for _, b := range s { pad000(h, l) h.Write(b) l = len(b) } } K = h.Sum(K[:0]) // V = HMAC (K, V) h = hmac.New(hash, K) h.Write(d.V) d.V = h.Sum(d.V[:0]) // K = HMAC (K, V || 0x01 || provided_data). h.Reset() h.Write(d.V) h.Write([]byte{0x01}) h.Write(entropy) h.Write(nonce) switch...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  5. src/archive/zip/reader_test.go

    			}
    		}
    		r.Close()
    	}
    }
    
    // Verify that this particular malformed zip file is rejected.
    func TestIssue10956(t *testing.T) {
    	data := []byte("PK\x06\x06PK\x06\a0000\x00\x00\x00\x00\x00\x00\x00\x00" +
    		"0000PK\x05\x06000000000000" +
    		"0000\v\x00000\x00\x00\x00\x00\x00\x00\x000")
    	r, err := NewReader(bytes.NewReader(data), int64(len(data)))
    	if err == nil {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Mar 11 22:19:38 UTC 2025
    - 56.6K bytes
    - Viewed (0)
Back to top