- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 7,602 for Class (0.08 sec)
-
src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java
import org.junit.Test; /** * @author higa */ public class BeanDescFactoryTest { /** * @throws Exception */ @Test public void testGetBeanDesc() throws Exception { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyBean.class); assertThat(BeanDescFactory.getBeanDesc(MyBean.class), is(sameInstance(beanDesc))); } /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<tika:uti>com.sun.java-archive</tika:uti> <sub-class-of type="application/zip"/> <glob pattern="*.jar"/> </mime-type> <mime-type type="application/vnd.android.package-archive"> <sub-class-of type="application/java-archive"/> <glob pattern="*.apk"/> </mime-type> <mime-type type="application/x-tika-java-enterprise-archive"> <sub-class-of type="application/java-archive"/> <glob pattern="*.ear"/>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Sep 21 06:46:43 UTC 2023 - 298.5K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
return sourceLevel; } </code> </codeSegment> </codeSegments> </class> <class> <name>IdentifiableBase</name> <superClass>TrackableBase</superClass> <version>1.0.0+</version> <description> Base class for {@code Mirror}, {@code Profile}, {@code Proxy} and {@code Server}. </description> <fields> <field>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
null -> None None::class.simpleName -> None TestDistribution::class.simpleName -> TestDistribution TeamCityParallelTests::class.simpleName -> TeamCityParallelTests(methodJsonObject.getIntValue("numberOfBatches")) else -> throw IllegalArgumentException("Unknown parallelization method") } } } } class FunctionalTest( model: CIBuildModel,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 06:14:43 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java
} @Override protected Class<? extends FavoriteLog> typeOfSelectedEntity() { return FavoriteLog.class; } @Override protected Class<FavoriteLog> typeOfHandlingEntity() { return FavoriteLog.class; } @Override protected Class<FavoriteLogCB> typeOfHandlingConditionBean() { return FavoriteLogCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java
} @Override protected Class<? extends Role> typeOfSelectedEntity() { return Role.class; } @Override protected Class<Role> typeOfHandlingEntity() { return Role.class; } @Override protected Class<RoleCB> typeOfHandlingConditionBean() { return RoleCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsBadWordBhv.java
} @Override protected Class<? extends BadWord> typeOfSelectedEntity() { return BadWord.class; } @Override protected Class<BadWord> typeOfHandlingEntity() { return BadWord.class; } @Override protected Class<BadWordCB> typeOfHandlingConditionBean() { return BadWordCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends CrawlingInfoParam> typeOfSelectedEntity() { return CrawlingInfoParam.class; } @Override protected Class<CrawlingInfoParam> typeOfHandlingEntity() { return CrawlingInfoParam.class;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java
} @Override protected Class<? extends PathMapping> typeOfSelectedEntity() { return PathMapping.class; } @Override protected Class<PathMapping> typeOfHandlingEntity() { return PathMapping.class; } @Override protected Class<PathMappingCB> typeOfHandlingConditionBean() { return PathMappingCB.class; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
tests/test_response_model_data_filter.py
from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() class UserBase(BaseModel): email: str class UserCreate(UserBase): password: str class UserDB(UserBase): hashed_password: str class PetDB(BaseModel): name: str owner: UserDB class PetOut(BaseModel): name: str owner: UserBase
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 1.7K bytes - Viewed (0)