Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for Beta (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public FailureUrlDbm asDBMeta() {
            return FailureUrlDbm.getInstance();
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsRequestHeader.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public RequestHeaderDbm asDBMeta() {
            return RequestHeaderDbm.getInstance();
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsAccessToken.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public AccessTokenDbm asDBMeta() {
            return AccessTokenDbm.getInstance();
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsPathMapping.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public PathMappingDbm asDBMeta() {
            return PathMappingDbm.getInstance();
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public FileAuthenticationDbm asDBMeta() {
            return FileAuthenticationDbm.getInstance();
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        protected boolean __createdBySelect;
    
        // ===================================================================================
        //                                                                            Doc Meta
        //                                                                            ========
        public DocMeta asDocMeta() {
            if (docMeta == null) {
                docMeta = new DocMeta();
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
        //                                                                             =======
        @Override
        public WebConfigDbm asDBMeta() {
            return WebConfigDbm.getInstance();
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final String X_ROBOTS_TAG = "X-Robots-Tag";
    
        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
    
        private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final String data = "<html><head><meta name=\"keywords\" content=\"bbb\"></head><body>aaa</body></html>";
            final Document document = getDocument(data);
            String value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
            assertEquals("aaa", value);
    
            value = transformer.getSingleNodeValue(document, "//META[@name='keywords']/@content", node -> node);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/io/ResourceTraversalTest.java

                    assertThat(path, is(notNullValue()));
                    assertThat(path, path.startsWith("junit") || path.startsWith("org/junit") || path.startsWith("org/hamcrest")
                            || path.startsWith("META-INF/") || path.equals("LICENSE-junit.txt"), is(true));
                    assertThat(is, is(notNullValue()));
                    count++;
                } finally {
                    CloseableUtil.close(is);
                }
            });
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top