Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 160 for imagem (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.20.md

    - Build/lib/release: Explicitly use '--platform' in building server images
      
      When we switched to go-runner for building the apiserver,
      controller-manager, and scheduler server components, we no longer
      reference the individual architectures in the image names, specifically
      in the 'FROM' directive of the server image Dockerfiles.
      
      As a result, server images for non-amd64 images copy in the go-runner
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/lang/ca.js

    número de targeta de crèdit proporcionat no és vàlid",badCVV:"CVV proporcionat no és vàlid",wrongFileDim:"Les dimensions de la imatge no són vàlides,",imageTooTall:"l'alçada de la imatge no pot ser major a",imageTooWide:"l'amplada de la imatge no pot ser major a",imageTooSmall:"la imatge és massa petita",min:"min.",max:"màx.",imageRatioNotAccepted:"La proporció de la imatge (alçada x amplada) no és vàlida"}})}(a,window)});...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="https://www.iana.org/assignments/media-types/image/heif">HEIF image format</a>.
       *
       * @since 28.1
       */
      public static final MediaType HEIF = createConstant(IMAGE_TYPE, "heif");
    
      /**
       * <a href="https://tools.ietf.org/html/rfc3745">JP2K image format</a>.
       *
       * @since 28.1
       */
      public static final MediaType JP2K = createConstant(IMAGE_TYPE, "jp2");
    
      /* audio types */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  4. .devcontainer/devcontainer.json

    {
      "image": "mcr.microsoft.com/devcontainers/java:21-bookworm",
      "features": {
          "ghcr.io/devcontainers/features/java:1": {
              "version": "17"
          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 18 23:34:57 UTC 2024
    - 429 bytes
    - Viewed (0)
  5. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        return result;
      }
    
      private String contentType(String path) {
        if (path.endsWith(".png")) return "image/png";
        if (path.endsWith(".jpg")) return "image/jpeg";
        if (path.endsWith(".jpeg")) return "image/jpeg";
        if (path.endsWith(".gif")) return "image/gif";
        if (path.endsWith(".html")) return "text/html; charset=utf-8";
        if (path.endsWith(".txt")) return "text/plain; charset=utf-8";
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jan 02 02:50:44 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. okhttp/src/jvmMain/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

     */
    
    package okhttp3.internal.graal
    
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    import org.graalvm.nativeimage.hosted.Feature
    
    /**
     * Automatic configuration of OkHttp for native images.
     *
     * Currently, includes all necessary resources.
     */
    class OkHttpFeature : Feature {
      @IgnoreJRERequirement
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess?) = Unit
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 991 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            paramMap.put("url_exclude_pattern", pattern);
    
            boolean result1 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/image.jpg");
            boolean result2 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/image.png");
    
            assertFalse(result1);
            assertTrue(result2);
        }
    
        public void test_isUrlCrawlable_complexExcludePattern() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    - kubeadm: make sure pre-pulled kube-proxy image and the one specified in its daemon set manifest are the same ([#67131](https://github.com/kubernetes/kubernetes/pull/67131), [@rosti](https://github.com/rosti))
    - kubeadm: remove misleading error message regarding image pulling ([#66658](https://github.com/kubernetes/kubernetes/pull/66658), [@dixudx](https://github.com/dixudx))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top