Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 567 for imagen (0.04 seconds)

  1. docs/en/docs/img/tutorial/security/image03.png

    image03.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 90.3K bytes
    - Click Count (0)
  2. docs/en/docs/img/tutorial/sql-databases/image01.png

    image01.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Oct 09 19:44:42 GMT 2024
    - 68.1K bytes
    - Click Count (0)
  3. docs/en/docs/img/deployment/deta/image01.png

    image01.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Nov 05 20:50:37 GMT 2020
    - 39.1K bytes
    - Click Count (0)
  4. docs/en/docs/img/python-types/image03.png

    image03.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 41.9K bytes
    - Click Count (0)
  5. docs/bucket/notifications/README.md

    ```
    # Create bucket named `images` in myminio
    mc mb myminio/images
    # Add notification configuration on the `images` bucket using the MySQL ARN. The --suffix argument filters events.
    mc event add myminio/images arn:minio:sqs::1:postgresql --suffix .jpg
    # Print out the notification configuration on the `images` bucket.
    mc event list myminio/images
    mc event list myminio/images
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 84.2K bytes
    - Click Count (0)
  6. 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
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 13 13:34:36 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  7. 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>
     *
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 13 13:34:36 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/body-nested-models.md

    ///
    
    ## Bodys aus reinen Listen { #bodies-of-pure-lists }
    
    Wenn das äußerste Element des JSON-Bodys, das Sie erwarten, ein JSON-`array` (eine Python-`list`) ist, können Sie den Typ im Funktionsparameter deklarieren, mit der gleichen Syntax wie in Pydantic-Modellen:
    
    ```Python
    images: list[Image]
    ```
    
    so wie in:
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  9. 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;
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  10. docs_src/body_nested_models/tutorial006_py39.py

    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    class Item(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        tax: Union[float, None] = None
        tags: set[str] = set()
        images: Union[list[Image], None] = None
    
    
    @app.put("/items/{item_id}")
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 519 bytes
    - Click Count (0)
Back to Top