Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for e0a080 (0.29 sec)

  1. src/bytes/bytes_test.go

    	{"\u0250\u0250\u0250\u0250\u0250", []byte("\u2C6F\u2C6F\u2C6F\u2C6F\u2C6F")}, // grows one byte per char
    	{"a\u0080\U0010FFFF", []byte("A\u0080\U0010FFFF")},                           // test utf8.RuneSelf and utf8.MaxRune
    }
    
    var lowerTests = []StringTest{
    	{"", []byte("")},
    	{"abc", []byte("abc")},
    	{"AbC123", []byte("abc123")},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun fragmentPercentEncodedNonAscii() {
        val url = parse("http://host/#%C2%80")
        assertThat(url.toString()).isEqualTo("http://host/#%C2%80")
        assertThat(url.fragment).isEqualTo("\u0080")
        assertThat(url.encodedFragment).isEqualTo("%C2%80")
      }
    
      @Test
      fun fragmentPercentEncodedPartialCodePoint() {
        val url = parse("http://host/#%80")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top