Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 321 for privasi (0.05 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FessFunctions.class);
    
        /** Prefix for geographic query parameters */
        private static final String GEO_PREFIX = "geo.";
    
        /** Prefix for facet query parameters */
        private static final String FACET_PREFIX = "facet.";
    
        /** Format identifier for PDF date parsing */
        private static final String PDF_DATE = "pdf_date";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25.4K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

        @Resource
        private AccessContextLogic accessContextLogic;
    
        @Resource
        private ScheduledJobService scheduledJobService;
    
        @Resource
        private SystemHelper systemHelper;
    
        @Resource
        private JobHelper jobHelper;
    
        /** The job class to be executed by this scheduler */
        protected Class<? extends LaJob> jobClass = ScriptExecutorJob.class;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

         */
        private String familyFriendly;
    
        /**
         * A space-delimited list of countries where the video may or may not be played.
         */
        private String restriction;
    
        /**
         * The price to download or view the video.
         */
        private String price;
    
        /**
         * Indicates whether a subscription is required to view the video.
         */
        private String requiresSubscription;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

     */
    public final class TextUtil {
        private static final Logger logger = LogManager.getLogger(TextUtil.class);
    
        private TextUtil() {
        }
    
        /**
         * This class provides a context for normalizing text.
         */
        public static class TextNormalizeContext {
    
            private final Reader reader;
    
            private int initialCapacity = 10000;
    
            private int maxAlphanumTermSize = -1;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImplTest.java

    import org.mockito.MockitoAnnotations;
    
    /**
     * Test class for {@link UrlFilterServiceImpl}.
     */
    public class UrlFilterServiceImplTest extends PlainTestCase {
    
        @InjectMocks
        private UrlFilterServiceImpl service;
    
        @Mock
        private MemoryDataHelper dataHelper;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            MockitoAnnotations.openMocks(this);
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

            private static final String IMAGE_LOC_ELEMENT = "image:loc";
    
            private static final String IMAGE_CAPTION_ELEMENT = "image:caption";
    
            private static final String IMAGE_GEO_LOCATION_ELEMENT = "image:geo_location";
    
            private static final String IMAGE_TITLE_ELEMENT = "image:title";
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

        public LoginAction() {
            super();
        }
    
        private static final Logger logger = LogManager.getLogger(LoginAction.class);
    
        private static final String INVALID_OLD_PASSWORD = "LoginAction.invalidOldPassword";
    
        // ===================================================================================
        // Attribute
        //
        @Resource
        private UserService userService;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java

            Directive directive = new Directive("googlebot");
            directive.addDisallow("/private/");
            robotsTxt.addDirective(directive);
    
            // Should match case-insensitively
            assertFalse(robotsTxt.allows("/private/", "GoogleBot"));
            assertFalse(robotsTxt.allows("/private/", "GOOGLEBOT"));
            assertFalse(robotsTxt.allows("/private/", "googlebot"));
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         */
        private String priority;
    
        /**
         * List of images associated with this URL.
         * Used for Google Image Sitemap extension.
         */
        private List<SitemapImage> images;
    
        /**
         * List of videos associated with this URL.
         * Used for Video Sitemap extension.
         */
        private List<SitemapVideo> videos;
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            // Disallow: /*/private/ - should block private directories under any parent
            assertFalse(robotsTxt.allows("/users/private/", "WildcardBot"));
            assertFalse(robotsTxt.allows("/admin/private/", "WildcardBot"));
            assertFalse(robotsTxt.allows("/users/private/data.txt", "WildcardBot"));
            assertTrue(robotsTxt.allows("/private/", "WildcardBot")); // no parent directory
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top