Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 244 for iguals (0.04 seconds)

  1. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            // Check that the current test method is in the stack trace
            boolean foundTestMethod = false;
            for (StackTraceElement element : stackTrace) {
                if (element.getMethodName().equals("test_stackTrace")) {
                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                    final StringBuilder locationBuf = new StringBuilder(1000);
                    final String contextPath = servletContext.getContextPath();
                    if (StringUtil.isNotBlank(contextPath) && !"/".equals(contextPath)) {
                        locationBuf.append(contextPath);
                    }
                    locationBuf.append('/');
                    locationBuf.append(servletPath.substring(path.length()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

            if (boostList == null) {
                return Collections.emptyList();
            }
            for (final Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>> pair : boostList) {
                if (!keyMatch.getId().equals(pair.getValue1())) {
                    continue;
                }
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  4. src/main/webapp/js/suggestor.js

        ENTER: 13,
        SPACE: 32,
        UP: 38,
        DOWN: 40,
        DELETE: 46,
        NUM_0: 48,
        NUM_9: 57,
        A: 65,
        Z: 90,
        NUMPAD_0: 96,
        NUMPAD_9: 105,
        SEMICOLON: 186,
        EQUALS: 187,
        DASH: 189,
        FORWARD_SLASH: 191,
        GRAVE: 192,
        OPEN_BRACKET: 219,
        BACK_SLASH: 220,
        CLOSE_BRACKET: 221,
        SINGLE_QUOTE: 222
      };
    
      // UI constants
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                    for (final String id : labelTypeIds) {
                        boolean exist = false;
                        for (final ElevateWordToLabel mapping : list) {
                            if (mapping.getLabelTypeId().equals(id)) {
                                exist = true;
                                matchedList.add(mapping);
                                break;
                            }
                        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 18.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            stopwordsFile.insert(newItem);
    
            // Verify the item was added
            boolean found = false;
            for (StopwordsItem item : stopwordsFile.stopwordsItemList) {
                if ("test".equals(item.getInput())) {
                    found = true;
                    break;
                }
            }
            assertTrue(found);
        }
    
        // Test update method
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            tasks.withType(AsciidoctorTask.class).configureEach(task -> {
                if (task.getName().equals("asciidoctor")) {
                    // ignore this task
                    task.setEnabled(false);
                    return;
                }
    
                task.setExecutionMode(ExecutionMode.OUT_OF_PROCESS);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                for (final Blob blob : blobs.iterateAll()) {
                    final String blobName = blob.getName();
    
                    // Skip the prefix itself
                    if (blobName.equals(searchPrefix)) {
                        continue;
                    }
    
                    final boolean isDirectory = blobName.endsWith("/");
                    final String name = getName(blobName);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    final String oldId = (String) entity.get(fessConfig.getIndexFieldId());
                    if (!newId.equals(oldId)) {
                        entity.put(fessConfig.getIndexFieldId(), newId);
                        entity.remove(fessConfig.getIndexFieldVersion());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            // Verify that the current test method appears in the stack trace
            boolean foundTestMethod = false;
            for (StackTraceElement element : stackTrace) {
                if (element.getMethodName().equals("test_stackTrace_isPresent")) {
                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top