Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 211 - 220 of 244 for iguals (0.04 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

            List<Map<String, Object>> afterLogs = JsonPath.from(response).getList("response.logs");
    
            boolean logDeleted = afterLogs.stream().noneMatch(log -> logId.equals(log.get("id").toString()));
            assertTrue(logDeleted, "Log should be deleted");
    
            logger.info("[END] testDeleteJobLog");
        }
    
        /**
         * Test: Search job logs by job name parameter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

                Matcher pidMatcher = pidPattern.matcher(line);
                if (commandLineArgsMatcher.find() && pidMatcher.find()) {
                    String pid = pidMatcher.group(1);
                    if (!MY_PID.equals(pid)) {
                        action.accept(pid, line);
                    }
                }
            });
        }
    
        private static List<String> ps() {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 23 13:49:45 GMT 2025
    - 12K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

         * @return {@code true} if the instance is active.
         */
        public boolean isInstanceActive(final String targetInstanceId) {
            return getActiveInstances().stream().anyMatch(i -> i.instanceId.equals(targetInstanceId));
        }
    
        // ===================================================================================
        //                                                                    Operation State
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

        }
    
        @Test
        public void test_sessionIdIsUnique() {
            final ChatSession session1 = new ChatSession();
            final ChatSession session2 = new ChatSession();
            assertFalse(session1.getSessionId().equals(session2.getSessionId()));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            return new JobManager() {
                @Override
                public OptionalThing<LaScheduledJob> findJobByUniqueOf(final LaJobUnique jobUnique) {
                    if (expectedJobId.equals(jobUnique.value()) && laScheduledJob != null) {
                        return OptionalThing.of(laScheduledJob);
                    }
                    return OptionalThing.ofNullable(null, () -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

                            params.put("x", threadId * 1000 + i);
                            final Object result = engine.evaluate("return x * 2", params);
                            if (result == null || !result.equals((threadId * 1000 + i) * 2)) {
                                errors.incrementAndGet();
                            }
                        }
                    } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                return false;
            }
            final LlmClientManager llmClientManager = ComponentUtil.getComponent("llmClientManager");
            for (final LlmClient client : llmClientManager.getClients()) {
                if (name.equals(client.getName())) {
                    return true;
                }
            }
            return false;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // "fess" (DOC_INDEX) should never appear in created or reindexed indices
            for (final String index : testClient.createdIndices) {
                assertFalse(index.equals("fess"), "DOC_INDEX 'fess' should be skipped");
            }
        }
    
        @Test
        public void test_reindexConfigIndices_missingIndexCreatesNew() {
            testClient.existsIndexResult = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  9. architecture/standards/0010-gradle-properties-naming.md

    Decisions on the short-form build options should be made on a case by case basis, since the space of available names is small.
    
    ### Internal properties
    
    Internal properties MUST start with `org.gradle.internal.`
    
    This clearly signals to users that they are dealing with a non-public property and should expect no guarantees.
    
    Internal properties MUST NOT be supplemented with command-line options.
    They can always be passed via `-D` on the command line.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

                // Verify we still have only one process for this session
                Set<String> sessionIds = processHelper.getRunningSessionIdSet();
                assertEquals(1, sessionIds.stream().filter(id -> id.equals(sessionId)).count());
    
                // Clean up
                processHelper.destroyProcess(sessionId);
            } catch (Exception e) {
                fail("Unexpected exception: " + e.getMessage());
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16K bytes
    - Click Count (0)
Back to Top