- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for images (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
/** * Gets the list of images associated with this URL. * @return the list of images, or an empty list if none */ public List<SitemapImage> getImages() { if (images == null) { images = new ArrayList<>(); } return images; } /** * Adds an image to this sitemap URL. * @param image the image to add */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
import java.io.Serializable; /** * Represents an image entry within a sitemap URL. * This class encapsulates the properties of an image as defined in the Google Image Sitemap extension. * * <p> * The image extension allows you to provide additional information about images on your pages. * This can help Google index your images and display them in Google Images search results. * </p> *
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
} /** * Determines the MIME type of an image file based on its file extension. * * @param imageFile the image file * @return the MIME type string */ protected String getImageMimeType(final File imageFile) { final String path = imageFile.getAbsolutePath(); if (path.endsWith(".png")) { return "image/png"; } if (path.endsWith(".gif")) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java
* that customize the look and feel of the search application. */ public class UploadForm { /** * The multipart file containing design resources to be uploaded. * This can include CSS files, JSP templates, images, or other design assets. */ @Required public MultipartFormFile designFile; /** * The name for the design file being uploaded.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form class for thumbnail request parameters. * Contains the document ID and query parameters needed to retrieve thumbnail images. */ public class ThumbnailForm { /** * The document ID for which to retrieve the thumbnail. */ @Required @Size(max = 100) public String docId; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
Files.createDirectories(path.getParent()); Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING); } else if ("images".equals(names[0])) { names[0] = themeName; final Path path = ResourceUtil.getImagePath(names); Files.createDirectories(path.getParent());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
public class SitemapVideo implements Serializable { private static final long serialVersionUID = 1L; /** * A URL pointing to the video thumbnail image file. * Images must be at least 160x90 pixels and at most 1920x1080 pixels. */ private String thumbnailLoc; /** * The title of the video. * Maximum 100 characters. */ private String title; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
README.md
### Docker We provide Docker images on [ghcr.io](https://github.com/orgs/codelibs/packages). We also provide a Docker Compose (YAML) file in [this repository](https://github.com/codelibs/docker-fess/tree/master/compose). ### Browser UI - Search UI: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
docs/fr/README.md
### Docker Nous fournissons des images Docker sur [ghcr.io](https://github.com/orgs/codelibs/packages). Nous fournissons également un fichier Docker Compose (YAML) dans [ce dépôt](https://github.com/codelibs/docker-fess/tree/master/compose). ### Interface Web - Interface de recherche : http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/de/README.md
### Docker Wir bieten Docker-Images auf [ghcr.io](https://github.com/orgs/codelibs/packages) an. Wir stellen auch eine Docker Compose (YAML)-Datei in [diesem Repository](https://github.com/codelibs/docker-fess/tree/master/compose) bereit. ### Browser-Benutzeroberfläche - Suchoberfläche: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.8K bytes - Viewed (0)