- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getSession (0.16 sec)
-
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with Entra ID Authenticator"); } final HttpSession session = request.getSession(false); if (session != null && containsAuthenticationData(request)) { try { return processAuthenticationData(request); } catch (final Exception e) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
updateHighlightInfo(highlightInfo, width); final HttpSession session = req.getSession(false); if (session != null) { session.setAttribute(SCREEN_WIDTH, width); } } else { final HttpSession session = req.getSession(false); if (session != null) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
for (Extension ext : extensions) { String version; if (ext.getVersion() == null || ext.getVersion().isEmpty()) { version = "RELEASE"; } else { version = ext.getVersion(); } Artifact artifact = repositorySystem.createArtifact(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
currentData.setVersion( currentData.getRawModel().getVersion() == null ? parentData.getVersion() : currentData.getRawModel().getVersion()); currentData.setArtifactId(currentData.getRawModel().getArtifactId()); parentIds.add(currentData.getId());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 03 15:06:05 UTC 2025 - 66.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
public void setVersion(String version) { getModel().setVersion(version); } public String getVersion() { String version = getModel().getVersion(); if ((version == null) && (getModel().getParent() != null)) { version = getModel().getParent().getVersion(); } return version; } public String getPackaging() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
} } private static String gav(MavenProject p) { return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion(); } private static String gav(Plugin p) { return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion(); } /** * Post-processes the effective configuration for the specified mojo execution. This step discards all parametersRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0)