- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 211 for getSession (0.19 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/EventSpyImpl.java
if (arg instanceof ExecutionEvent) { ExecutionEvent ee = (ExecutionEvent) arg; InternalMavenSession session = InternalMavenSession.from(ee.getSession().getSession()); Collection<Listener> listeners = session.getListeners(); if (!listeners.isEmpty()) { Event event = new DefaultEvent(session, ee);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
@Inject private ArtifactRepositoryFactory artifactRepositoryFactory; public AuthenticationInfo getAuthenticationInfo(String id) { MavenSession session = legacySupport.getSession(); if (session != null && id != null) { MavenExecutionRequest request = session.getRequest(); if (request != null) { List<Server> servers = request.getServers();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
SmbTreeHandleInternal th2 = (SmbTreeHandleInternal) ( (SmbFile) f2 ).getTreeHandle(); SmbSessionInternal sess1 = th1.getSession().unwrap(SmbSessionInternal.class); SmbSessionInternal sess2 = th2.getSession().unwrap(SmbSessionInternal.class); SmbTransport t1 = sess1.getTransport(); SmbTransport t2 = sess2.getTransport() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
return transport.getNegotiateResponse().isDFSSupported(); } } /** * @return the session this tree is connected in */ public SmbSessionImpl getSession () { return this.session.acquire(); } /** * @return the tid */ public int getTid () { return this.tid; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
} @Nonnull @Override public String getArtifactId() { return project.getArtifactId(); } @Nonnull @Override public String getVersion() { return project.getVersion(); } @Nonnull @Override public List<ProducedArtifact> getArtifacts() { org.eclipse.aether.artifact.Artifact pomArtifact = RepositoryUtils.toArtifact(new ProjectArtifact(project));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BaseRequest.java
private final Session session; protected BaseRequest(@Nonnull Session session) { this.session = nonNull(session, "session cannot be null"); } @Nonnull public Session getSession() { return session; } public static <T> T nonNull(T obj, String message) { if (obj == null) { throw new IllegalArgumentException(message); } return obj;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
* @throws SmbException */ boolean areSignaturesActive () throws CIFSException; /** * Internal/testing use only * * @return attached session */ SmbSession getSession ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * * @since 4.0.0 */ @Experimental public interface VersionRangeResolverRequest { @Nonnull Session getSession(); @Nonnull ArtifactCoordinates getArtifactCoordinates(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull static VersionRangeResolverRequest build(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 4.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * * @since 4.0.0 */ @Experimental public interface VersionResolverRequest { @Nonnull Session getSession(); @Nonnull ArtifactCoordinates getArtifactCoordinates(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
Address 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: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0)