- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 80 for get_session (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
* based on the configured remote repos. */ MavenSession session = legacySupport.getSession(); if (session != null) { MavenExecutionRequest req = session.getRequest(); if (req != null) { request.setActiveProfileIds(req.getActiveProfiles());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
managedDependencies = dependencyManagement == null ? null : dependencyManagement.getDependencies(); MavenSession session = legacySupport.getSession(); if (session != null) { pomRepositories = session.getProjects().stream() .filter(p -> artifact.equals(p.getArtifact()))
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
/** * The repositories specified in the request have precedence over the repositories declared in the POM. */ REQUEST_DOMINANT, } @Nonnull Session getSession(); @Nonnull ModelSource getSource(); @Nonnull RequestType getRequestType(); boolean isLocationTracking(); boolean isRecursive(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with OpenID Connect Authenticator"); } final HttpSession session = request.getSession(false); if (session != null) { final String sesState = (String) session.getAttribute(OIC_STATE); if (StringUtil.isNotBlank(sesState)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactory.java
* @return a new {@link DependencyCoordinates} object * * @throws IllegalArgumentException if {@code request} is null or * if {@code request.getSession()} is null or invalid */ @Nonnull DependencyCoordinates create(@Nonnull DependencyCoordinatesFactoryRequest request); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * * @since 4.0.0 */ @Experimental public interface ToolchainsBuilderRequest { @Nonnull Session getSession(); /** * Gets the installation Toolchains source. * * @return the installation Toolchains source or {@code null} if none */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
UniAddress dc; String msg, pathInfo, server = null; boolean offerBasic, possibleWorkgroup = true; NtlmPasswordAuthentication ntlm = null; HttpSession ssn = req.getSession( false ); if(( pathInfo = req.getPathInfo() ) != null ) { int i; server = parseServerAndShare( pathInfo ); if( server != null && ( i = server.indexOf( '/' )) > 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java
InstallRequest request = new InstallRequest(); request.setTrace(RequestTrace.newChild(null, legacySupport.getSession().getCurrentProject())); org.eclipse.aether.artifact.Artifact mainArtifact = RepositoryUtils.toArtifact(artifact); mainArtifact = mainArtifact.setFile(source); request.addArtifact(mainArtifact);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
* TODO: add validationLevel, activeProfileIds, inactiveProfileIds, resolveDependencies * * @since 4.0.0 */ @Experimental @Immutable public interface ProjectBuilderRequest { @Nonnull Session getSession(); @Nonnull Optional<Path> getPath(); @Nonnull Optional<Source> getSource(); boolean isAllowStubModel(); boolean isRecursive(); boolean isProcessPlugins();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 5.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactFactoryRequest { @Nonnull Session getSession(); String getGroupId(); String getArtifactId(); String getVersion(); String getClassifier(); String getExtension(); String getType();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 5.7K bytes - Viewed (0)