Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,643 for a_param (0.07 sec)

  1. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       *     return DEFAULT_VALUE;
       *   }
       * </pre>
       *
       * @param target the object to proxy
       * @param interfaceType the interface you wish the returned proxy to implement
       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

        /** Configuration for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of protected words items.
         * @param dictId the dictionary ID
         * @param protwordsPager the pager for pagination
         * @return the list of protected words items
         */
        public List<ProtwordsItem> getProtwordsList(final String dictId, final ProtwordsPager protwordsPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        /**
         * Retrieves or creates a WebAuthentication entity based on the form's CRUD mode.
         *
         * @param form the form containing the web authentication data
         * @param username the username of the current user
         * @param currentTime the current timestamp
         * @return an optional WebAuthentication entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/Config.java

         *
         * @param out the print stream to write the properties to
         * @throws IOException if an I/O error occurs
         */
    
        public static void list(final PrintStream out) throws IOException {
            prp.list(out);
        }
    
        /**
         * Add a property.
         *
         * @param key the property key
         * @param value the property value
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

            scheduler.scheduleAtFixedRate(this::periodicMaintenance, 30, 30, TimeUnit.SECONDS);
        }
    
        /**
         * Request a new durable handle
         * @param path the file path
         * @param type the handle type
         * @param timeout the timeout in milliseconds
         * @param leaseKey the associated lease key (can be null)
         * @return the handle GUID
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         *
         * @param dataMap the data map to populate
         * @param responseData the response data from crawling
         * @param fessConfig the Fess configuration
         * @param crawlingConfig the crawling configuration
         * @param documentHelper the document helper for content processing
         * @param body the extracted body content
         * @param fileName the file name if applicable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            setRequestedOplockLevel(SMB2_OPLOCK_LEVEL_LEASE);
        }
    
        /**
         * Add a lease V2 context to this request
         * @param leaseKey the lease key
         * @param requestedState the requested lease state
         * @param parentLeaseKey the parent lease key (can be null)
         * @param epoch the lease epoch
         */
        public void addLeaseV2Context(Smb2LeaseKey leaseKey, int requestedState, Smb2LeaseKey parentLeaseKey, int epoch) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/text/Tokenizer.java

        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         */
        public Tokenizer(final String str) {
            this(str, defaultCtype);
        }
    
        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         * @param ctype
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * This method is synchronized to ensure thread safety when managing processes.
         *
         * @param sessionId unique identifier for the process session
         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @param bufferSize size of the buffer for process output
         * @param outputCallback callback to handle process output lines
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

        }
    
        /**
         * Creates a {@link ClIllegalArgumentException}.
         *
         * @param argName
         *            Name of the argument
         * @param messageCode
         *            Message code
         * @param args
         *            Array of arguments
         * @param cause
         *            The cause of the exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top