- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 329 for Creation (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
* * @param form the create form containing synonym data * @param hook the validation error hook for handling errors * @return OptionalEntity containing the created synonym item or empty if creation failed */ protected OptionalEntity<SynonymItem> createSynonymItem(final CreateForm form, final VaErrorHook hook) { try { return createSynonymItem(this, form, hook);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
@Resource public SearchEngineClient searchEngineClient; /** * A nested class for parsing command-line options. */ protected static class Options { /** The session ID for the suggest creation process. */ @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") protected String sessionId; /** The name of the suggest creator instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
t.getClass().getCanonicalName(), t.getMessage()); if (logger.isDebugEnabled()) { logger.debug("Details for failed thumbnail creation.", t); } } finally { if (!created) { updateThumbnailField(thumbnailId, StringUtil.EMPTY);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
} /** * Record an RDMA operation error */ public void recordError() { operationErrors.incrementAndGet(); } /** * Record a new RDMA connection creation */ public void recordConnectionCreated() { connectionsCreated.incrementAndGet(); connectionsActive.incrementAndGet(); } /** * Record RDMA connection closure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
} // Create new transport SmbTransport newTransport = manager.createTransport(channel.getLocalInterface(), channel.getRemoteInterface()); // Check if transport creation failed if (newTransport == null) { throw new IOException("Failed to create new transport"); } // Reconnect channel.setState(ChannelState.CONNECTING);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
if (pom != null) { request.setMultiModuleProjectDirectory(pom.getParentFile()); } return request; } // layer the creation of a project builder configuration with a request, but this will need to be // a Maven subclass because we don't want to couple maven to the project builder which we need to // separate.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
} /** * Inner class for handling updates to the character mapping file. * This class manages the temporary file creation, writing operations, * and atomic updates to ensure data consistency during modifications. */ protected class MappingUpdater implements Closeable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
})).status(Status.OK).result()); } // POST /api/admin/fileauth/setting /** * Creates a new file authentication setting. * Validates that the associated file config ID is valid before creation. * * @param body file authentication setting data to create * @return JSON response with created setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
*/ public LuceneQueryParser(final String f, final Analyzer a) { super(f, a); defaultField = f; } /** * Overrides the field query creation to handle quoted queries specially. * For quoted queries on the default field, creates a phrase query instead of a term query. * * @param field the field to query
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
* @throws IllegalArgumentException if any of the parameters were invalid */ public PercentEscaper(String safeChars, boolean plusForSpace) { // TODO(dbeaumont): Switch to static factory methods for creation now that class is final. // TODO(dbeaumont): Support escapers where alphanumeric chars are not safe. checkNotNull(safeChars); // eager for GWT. // Avoid any misunderstandings about the behavior of this escaper
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0)