Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for Toasts (0.03 sec)

  1. src/main/resources/fess_label_de.properties

    labels.max_access_count=Maximale Zugriffsanzahl
    labels.number_of_thread=Anzahl der Threads
    labels.interval_time=Intervall
    labels.millisec=ms
    labels.permissions=Berechtigungen
    labels.virtual_hosts=Virtuelle Hosts
    labels.virtual_host=Virtueller Host
    labels.label_type=Label
    labels.file_crawling_button_create=Erstellen
    labels.file_crawling_button_create_job=Neuen Job erstellen
    labels.web_crawling_configuration=Web-Crawling
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  2. guava/src/com/google/common/collect/ImmutableSet.java

           * ImmutableSet.Builder but y is an ImmutableSortedSet.Builder (or vice versa). Certainly
           * ImmutableSortedSet.Builder.combine() is written as if its argument will never be a plain
           * ImmutableSet.Builder: It casts immediately to ImmutableSortedSet.Builder.)
           */
          copyIfNecessary();
          this.impl = this.impl.combine(other.impl);
          return this;
        }
    
        @Override
        public ImmutableSet<E> build() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        /**
         * Refreshes the design JSP files for all virtual hosts.
         *
         * @return A list of paths to the refreshed files.
         */
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        /** Permissions field name. */
        public static final String PERMISSIONS = "permissions";
    
        /** Queries field name. */
        public static final String QUERIES = "queries";
    
        /** Virtual hosts field name. */
        public static final String VIRTUAL_HOSTS = "virtualHosts";
    
        /** Prefix for encrypted/ciphered values. */
        public static final String CIPHER_PREFIX = "{cipher}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/IntsTest.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * Unit test for {@link Ints}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @NullMarked
    @SuppressWarnings("cast") // redundant casts are intentional and harmless
    public class IntsTest extends TestCase {
      private static final int[] EMPTY = {};
      private static final int[] ARRAY1 = {(int) 1};
      private static final int[] ARRAY234 = {(int) 2, (int) 3, (int) 4};
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        protected Client createHttpClient(final FessConfig fessConfig, final String host) {
            final String[] hosts =
                    split(host, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Builder builder = Settings.builder()
                    .putList("http.hosts", hosts)
                    .put("processors", fessConfig.availableProcessors())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  7. docs/recipes.md

            }
          }
        ```
    
    ### Posting a String ([.kt][PostStringKotlin], [.java][PostStringJava])
    
    Use an HTTP POST to send a request body to a service. This example posts a markdown document to a web service that renders markdown as HTML. Because the entire request body is in memory simultaneously, avoid posting large (greater than 1 MiB) documents using this API.
    
    === ":material-language-kotlin: Kotlin"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_es.properties

    labels.max_access_count=Número máximo de accesos
    labels.number_of_thread=Número de hilos
    labels.interval_time=Intervalo
    labels.millisec=milisegundos
    labels.permissions=Permisos
    labels.virtual_hosts=Hosts virtuales
    labels.virtual_host=Host virtual
    labels.label_type=Etiqueta
    labels.file_crawling_button_create=Crear
    labels.file_crawling_button_create_job=Crear nuevo trabajo
    labels.web_crawling_configuration=Rastreo web
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Longs.java

       */
      public static byte[] toByteArray(long value) {
        // Note that this code needs to stay compatible with GWT, which has known
        // bugs when narrowing byte casts of long values occur.
        byte[] result = new byte[8];
        for (int i = 7; i >= 0; i--) {
          result[i] = (byte) (value & 0xffL);
          value >>= 8;
        }
        return result;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.max_access_count=Max Access Count
    labels.number_of_thread=Number of Threads
    labels.interval_time=Interval
    labels.millisec=msec
    labels.permissions=Permissions
    labels.virtual_hosts=Virtual Hosts
    labels.virtual_host=Virtual Host
    labels.label_type=Label
    labels.file_crawling_button_create=Create
    labels.file_crawling_button_create_job=Create New Job
    labels.web_crawling_configuration=Web Crawling
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top