Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for bump (0.03 sec)

  1. guava/src/com/google/common/net/MediaType.java

      /* image types */
      /**
       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
       * The <a href="https://en.wikipedia.org/wiki/Camera_Image_File_Format">Canon Image File
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.crawling_info_delete_all_link=Alle löschen
    labels.crawling_info_delete_all_confirmation=Sind Sie sicher, dass Sie alles löschen möchten?
    labels.crawling_info_delete_all_cancel=Abbrechen
    labels.crawling_info_thread_dump=Thread-Dump
    labels.crawling_info_CrawlerStartTime=Crawler-Startzeit
    labels.crawling_info_CrawlerEndTime=Crawler-Endzeit
    labels.crawling_info_CrawlerExecTime=Crawler-Ausführungszeit
    labels.crawling_info_CrawlerStatus=Crawler-Status
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  3. src/main/resources/fess_config.properties

    # MIME types for HTML document cache.
    crawler.document.cache.html.mimetypes=text/html
    
    # indexer
    
    # Whether to enable thread dump for the indexer.
    indexer.thread.dump.enabled=true
    # Maximum number of unprocessed documents for the indexer.
    indexer.unprocessed.document.size=1000
    # Whether to enable click count tracking in the indexer.
    indexer.click.count.enabled=true
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'indexer.thread.dump.enabled'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to enable thread dump for the indexer.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexerThreadDumpEnabled();
    
        /**
         * Is the property for the key 'indexer.thread.dump.enabled' true? <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. guava/src/com/google/common/escape/Escaper.java

       *       for well formed characters. A {@code CharEscaper} should not be used in situations where
       *       input is not guaranteed to be restricted to the Basic Multilingual Plane (BMP).
       * </ul>
       *
       * @param string the literal string to be escaped
       * @return the escaped form of {@code string}
       * @throws NullPointerException if {@code string} is null
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

       * output array, and may, under certain circumstances, be used to save allocation costs.
       *
       * <p>Suppose {@code x} is a queue known to contain only strings. The following code can be used
       * to dump the queue into a newly allocated array of {@code String}:
       *
       * <pre>
       *     String[] y = x.toArray(new String[0]);</pre>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_it.properties

    labels.crawling_info_delete_all_link=Elimina tutto
    labels.crawling_info_delete_all_confirmation=Sei sicuro di voler eliminare tutto?
    labels.crawling_info_delete_all_cancel=Annulla
    labels.crawling_info_thread_dump=Dump thread
    labels.crawling_info_CrawlerStartTime=Ora di inizio crawler
    labels.crawling_info_CrawlerEndTime=Ora di fine crawler
    labels.crawling_info_CrawlerExecTime=Tempo di esecuzione crawler
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_de.properties

    success.started_data_update=Datenaktualisierungsprozess gestartet.
    success.reindex_started=Neuindizierung gestartet.
    success.bulk_process_started=Massenprozess gestartet.
    success.print_thread_dump=Thread-Dump in eine Protokolldatei gedruckt.
    success.install_plugin=Plugin {0} wird installiert.
    success.delete_plugin=Plugin {0} wird gelöscht.
    success.upload_file_to_storage={0} hochgeladen.
    success.sso_logout=Sie wurden abgemeldet.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

              // Mostly 2-byte UTF-8 sequences - "European" text
              return 0x800;
            } else if (userFriendly.matches("(?i)(?:Chinese|Han|Asian|BMP)")) {
              // Mostly 3-byte UTF-8 sequences - "Asian" text
              return Character.MIN_SUPPLEMENTARY_CODE_POINT;
            } else if (userFriendly.matches("(?i)(?:Cuneiform|rare|exotic|supplementary.*)")) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            if (mimeType == null) {
                return true;
            }
    
            return switch (mimeType) {
            case "image/png", "image/gif", "image/jpeg", "image/bmp" -> true;
            default -> false;
            };
        }
    
        /**
         * Processes and saves an image from the input stream to the output file as a thumbnail.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top