Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for IsPresent (0.04 seconds)

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final Optional<OperationInfo> result = helper.getOperationInfo("reindex");
    
            assertTrue(result.isPresent());
            final OperationInfo info = result.get();
            assertEquals("reindex", info.name);
            assertEquals("node1@host1", info.instanceId);
            assertEquals("host1", info.hostname);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        }
                        if (lifecycleOverlay == null) {
                            Optional<Lifecycle> lf = lifecycles.lookup(forkedLifecycle);
                            if (lf.isPresent()) {
                                lifecycle = lf.get();
                            } else {
                                throw new MavenException(new LifecycleNotFoundException(forkedLifecycle));
                            }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
Back to Top