- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 5,584 for ession (0.04 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
int getMaximumBufferSize () throws CIFSException; /** * @return whether the session uses SMB signing * @throws CIFSException * @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) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java
PluginsMetadataGenerator(RepositorySystemSession session, InstallRequest request) { this(session, request.getMetadata()); } PluginsMetadataGenerator(RepositorySystemSession session, DeployRequest request) { this(session, request.getMetadata()); } private PluginsMetadataGenerator(RepositorySystemSession session, Collection<? extends Metadata> metadatas) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
InetAddress toInetAddress () throws UnknownHostException; /** * Guess called name to try for session establishment. These * methods are used by the smb package. * * @return guessed name */ String firstCalledName (); /** * Guess next called name to try for session establishment. These * methods are used by the smb package. * * @param tc *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 03 13:22:30 UTC 2018 - 2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/AbstractRepositoryTestCase.java
session.withLocalRepositories(new LocalRepository(new File("target/local-repo"), "simple")); session.setTransferListener(new ConsoleTransferListener()); session.setRepositoryListener(new ConsoleRepositoryListener()); return session.build(); } public static RemoteRepository newTestRepository() throws MalformedURLException { return new RemoteRepository.Builder( "repo",
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
SmbSession session; Object cred; SmbComSessionSetupAndX( SmbSession session, ServerMessageBlock andx, Object cred ) throws SmbException { super( andx ); command = SMB_COM_SESSION_SETUP_ANDX; this.session = session; this.cred = cred; sessionKey = session.transport.sessionKey; capabilities = session.transport.capabilities;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
bufferIndex += pad; bufferIndex += securityBufferLength; return bufferIndex - start; } /** * @return whether the session is either anonymous or a guest session */ public boolean isLoggedInAsGuest () { return ( this.sessionFlags & ( SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL ) ) != 0; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
} /** * Check if the consumer POM feature is active. */ public static boolean consumerPom(@Nullable Session session) { return consumerPom(session != null ? session.getUserProperties() : null); } private static boolean doGet(Properties userProperties, String key, boolean def) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Sep 11 16:31:06 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
} private void injectSession(MetadataResolutionRequest request) { RepositorySystemSession session = legacySupport.getRepositorySession(); if (session != null) { request.setOffline(session.isOffline()); request.setForceUpdate(RepositoryPolicy.UPDATE_POLICY_ALWAYS.equals(session.getUpdatePolicy())); } } @Override public ResolutionGroup retrieve(
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-di/src/main/java/org/apache/maven/api/di/SessionScoped.java
import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Indicates that annotated component should be instantiated before session execution starts * and discarded after session execution completes. * <p> * A {@code org.apache.maven.api.Session} object is available in the scope of this annotation. * * @since 4.0.0 */ @Scope @Documented @Retention(RUNTIME) @Target({TYPE, METHOD})
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:14:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
* @internal */ public interface SmbPipeHandleInternal extends SmbPipeHandle { /** * @return the pipe type */ int getPipeType (); /** * @return session key of the underlying smb session * @throws CIFSException */ byte[] getSessionKey () throws CIFSException; /** * * @return this pipe's input stream * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0)