Search Options

Results per page
Sort
Preferred Languages
Advance

Results 851 - 860 of 1,478 for Operations (0.06 sec)

  1. src/test/java/jcifs/dcerpc/DcerpcMessageTest.java

                lenient().doNothing().when(mockBuffer).enc_ndr_small(anyInt());
                lenient().doNothing().when(mockBuffer).setIndex(anyInt());
    
                message.encode(mockBuffer);
    
                // Verify key operations happened
                verify(mockBuffer).enc_ndr_small(5); // RPC version
                verify(mockBuffer).enc_ndr_long(0x00000010); // Little-endian / ASCII / IEEE
                verify(mockBuffer).enc_ndr_long(message.call_id);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	// All object storage operations are registered as HTTP handlers on `objectAPIHandlers`.
    	// When the handlers get a HTTP request they use the underlying ObjectLayer to perform operations.
    	globalObjLayerMutex.Lock()
    	globalObjectAPI = objLayer
    	globalObjLayerMutex.Unlock()
    
    	// When cache is enabled, Put and Get operations are passed
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java

     * </ul>
     *
     * <p>The container supports component initialization and destruction through consumer functions,
     * allowing custom setup and cleanup operations for components.
     *
     */
    public class StandardCrawlerContainer implements CrawlerContainer {
    
        private static final Logger logger = LogManager.getLogger(StandardCrawlerContainer.class);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

    import jcifs.smb1.dcerpc.ndr.NdrObject;
    import jcifs.smb1.dcerpc.ndr.NdrSmall;
    
    /**
     * LSA RPC (Local Security Authority Remote Procedure Call) definitions.
     * Provides interface definitions and data structures for LSA RPC operations.
     */
    public class lsarpc {
    
        /**
         * Private constructor to prevent instantiation of utility class.
         */
        private lsarpc() {
            // Utility class
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

    public class AdminWebconfigAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminWebconfigAction() {
            super();
        }
    
        /** Role name for admin web config operations */
        public static final String ROLE = "admin-webconfig";
    
        private static final Logger logger = LogManager.getLogger(AdminWebconfigAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Table.java

     * the columns. The reverse is also available, associating a column with a row key / value map. Note
     * that, in some implementations, data access by column key may have fewer supported operations or
     * worse performance than data access by row key.
     *
     * <p>The methods returning collections or maps always return views of the underlying table.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

                assertTrue(concurrentLimiter.checkAttempt("finaluser", "192.168.3.1"),
                        "Rate limiter should still be functional after concurrent operations");
    
                // Verify that the rate limiter tracked some activity
                AuthenticationRateLimiter.RateLimiterStats stats = concurrentLimiter.getStats();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

         */
        public void setOutputExtension(final String outputExtension) {
            this.outputExtension = outputExtension;
        }
    
        /**
         * Sets the temporary directory for file operations.
         * @param tempDir The temporary directory to set.
         */
        public void setTempDir(final File tempDir) {
            this.tempDir = tempDir;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 16K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

     * retrieval operations obtain elements at the head of the queue.
     *
     * <p>This is a classic &quot;bounded buffer&quot;, in which a fixed-sized array holds elements
     * inserted by producers and extracted by consumers. Once created, the capacity cannot be increased.
     * Attempts to {@code put} an element into a full queue will result in the operation blocking;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            List<SmbTransportImpl> toClose = new ArrayList<>(this.connections);
            toClose.addAll(this.nonPooledConnections);
    
            // Clear the collections (thread-safe operations)
            this.connections.clear();
            this.nonPooledConnections.clear();
            this.activeConnections.set(0);
    
            // Close all connections outside of synchronization
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
Back to top