Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 2,083 for instance3 (0.04 sec)

  1. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java

     *
     * @author shinsuke
     *
     */
    public class OpenSearchAccessResult extends AccessResultImpl<String> implements ToXContent {
    
        /**
         * Creates a new instance of OpenSearchAccessResult.
         */
        public OpenSearchAccessResult() {
            // NOP
        }
    
        /**
         * Field name for ID.
         */
        public static final String ID = "id";
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

     * Provides functionality to encode/decode permission strings and extract
     * role type information from various file system protocols (SMB, file, FTP).
     */
    public class PermissionHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(PermissionHelper.class);
    
        /** Prefix used to identify role-based permissions */
        protected String rolePrefix = "{role}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

     * </p>
     *
     */
    public class SitemapUrl implements Sitemap {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a new SitemapUrl instance.
         */
        public SitemapUrl() {
            super();
        }
    
        /**
         * URL of the page. This URL must begin with the protocol (such as http) and
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/log/Logger.java

                return new JclLoggerAdapterFactory();
            } catch (final Throwable ignore) {
                return new JulLoggerAdapterFactory();
            }
        }
    
        /**
         * Constructs an instance.
         *
         * @param clazz
         *            The class to be used as the logging category.
         */
        protected Logger(final Class<?> clazz) {
            log = factory.getLoggerAdapter(clazz);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ScheduledJobDbm.java

        //                                                                           =========
        private static final ScheduledJobDbm _instance = new ScheduledJobDbm();
    
        private ScheduledJobDbm() {
        }
    
        public static ScheduledJobDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

            /** The default field for queries */
            private final String defaultField;
    
            /**
             * Creates a new {@link ExtendableQueryParser} instance
             *
             * @param f the default query field
             * @param a the analyzer used to find terms in a query string
             */
            public LuceneQueryParser(final String f, final Analyzer a) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/README.md

    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            super.tearDown();
        }
    
        public void test_constructor() {
            // Test that constructor creates an instance
            ScriptExecutor executor = new ScriptExecutor();
            assertNotNull(executor);
            assertTrue(executor instanceof JobExecutor);
        }
    
        public void test_execute_withValidScriptType() {
            // Setup test script engine
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            if (this.createContexts != null) {
                for (CreateContextRequest ctx : this.createContexts) {
                    if (ctx instanceof jcifs.internal.smb2.persistent.DurableHandleRequest
                            || ctx instanceof jcifs.internal.smb2.persistent.DurableHandleV2Request
                            || ctx instanceof jcifs.internal.smb2.persistent.DurableHandleReconnect) {
                        return true;
                    }
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java

        //                                                                           =========
        private static final FileConfigDbm _instance = new FileConfigDbm();
    
        private FileConfigDbm() {
        }
    
        public static FileConfigDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top