Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for role_id (0.15 sec)

  1. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertEquals("ROLE_SUPER_ULTRA_MEGA_ADMIN_WITH_VERY_LONG_NAME_FOR_TESTING_PURPOSES", secured.value()[0]);
        }
    
        // Test with many roles
        @Secured({ "ROLE_1", "ROLE_2", "ROLE_3", "ROLE_4", "ROLE_5", "ROLE_6", "ROLE_7", "ROLE_8", "ROLE_9", "ROLE_10" })
        static class ManyRolesClass {
        }
    
        public void test_manyRoles() {
            Secured secured = ManyRolesClass.class.getAnnotation(Secured.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. tests/gaussdb_test.go

    		OtherID string
    		Data    string
    	}
    
    	DB.Migrator().DropTable(&Thing{})
    	DB.Migrator().CreateTable(&Thing{})
    	if err := DB.Exec("ALTER TABLE things ADD CONSTRAINT some_id_other_id_unique UNIQUE (some_id, other_id)").Error; err != nil {
    		t.Error(err)
    	}
    
    	thing := Thing{
    		SomeID:  "1234",
    		OtherID: "1234",
    		Data:    "something",
    	}
    
    	DB.Create(&thing)
    
    	thing2 := Thing{
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            user = new TestFessUser("testuser", null, new String[] {}, new String[] {});
            assertNull(user.getRoleNames());
    
            // Test with roles containing special characters
            roles = new String[] { "role-1", "role_2", "role.3" };
            user = new TestFessUser("testuser", roles, new String[] {}, new String[] {});
            assertArrayEquals(roles, user.getRoleNames());
        }
    
        public void test_getGroupNames() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
    
            @Override
            public void setSessionId(String sessionId) {
                // Do nothing in test
            }
    
            @Override
            public void setRuleId(String ruleId) {
                // Do nothing in test
            }
    
            @Override
            public void setUrl(String url) {
                // Do nothing in test
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top