- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for imagen (0.03 sec)
-
src/main/resources/fess_label_es.properties
labels.facet_filetype_mp4a=Audio MP4A labels.facet_filetype_oga=Audio OGA labels.facet_filetype_wepb=Imagen WEBP labels.facet_filetype_bmp=Imagen BMP labels.facet_filetype_ico=Imagen ICO labels.facet_filetype_png=Imagen PNG labels.facet_filetype_svg=Imagen SVG labels.facet_filetype_tiff=Imagen TIFF labels.facet_filetype_jpg=Imagen JPEG labels.facet_filetype_archive=Archivo labels.facet_filetype_bat=Archivo por lotes
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/resources/fess_message_es.properties
errors.design_jsp_file_does_not_exist = El archivo JSP no existe. errors.design_file_name_is_not_found = No se ha especificado el nombre del archivo. errors.failed_to_write_design_image_file = No se pudo cargar el archivo de imagen. errors.failed_to_update_jsp_file = No se pudo actualizar el archivo JSP. errors.design_file_name_is_invalid = El nombre del archivo no es vĂ¡lido. errors.design_file_is_unsupported_type = Este tipo de archivo no es compatible.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
*/ package org.codelibs.fess.thumbnail.impl; import java.awt.Image; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.Map; import javax.imageio.ImageIO; import javax.imageio.ImageReadParam; import javax.imageio.ImageReader; import javax.imageio.stream.ImageInputStream; import org.apache.logging.log4j.LogManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/recipes.md
fun run() { // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image val requestBody = MultipartBody.Builder() .setType(MultipartBody.FORM) .addFormDataPart("title", "Square Logo") .addFormDataPart("image", "logo-square.png", File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG)) .build()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} return false; } /** * Gets the image filename for a document based on its document map. * * @param docMap the document data map * @return the generated image filename */ protected String getImageFilename(final Map<String, Object> docMap) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
} /** * Gets the path to image files directory. * * @param names the path components to append to the images directory * @return the Path object pointing to the images directory */ public static Path getImagePath(final String... names) { return getPath(StringUtil.EMPTY, "images", names); } /** * Gets the path to CSS files directory.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
&& checkFileType(uploadedFileName, fessConfig.getSupportedUploadedMediaExtentionsAsArray())) { uploadFile = new File(getServletContext().getRealPath("/images/" + fileName)); } else if (checkFileType(fileName, fessConfig.getSupportedUploadedCssExtentionsAsArray()) && checkFileType(uploadedFileName, fessConfig.getSupportedUploadedCssExtentionsAsArray())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
* Add an entry to the salt config to allow Debian jessie on GCE. ([#25123](https://github.com/kubernetes/kubernetes/pull/25123), [@jlewi](https://github.com/jlewi)) * As with the existing Wheezy image on GCE, docker is expected to already be installed in the image. * Fix DeletingLoadBalancer event generation. ([#24833](https://github.com/kubernetes/kubernetes/pull/24833), [@a-robinson](https://github.com/a-robinson))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
zos.putNextEntry(jsEntry); zos.write("console.log('test');".getBytes()); zos.closeEntry(); // Images ZipEntry imgEntry = new ZipEntry("images/logo.png"); zos.putNextEntry(imgEntry); zos.write("fake png data".getBytes()); zos.closeEntry(); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0)