- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 6,364 for classId (0.05 sec)
-
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/SimplexTransferListenerTest.java
RepositorySystemSession session = Mockito.mock(RepositorySystemSession.class); TransferListener delegate = Mockito.mock(TransferListener.class); SimplexTransferListener listener = new SimplexTransferListener(delegate); TransferEvent transferInitiatedEvent = event(session, resource, TransferEvent.EventType.INITIATED);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileAuthentication.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class FileAuthentication extends BsFileAuthentication { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(FileAuthentication.class); private FileConfig fileConfig; public String getId() { return asDocMeta().id(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/NumberConverter.java
return null; } return new DecimalFormat(pattern).format(value); } @Override public boolean isTarget(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); return Number.class.isAssignableFrom(clazz); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java
return null; } return StringConversionUtil.toString((Date) value, pattern); } @Override public boolean isTarget(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); return clazz == java.sql.Timestamp.class; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/MoreFilesTest.java
assertFalse(Files.exists(parent)); assertThrows(IOException.class, () -> MoreFiles.createParentDirectories(file)); } public void testCreateParentDirectories_nonDirectoryParentExists() throws IOException { Path parent = createTempFile(); assertTrue(Files.isRegularFile(parent)); Path file = parent.resolve("foo"); assertThrows(IOException.class, () -> MoreFiles.createParentDirectories(file)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 26.5K bytes - Viewed (0) -
src/main/resources/fess_ds.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="dataStoreFactory" class="org.codelibs.fess.ds.DataStoreFactory"> </component> <component name="indexUpdateCallback" class="org.codelibs.fess.ds.callback.IndexUpdateCallbackImpl" instance="prototype"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 31 09:46:09 UTC 2018 - 404 bytes - Viewed (0) -
docs_src/cookie_param_models/tutorial002_pv1_an_py310.py
from typing import Annotated from fastapi import Cookie, FastAPI from pydantic import BaseModel app = FastAPI() class Cookies(BaseModel): class Config: extra = "forbid" session_id: str fatebook_tracker: str | None = None googall_tracker: str | None = None @app.get("/items/") async def read_items(cookies: Annotated[Cookies, Cookie()]):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 387 bytes - Viewed (0) -
docs_src/header_param_models/tutorial002_pv1_py310.py
from fastapi import FastAPI, Header from pydantic import BaseModel app = FastAPI() class CommonHeaders(BaseModel): class Config: extra = "forbid" host: str save_data: bool if_modified_since: str | None = None traceparent: str | None = None x_tag: list[str] = [] @app.get("/items/") async def read_items(headers: CommonHeaders = Header()):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 396 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
import jakarta.annotation.Resource; /** * @author Keiichi Watanabe */ public class AdminElevatewordAction extends FessAdminAction { public static final String ROLE = "admin-elevateword"; private static final Logger logger = LogManager.getLogger(AdminElevatewordAction.class); // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 18.7K bytes - Viewed (0) -
src/main/resources/fess_rankfusion.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="rankFusionProcessor" class="org.codelibs.fess.rank.fusion.RankFusionProcessor"> <postConstruct name="setSeacher"> <arg> <component class="org.codelibs.fess.rank.fusion.DefaultSearcher"> </component> </arg> </postConstruct> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jun 17 02:41:59 UTC 2023 - 450 bytes - Viewed (0)