Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for tota (0.11 sec)

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

    seus
    seva
    seva
    seves
    si
    sobre
    sobretot
    sóc
    solament
    sols
    son 
    són
    sons 
    sota
    sou
    t'ha
    t'han
    t'he
    ta
    tal
    també
    tampoc
    tan
    tant
    tanta
    tantes
    teu
    teus
    teva
    teves
    ton
    tons
    tot
    tota
    totes
    tots
    un
    una
    unes
    uns
    us
    va
    vaig
    vam
    van
    vas
    veu
    vosaltres
    vostra
    vostre
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/fi/stopwords.txt

    teissä
    teistä
    teihin
    teillä
    teiltä
    teille
    he
    heidän
    heidät
    heitä
    heissä
    heistä
    heihin
    heillä
    heiltä
    heille
    tämä
    tämän
    tätä
    tässä
    tästä
    tähän
    tallä
    tältä
    tälle
    tänä
    täksi
    tuo
    tuon
    tuotä
    tuossa
    tuosta
    tuohon
    tuolla
    tuolta
    tuolle
    tuona
    tuoksi
    se
    sen
    sitä
    siinä
    siitä
    siihen
    sillä
    siltä
    sille
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/ro/stopwords.txt

    sa
    să
    săi
    sale
    sau
    său
    se
    şi
    sînt
    sîntem
    sînteţi
    spre
    sub
    sunt
    suntem
    sunteţi
    ta
    tăi
    tale
    tău
    te
    ţi
    ţie
    tine
    toată
    toate
    tot
    toţi
    totuşi
    tu
    un
    una
    unde
    undeva
    unei
    unele
    uneori
    unor
    vă
    vi
    voastră
    voastre
    voi
    voştri
    vostru
    vouă
    vreo
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        }
    
        /**
         * Returns the total number of records.
         *
         * @return The total number of records.
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount The total number of records.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records.
         *
         * @return The total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount The total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/DocList.java

            contentSize = 0;
            processingTime = 0;
        }
    
        /**
         * Gets the total content size of all documents in this list.
         *
         * @return the total content size in bytes
         */
        public long getContentSize() {
            return contentSize;
        }
    
        /**
         * Adds to the total content size of this document list.
         *
         * @param contentSize the content size to add in bytes
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

        }
    
        /**
         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records in the result set.
         *
         * @param allRecordCount the total record count to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java

    public class StopwatchBenchmark {
      @Benchmark
      long stopwatch(int reps) {
        long total = 0;
        for (int i = 0; i < reps; i++) {
          Stopwatch s = Stopwatch.createStarted();
          // here is where you would do something
          total += s.elapsed(NANOSECONDS);
        }
        return total;
      }
    
      @Benchmark
      long manual(int reps) {
        long total = 0;
        for (int i = 0; i < reps; i++) {
          long start = System.nanoTime();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

      int charSplitter(int reps) {
        int total = 0;
    
        for (int i = 0; i < reps; i++) {
          total += Iterables.size(CHAR_SPLITTER.split(input));
        }
    
        return total;
      }
    
      @Benchmark
      int stringSplitter(int reps) {
        int total = 0;
    
        for (int i = 0; i < reps; i++) {
          total += Iterables.size(STRING_SPLITTER.split(input));
        }
    
        return total;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

     * including the list of matching documents, total record count, query execution
     * time, facet information, and metadata about the search results.
     */
    public class SearchResult {
    
        /** The list of documents returned by the search query. */
        protected final List<Map<String, Object>> documentList;
    
        /** The total number of records that match the search criteria. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top