Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,022 for resource (0.1 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessor.java

    import org.codelibs.fess.crawler.helper.SitemapsHelper;
    import org.codelibs.fess.crawler.processor.ResponseProcessor;
    
    import jakarta.annotation.Resource;
    
    /**
     * @author shinsuke
     *
     */
    public class SitemapsResponseProcessor implements ResponseProcessor {
        @Resource
        protected CrawlerContainer crawlerContainer;
    
        @Override
        public void process(final ResponseData responseData) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

            URL myResource = ExpressionDocumenter.class.getClassLoader().getResource(myResourcePath);
    
            assert myResource != null : "The resource is this class itself loaded by its own classloader and must exist";
    
            String myClasspathEntry = myResource.getPath();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        //
        @Resource
        protected RoleBhv roleBhv;
    
        @Resource
        protected RoleTypeBhv roleTypeBhv;
    
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        @Resource
        protected WebConfigBhv webConfigBhv;
    
        @Resource
        protected FileConfigBhv fileConfigBhv;
    
        @Resource
        protected DataConfigBhv dataConfigBhv;
    
        @Resource
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java

    import org.codelibs.fess.helper.SuggestHelper;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    
    import jakarta.annotation.Resource;
    
    /**
     * @author yfujita
     */
    public class AdminSuggestAction extends FessAdminAction {
    
        public static final String ROLE = "admin-suggest";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

    import jakarta.annotation.Resource;
    import jakarta.servlet.http.HttpServletResponse;
    
    public class ThumbnailAction extends FessSearchAction {
    
        // ===================================================================================
        //                                                                           Attribute
        //
        @Resource
        protected HttpServletResponse response;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    A secondary configuration consumed by Ztunnel is the [`Authorization` resource](../../pkg/workloadapi/security/authorization.proto).
    [Original Design Doc](https://docs.google.com/document/d/17mRVzXe8PS7VoligvIx52T10tOP7xPQ9noeOzoLO2cY/edit).
    
    This resource aims to represent the relatively small set of Authorization policies that Ztunnel support.
    Most notably, this is only L4 resources.
    
    Most of the API is fairly straight forward.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

    import org.lastaflute.web.response.JsonResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    import jakarta.annotation.Resource;
    
    public class ApiAdminDictKuromojiAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminDictKuromojiAction.class);
    
        @Resource
        private KuromojiService kuromojiService;
    
        // GET /api/admin/dict/kuromoji/settings/{dictId}
        @Execute
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jakarta.annotation.Resource;
    
    /**
     * @author shinsuke
     *
     */
    public class DefaultResponseProcessor implements ResponseProcessor {
        private static final Logger logger = LoggerFactory.getLogger(DefaultResponseProcessor.class);
    
        @Resource
        protected CrawlerContainer crawlerContainer;
    
        protected Transformer transformer;
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

    import org.codelibs.fess.crawler.container.CrawlerContainer;
    
    import jakarta.annotation.Resource;
    
    /**
     *
     * @param <T> Pooled object
     *
     * @author shinsuke
     */
    public class CrawlerPooledObjectFactory<T> extends BasePooledObjectFactory<T> {
        @Resource
        protected CrawlerContainer crawlerContainer;
    
        protected String componentName;
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private RelatedQueryService relatedQueryService;
        @Resource
        private RelatedQueryPager relatedQueryPager;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top