- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 172 for webform (0.04 sec)
-
src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java
wrapper = new CIFSContextCredentialWrapper(mockDelegate, mockRenewableCredentials); when(mockRenewableCredentials.renew()).thenReturn(mockRenewedCredentialsInternal); // Perform the renewal boolean renewed = wrapper.renewCredentials("locationHint", null); // Verify that renew() was called and credentials were updated
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
if (state != RdmaConnectionState.ESTABLISHED) { throw new IOException("Connection not established"); } try { // In real implementation, this would perform RDMA read: // DisniMemoryRegion disniRegion = (DisniMemoryRegion) localRegion; // IbvSendWR readWR = new IbvSendWR(); // readWR.setWr_id(System.nanoTime());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
final int localPort, final String hostName, final boolean nonPooled, final boolean forceSigning) { if (port <= 0) { port = SmbConstants.DEFAULT_PORT; } // Perform cleanup and health checks without global synchronization cleanup(); performHealthCheck(); if (log.isTraceEnabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
* of the second stream, and so on. * * <p>This is equivalent to {@code Stream.of(streams).flatMap(stream -> stream)}, but the returned * stream may perform better. * * @see Stream#concat(Stream, Stream) */ @SuppressWarnings("unchecked") // could probably be avoided with a forwarding Spliterator @SafeVarargs
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 37K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
</example> </function> <function> <description> Returns a hidden form for Geo. </description> <name>geoForm</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String geoForm()</function-signature> <example> ${fe:geoForm()} </example> </function> <function> <description>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/sts/ldap.md
MINIO_IDENTITY_LDAP_LOOKUP_BIND_DN (string) DN for LDAP read-only service account used to perform DN and group lookups MINIO_IDENTITY_LDAP_LOOKUP_BIND_PASSWORD (string) Password for LDAP read-only service account used to perform DN and group lookups MINIO_IDENTITY_LDAP_USER_DN_SEARCH_BASE_DN (list) ";" separated list of user search base DNs e.g. "dc=myldapserver,dc=com"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
* which hold TGT retrieved from KDC. If multiple TGT are contained, the * first one will be used to retrieve user principal. * * @param subject * represents the user who perform Kerberos authentication. * It contains tickets retrieve from KDC. */ public Kerb5Authenticator(Subject subject) { this.subject = subject; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
message.length, System.currentTimeMillis() - encryptionStartTime); // Perform automatic key rotation if session key is available if (sessionKey != null) { try { performAutomaticKeyRotation();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* UrlFilter, RuleManager, CrawlerContainer, IntervalController, and CrawlerClientFactory, * to perform its tasks. * * <p>The crawling process involves the following steps: * <ol> * <li>Initialization: Sets up the crawler context and initializes the URL filter.</li> * <li>Thread Creation: Creates a group of crawler threads to perform the actual crawling.</li> * <li>Execution: Starts the crawler threads and waits for them to complete.</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
TestAuthenticationChain chain = new TestAuthenticationChain(); User user1 = createTestUser("user1", "User One"); User user2 = createTestUser("user2", "User Two"); // Perform various operations chain.update(user1); chain.delete(user2); chain.changePassword("user3", "pass3"); chain.load(user1); // Verify state tracking
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0)