Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for per (0.02 sec)

  1. src/main/resources/fess_indices/fess/lt/stopwords.txt

    kuris
    man
    mane
    manęs
    manimi
    mano
    manyje
    mes
    metu
    mudu
    mudvi
    mudviejų
    mudviem
    mudviese
    mumis
    mums
    mumyse
    mus
    mūsų
    nei
    nes
    net
    nors
    nuo
    o
    pat
    per
    po
    prie
    prieš
    sau
    save
    savęs
    savimi
    savo
    savyje
    su
    tačiau
    tada
    tai
    taip
    tas
    tau
    tave
    tavęs
    tavimi
    tavyje
    ten
    to
    todėl
    tu
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 786 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        protected final int start;
    
        /** The offset value used for pagination calculations. */
        protected final int offset;
    
        /** The number of records per page. */
        protected final int pageSize;
    
        /** The current page number (1-based). */
        protected int currentPageNumber;
    
        /** The total number of records in the search result set. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

          tmp += UnsignedLongs.remainder(longs[j], divisors[j]);
        }
        return tmp;
      }
    
      @Benchmark
      long parseUnsignedLong(int reps) {
        long tmp = 0;
        // Given that we make three calls per pass, we scale reps down in order
        // to do a comparable amount of work to other measurements.
        int scaledReps = reps / 3 + 1;
        for (int i = 0; i < scaledReps; i++) {
          int j = i & ARRAY_MASK;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        }
    
        /**
         * Gets the number of records to display per page.
         *
         * @return The page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        /**
         * Sets the number of records to display per page.
         *
         * @param pageSize The page size
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        /**
         * Gets the number of records per page.
         * If page size is not set or invalid, returns the default page size.
         *
         * @return the page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        /**
         * Sets the number of records per page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/UserPager.java

        }
    
        /**
         * Gets the number of records per page.
         * Returns the default page size if not set or invalid.
         *
         * @return the page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
            return pageSize;
        }
    
        /**
         * Sets the number of records per page.
         *
         * @param pageSize the page size
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_it.properties

    labels.search=Cerca
    labels.similar_doc_result_status=Mostrando risultati simili.
    labels.search_result_status=Risultati di ricerca per <b>{0}</b><span class="br-phone"></span> <b>{2}</b> - <b>{3}</b> di <b>{1}</b>
    labels.search_result_status_over=Risultati di ricerca per <b>{0}</b><span class="br-phone"></span> circa <b>{1}</b> o più <b>{2}</b> - <b>{3}</b>
    labels.search_result_time=({0} secondi)
    labels.prev_page=Precedente
    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. android/guava/src/com/google/common/collect/ForwardingListIterator.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * A list iterator which forwards all its method calls to another list iterator. Subclasses should
     * override one or more methods to modify the behavior of the backing iterator as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingConcurrentMap.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * A concurrent map which forwards all its method calls to another concurrent map. Subclasses should
     * override one or more methods to modify the behavior of the backing map as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 18 16:58:16 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/Striped64.java

    @GwtIncompatible
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
       * accessed directly by subclasses.
       *
       * Table entries are of class Cell; a variant of AtomicLong padded
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jan 15 22:17:15 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top