- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 156 for getVersion (1.15 sec)
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals(0, systemHelper.waitingThreadNames.size()); systemHelper.waitForNoWaitingThreads(); } public void test_getVersion() { assertEquals("98.76.5", systemHelper.getVersion()); assertEquals(98, systemHelper.getMajorVersion()); assertEquals(76, systemHelper.getMinorVersion()); assertEquals("98.76", systemHelper.getProductVersion()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} } docMap.put(fessConfig.getIndexFieldId(), hit.getId()); docMap.put(fessConfig.getIndexFieldVersion(), hit.getVersion()); docMap.put(fessConfig.getIndexFieldSeqNo(), hit.getSeqNo()); docMap.put(fessConfig.getIndexFieldPrimaryTerm(), hit.getPrimaryTerm()); return docMap;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return System.getenv(); } /** * Gets the version of the Fess application. * * @return The version string. */ public String getVersion() { return version; } /** * Gets the major version number. * * @return The major version number. */ public int getMajorVersion() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final Map<String, Object> docMap = new HashMap<>(source); docMap.put(fessConfig.getIndexFieldId(), hit.getId()); docMap.put(fessConfig.getIndexFieldVersion(), hit.getVersion()); docMap.put(fessConfig.getIndexFieldSeqNo(), hit.getSeqNo()); docMap.put(fessConfig.getIndexFieldPrimaryTerm(), hit.getPrimaryTerm()); return docMap; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java
*/ @Nonnull List<Version> getVersions(); /** * Gets the lowest version matching the requested range. * * @return An Optional containing the lowest matching version, or empty Optional if no versions * matched the requested range */ @Nonnull default Optional<Version> getLowestVersion() { return getVersions().isEmpty() ? Optional.empty()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
}, validationErrorLambda); return null; }); } private OptionalThing<HttpSession> getSession() { final HttpSession session = request.getSession(false); if (session != null) { return OptionalEntity.of(session); } return OptionalEntity.empty(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleInternalTest.java
} @Test @DisplayName("getSession(): may return null and should be observed as such") void getSession_returnsNull() { // Arrange when(handle.getSession()).thenReturn(null); // Act SmbSession result = handle.getSession(); // Assert assertNull(result); verify(handle).getSession(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
public ProjectBuilder setArtifactId(String artifactId) { project.setArtifactId(artifactId); return this; } public ProjectBuilder setVersion(String version) { project.setVersion(version); return this; } // Dependencies //
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
this.resourceLoc = resourceLoc; this.treeConnection = treeConnection.acquire(); } @Override public SmbSessionImpl getSession() { return this.treeConnection.getSession(); } @Override public void ensureDFSResolved() throws CIFSException { this.treeConnection.ensureDFSResolved(this.resourceLoc); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
} @Test @DisplayName("getSession returns underlying session from tree connection") void getSessionReturnsUnderlying() { // Verifies getSession() exposes the session provided by the connection assertSame(session, handle.getSession()); verify(treeConnection).getSession(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0)