- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 62 for Locations (0.04 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
return getPath("WEB-INF/", "env/" + envName, names); } /** * Gets the path by trying multiple locations in order of preference. * First tries to get the real path from servlet context, then checks various * fallback locations including source and target directories. * * @param root the root directory (e.g., "WEB-INF/")
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
CLAUDE.md
- [ ] Resource cleanup (AutoCloseable) - [ ] Thread-safe if needed - [ ] Code formatted (`mvn formatter:format`) - [ ] License headers (`mvn license:format`) --- ## Quick Reference ### Key File Locations **Core**: `fess-crawler/src/main/java/org/codelibs/fess/crawler/` - `Crawler.java`, `CrawlerContext.java`, `CrawlerThread.java` **Clients**: `fess-crawler/src/main/java/org/codelibs/fess/crawler/client/`
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
README.md
## Migration from another search provider Please see [MIGRATION.md](MIGRATION.md). ## Data Store Currently, Fess supports crawling the following [storage locations and APIs](https://fess.codelibs.org/15.3/admin/dataconfig-guide.html): - [Confluence/Jira](https://github.com/codelibs/fess-ds-atlassian) - [Box](https://github.com/codelibs/fess-ds-box)
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
import jcifs.SmbConstants; import jcifs.SmbResourceLocator; import jcifs.internal.util.StringUtil; import jcifs.netbios.NbtAddress; import jcifs.netbios.UniAddress; /** * * * This mainly tracks two locations: * - canonical URL path: path component of the URL: this is used to reconstruct URLs to resources and is not adjusted by
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* @return whether to use strict resource lifecycle */ boolean isStrictResourceLifecycle(); /** * This is solely intended for debugging * * @return whether to track the locations from which resources were created */ boolean isTraceResourceUsage(); /** * Checks if compound requests are allowed for the specified command *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
pom.xml
<sources> <source> <location>${project.build.directory}/tomcat-lib</location> </source> </sources> </mapping> <mapping> <directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory> <sources> <source> <location>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess</location> <includes>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
this.caption = caption; } /** * Gets the geographic location of the image. * @return the geographic location */ public String getGeoLocation() { return geoLocation; } /** * Sets the geographic location of the image. * @param geoLocation the geographic location to set */ public void setGeoLocation(final String geoLocation) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java
import java.io.Serializable; /** * The Sitemap interface represents a sitemap entity with location and last modification date. * It extends the Serializable interface to allow sitemap objects to be serialized. */ public interface Sitemap extends Serializable { /** * Retrieves the location (URL) of the sitemap. * * @return the location of the sitemap as a String. */ String getLoc(); /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
*/ public SitemapVideo() { // Default constructor } /** * Gets the thumbnail location URL. * @return the thumbnail URL */ public String getThumbnailLoc() { return thumbnailLoc; } /** * Sets the thumbnail location URL. * @param thumbnailLoc the thumbnail URL to set */ public void setThumbnailLoc(final String thumbnailLoc) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java
/** * The storage path where the file should be uploaded. * If not specified, the file will be stored in the default location. */ public String path; /** * The multipart file to be uploaded to the storage system. * This file will be stored in the specified path or default location. */ @Required public MultipartFormFile file; /** * Default constructor for UploadForm.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)