Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for localFlags (0.04 seconds)

  1. tests/multi_primary_keys_test.go

    	}
    
    	if DB.Model(&blog).Association("LocaleTags").Count() != 3 {
    		t.Fatalf("ZH Blog should has three tags after Replace")
    	}
    
    	if DB.Model(&blog2).Association("LocaleTags").Count() != 2 {
    		t.Fatalf("EN Blog should has two tags after Replace")
    	}
    
    	// Delete
    	DB.Model(&blog).Association("LocaleTags").Delete(tag5)
    
    	if DB.Model(&blog).Association("LocaleTags").Count() != 3 {
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:27:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/reflect/TypesTest.java

        assertThat(ourType.getOwnerType()).isNull();
      }
    
      public void testNewParameterizedType_nonStaticLocalClass() {
        class LocalClass<T> {}
        Type jvmType = new LocalClass<String>() {}.getClass().getGenericSuperclass();
        Type ourType = Types.newParameterizedType(LocalClass.class, String.class);
        assertEquals(jvmType, ourType);
      }
    
      public void testNewParameterizedType_staticLocalClass() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 15.5K bytes
    - Click Count (0)
Back to Top