- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 390 for dangling (0.05 sec)
-
docs/en/docs/tutorial/static-files.md
/// ### What is "Mounting" { #what-is-mounting } "Mounting" means adding a complete "independent" application in a specific path, that then takes care of handling all the sub-paths. This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
import org.apache.maven.api.annotations.Nullable; /** * Represents a source for loading Maven Project Object Model (POM) files. This interface * extends the basic {@link Source} interface with specific functionality for handling * Maven POM files and resolving related project POMs. * * <p>The interface provides two types of sources:</p> * <ul> * <li>Build sources: Used for POM files of projects being built by Maven in the filesystem.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.opensearch.runner.net.OpenSearchCurl; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.PostConstruct; /** * Manager class for handling dictionary files in the Fess search system. * This class provides functionality to retrieve, store, and manage various * dictionary files such as synonyms, kuromoji, protwords, and stopwords.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/https/Handler.java
*/ package jcifs.smb1.https; /** * A <code>URLStreamHandler</code> used to provide NTLM authentication * capabilities to the default HTTPS handler. This acts as a wrapper, * handling authentication and passing control to the underlying * stream handler. */ public class Handler extends jcifs.smb1.http.Handler { /** * The default HTTPS port (<code>443</code>). */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* * This exception is used to indicate errors that occur during the execution * of SSO authentication and authorization processes. It extends FessSystemException * to provide consistent error handling within the Fess system for SSO-related * processing failures such as token validation errors, communication failures * with SSO providers, or configuration issues. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
Una alternativa que podrías usar para capturar excepciones (y posiblemente también lanzar otra `HTTPException`) es crear un [Manejador de Excepciones Personalizado](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank}. ## Dependencias con `yield` y `except`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
import jakarta.annotation.PostConstruct; /** * Implementation of IndexUpdateCallback for handling document indexing operations. * This class manages the process of updating the search index with documents from * data stores, including bulk operations, document transformation, and error handling. */ public class IndexUpdateCallbackImpl implements IndexUpdateCallback {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/help/HelpAction.java
import org.codelibs.fess.app.web.base.SearchForm; import org.codelibs.fess.util.RenderDataUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling help page requests in the Fess search application. * This class extends FessSearchAction to provide help functionality including * authentication checks and form parameter setup for the help interface. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarInputStreamUtil.java
try { return new JarInputStream(is); } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Method that wraps exception handling for {@link JarInputStream#getNextJarEntry()}. * * @param is the input stream (must not be {@literal null}) * @return {@link JarEntry} * @throws IORuntimeException if an {@link IOException} occurs
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
for (ProtwordsItem listItem : list) { assertFalse("test1".equals(listItem.getInput())); } } public void test_reload_withIOException() { // This test verifies error handling during reload // We'll test with invalid data or missing file try { File nonExistentFile = new File("non_existent_file.txt");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)