- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 458 for resources (0.13 sec)
-
src/main/java/jcifs/util/ResourceManager.java
} /** * Create a managed resource wrapper * * @param <T> resource type * @param resource the resource to wrap * @return managed resource */ public <T extends AutoCloseable> ManagedResource<T> manage(T resource) { String resourceId = registerResource(resource); return new ManagedResource<>(resource, resourceId, this); } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
} /** * Traverses resources contained in a Jar file. * <p> * Of the resources in the Jar file, only those with paths starting with the specified prefix are traversed. * The handler receives the entry name with the prefix removed. For example, if the prefix is <code>/aaa/bbb/</code> * and the Jar file contains a resource <code>/aaa/bbb/ccc/ddd/eee.txt</code>, the handler receivesRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/Traverser.java
*/ void forEach(ClassHandler handler); /** * Searches for resources handled by this instance and calls the handler for each resource. * <p> * If a root directory is specified at instance construction, only resources under the root directory are targeted. * </p> * * @param handler the handler to process resources */ void forEach(ResourceHandler handler); /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java
} /** * Searches for all resources with the specified name from the context class loader. * * @param name * The resource name. Must not be {@literal null} or an empty string. * @return An iterator of URL objects for the resources. If no resources are found, the iterator will be empty. * Resources that the class loader does not have access to will not be included.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
### Test Resources: - `extractor/msoffice/test.doc` - `extractor/msoffice/test.xls` - `extractor/msoffice/test.ppt` - `extractor/test.txt` - `extractor/zip/test.zip` ## Key Improvements Tested ### 1. Resource Management - ✅ Try-with-resources usage in MS Office extractors - ✅ Proper closure of POI objects - ✅ No resource leaks on exception ### 2. Input Validation
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DisposableUtil.java
* * @param disposable * A disposable resource. Must not be {@literal null}. */ public static synchronized void remove(final Disposable disposable) { assertArgumentNotNull("disposable", disposable); disposables.remove(disposable); } /** * Disposes of all registered resources. */ public static synchronized void dispose() {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java
import java.nio.charset.StandardCharsets; import org.junit.Test; /** * Test class for resource loading functionality in Suggester class. * * Tests cover: * - Successful resource loading * - Missing resource error handling * - Resource content validation * - InputStream null safety in try-with-resources */ public class SuggesterResourceLoadingTest { /**Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceException.java
this.requestedResources = -1; } /** * Creates a resource exception with resource details * * @param message the error message * @param errorCode the SMB error code * @param resourceType the type of resource * @param available available resources * @param requested requested resources */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 5.6K bytes - Viewed (0) -
CLAUDE.md
├── helper/ # Cross-cutting utilities ├── crawler/ # Crawling engine ├── sso/ # SSO implementations └── ds/ # Data store connectors src/main/resources/ ├── fess_config.properties # Main config ├── app.xml # DI configuration ├── fess_label_*.properties # UI labels (i18n) ├── fess_message_*.properties # Validation messages (i18n)
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
dbflute_fess/dfprop/dependencyInjectionMap.dfprop
# o dbfluteDiconPackageName: (NotRequired - Default '../resources') # o dbfluteDiconFileName: (NotRequired - Default 'dbflute.dicon') # o j2eeDiconResourceName: (NotRequired - Default 'j2ee.dicon') # # {Java} Lasta Di Only: # o dbfluteDiXmlNamespace: (NotRequired - Default 'dbflute') # o dbfluteDiXmlPackageName: (NotRequired - Default '../resources') # o dbfluteDiXmlFileName: (NotRequired - Default 'dbflute.xml')
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 6.5K bytes - Viewed (0)