Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 476 for ending (0.07 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

            this.currentStartRecordNumber = currentStartRecordNumber;
        }
    
        /**
         * Sets the ending record number for the current page.
         *
         * @param currentEndRecordNumber The ending record number
         */
        public void setCurrentEndRecordNumber(final long currentEndRecordNumber) {
            this.currentEndRecordNumber = currentEndRecordNumber;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. mvnw.cmd

    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
    if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %*
    :skipRcPre
    
    @setlocal
    
    set ERROR_CODE=0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        public void test_fromClassNameToComponentName() {
            // Test with class name ending with Pager
            String componentName = namingConvention.fromClassNameToComponentName("com.example.TestPager");
            assertNotNull(componentName);
            assertEquals("testPager", componentName);
    
            // Test with class name not ending with Pager
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

        /**
         * Constructs a new creator for synonym dictionaries.
         * It sets the file pattern to match files starting with "synonym"
         * and ending with ".txt".
         */
        public SynonymCreator() {
            super("synonym.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager upon initialization.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Graphs.java

            if (state == NodeVisitState.COMPLETE) {
              stack.removeLast();
              continue;
            }
            if (state == NodeVisitState.PENDING) {
              return true;
            }
    
            visitedNodes.put(node, NodeVisitState.PENDING);
            top.remainingSuccessors = new ArrayDeque<>(graph.successors(node));
          }
    
          if (!top.remainingSuccessors.isEmpty()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Graphs.java

            if (state == NodeVisitState.COMPLETE) {
              stack.removeLast();
              continue;
            }
            if (state == NodeVisitState.PENDING) {
              return true;
            }
    
            visitedNodes.put(node, NodeVisitState.PENDING);
            top.remainingSuccessors = new ArrayDeque<>(graph.successors(node));
          }
    
          if (!top.remainingSuccessors.isEmpty()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

        /**
         * Constructs a new creator for stemmer override dictionaries.
         * It sets the file pattern to match files starting with "stemmer_override"
         * and ending with ".txt".
         */
        public StemmerOverrideCreator() {
            super("stemmer_override.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager upon initialization.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java

        /**
         * Constructs a new creator for stopwords dictionaries.
         * It sets the file pattern to match files starting with "stopwords"
         * and ending with ".txt".
         */
        public StopwordsCreator() {
            super("stopwords.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager upon initialization.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            protected int fromHours;
    
            /** Starting minute of the interval */
            protected int fromMinutes;
    
            /** Ending hour of the interval */
            protected int toHours;
    
            /** Ending minute of the interval */
            protected int toMinutes;
    
            /** Delay in milliseconds to apply during this interval */
            protected long delay;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/SipHashFunction.java

        // The number of bytes in the input.
        private long b = 0;
    
        // The final 64-bit chunk includes the last 0 through 7 bytes of m followed by null bytes
        // and ending with a byte encoding the positive integer b mod 256.
        private long finalM = 0;
    
        SipHasher(int c, int d, long k0, long k1) {
          super(CHUNK_SIZE);
          this.c = c;
          this.d = d;
          this.v0 ^= k0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top