- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 772 for CSession (0.17 sec)
-
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
} @Test @DisplayName("Should handle session key retrieval") void testSessionKeyRetrieval() throws CIFSException { // When: Getting session key byte[] sessionKey = handle.getSessionKey(); // Then: Should return expected session key assertNotNull(sessionKey);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
import org.apache.maven.project.MavenProject; import org.apache.maven.properties.internal.EnvironmentUtils; import org.apache.maven.properties.internal.SystemProperties; import org.apache.maven.session.scope.internal.SessionScope; import org.apache.maven.session.scope.internal.SessionScopeModule; import org.apache.maven.toolchain.building.DefaultToolchainsBuildingRequest; import org.apache.maven.toolchain.building.ToolchainsBuilder;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/internal/MockWebServerSocket.kt
val scheme: String get() = when (javaNetSocket) { is SSLSocket -> "https" else -> "http" } val handshake: Handshake? get() = (javaNetSocket as? SSLSocket)?.session?.handshake() val handshakeServerNames: List<String> get() = (javaNetSocket as? SSLSocket) ?.let { Platform.Companion.get().getHandshakeServerNames(it) } ?: listOf()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 3.3K bytes - Viewed (0) -
impl/maven-cli/src/test/resources/mavenHome/conf/maven-system.properties
# user properties at the very beginning of Maven's boot process. # maven.property = yes it is maven.installation.conf = ${maven.home}/conf maven.user.conf = ${user.home}/.m2 maven.project.conf = ${session.rootDirectory}/.mvn # Comma-separated list of files to include. # Each item may be enclosed in quotes to gracefully include spaces. Items are trimmed before being loaded.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java
ClassLoader parentRealm, Map<String, ClassLoader> foreignImports, DependencyFilter dependencyFilter, List<RemoteRepository> repositories, RepositorySystemSession session); CacheRecord get(Key key); default CacheRecord get(Key key, PluginRealmSupplier supplier) throws PluginResolutionException, PluginContainerException { CacheRecord cr = get(key);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultMojosExecutionStrategy.java
*/ @Named @Singleton public class DefaultMojosExecutionStrategy implements MojosExecutionStrategy { @Override public void execute(List<MojoExecution> mojos, MavenSession session, MojoExecutionRunner mojoRunner) throws LifecycleExecutionException { for (MojoExecution mojoExecution : mojos) { mojoRunner.run(mojoExecution); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
* * @return negotiated multiplex count */ public int getNegotiatedMpxCount() { return this.maxMpxCount; } /** * Gets the negotiated session key. * * @return negotiated session key */ public int getNegotiatedSessionKey() { return this.sessionKey; } /** * {@inheritDoc} *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
CLAUDE.md
### Crawler (`Crawler.java`) Main orchestrator for crawling operations. **Key Methods**: ```java String execute() // Start crawling, return session ID void addUrl(String url) // Add URL to queue void cleanup(String sessionId) // Clean up session void stop() // Stop gracefully ``` **Key Fields**: `crawlerContext`, `urlFilter`, `intervalController`, `clientFactory`, `ruleManager`
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
import org.lastaflute.web.login.credential.LoginCredential; import org.lastaflute.web.login.exception.LoginRequiredException; import org.lastaflute.web.login.option.LoginSpecifiedOption; import org.lastaflute.web.servlet.session.SessionManager; import jakarta.annotation.Resource; /** * The assist for login handling in the Fess application. * This class extends TypicalLoginAssist to provide Fess-specific login functionality
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator.java
static { HashMap<String, String> deprecatedCoreParameters = new HashMap<>(); deprecatedCoreParameters.put("${localRepository}", ARTIFACT_REPOSITORY_REASON); deprecatedCoreParameters.put("${session.localRepository}", ARTIFACT_REPOSITORY_REASON); DEPRECATED_CORE_PARAMETERS = deprecatedCoreParameters; } @Inject DeprecatedCoreExpressionValidator(PluginValidationManager pluginValidationManager) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0)