Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setActive (0.07 sec)

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

            public boolean isActive() {
                return active;
            }
    
            /**
             * Set active status
             *
             * @param active true to activate
             */
            public void setActive(boolean active) {
                this.active = active;
            }
    
            /**
             * Gets the future for asynchronous notification completion
             * @return the notification future
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

              <version>1.0.0/1.3.0</version>
              <code>
        public boolean isActive() {
            return (getActiveString() != null) ? Boolean.parseBoolean(getActiveString()) : true;
        }
    
        public void setActive(boolean active) {
            setActiveString(String.valueOf(active));
        }
    
        public int getPort() {
            return (getPortString() != null) ? Integer.parseInt(getPortString()) : 8080;
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 33.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFilenameFilter.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    /**
     * Filter interface for SMB filename filtering.
     * This interface allows selective filtering of filenames
     * when listing directory contents in SMB shares.
     */
    public interface SmbFilenameFilter {
        /**
         * Tests whether the specified filename should be included in a file list.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileFilter.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb;
    
    /**
     * Filter interface for SMB file filtering.
     *
     * This interface allows selective filtering of files
     * when listing directory contents in SMB shares.
     */
    public interface SmbFileFilter {
    
        /**
         * Tests whether the specified SMB file should be included in a file list.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFilenameFilter.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb;
    
    /**
     * Filter interface for SMB filename filtering.
     *
     * This interface allows selective filtering of filenames
     * when listing directory contents in SMB shares.
     */
    public interface SmbFilenameFilter {
    
        /**
         * Tests whether the specified filename should be included in a file list.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/CrawlJob.java

     *
     * <p>The job supports selective crawling by specifying configuration IDs for different
     * types of crawlers (web, file, data). It manages the crawler process lifecycle,
     * handles timeout scenarios, and ensures proper cleanup of resources.</p>
     *
     * <p>Key features:</p>
     * <ul>
     *   <li>Concurrent crawler process management with configurable limits</li>
     *   <li>Selective crawling based on configuration IDs</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top