Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 755 for resource1 (0.32 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

        //                                                                           =========
        @Resource
        private LabelTypeService labelTypeService;
        @Resource
        private LabelTypePager labelTypePager;
        @Resource
        private RoleTypeService roleTypeService;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

        //                                                                           =========
        @Resource
        private BadWordService badWordService;
        @Resource
        private BadWordPager badWordPager;
        @Resource
        protected SuggestHelper suggestHelper;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    public class ApiAdminPathmapAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminPathmapAction.class);
    
        @Resource
        private PathMappingService pathMappingService;
    
        // GET /api/admin/pathmap
        // POST /api/admin/pathmap
        @Execute
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

    import org.codelibs.fess.es.config.exentity.RelatedContent;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    public class ApiAdminRelatedcontentAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminRelatedcontentAction.class);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. docs/sts/rw-ldap-username.json

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Effect": "Allow",
          "Action": [
            "s3:*"
          ],
          "Resource": [
            "arn:aws:s3:::${ldap:username}/*"
          ]
        }
      ]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 28 17:33:07 UTC 2021
    - 201 bytes
    - Viewed (0)
  7. docs/site-replication/rw.json

    {"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["admin:*"]},{"Effect":"Allow","Action":["s3:*"],"Resource":["arn:aws:s3:::*"]}]}...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Dec 08 19:50:15 UTC 2021
    - 146 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

    import org.lastaflute.web.login.LoginManager;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.util.LaServletContextUtil;
    
    import jakarta.annotation.Resource;
    import jakarta.servlet.ServletContext;
    
    /**
     * @author codelibs
     * @author jflute
     */
    public abstract class FessAdminAction extends FessBaseAction {
    
        public static final String VIEW = "-view";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. cmd/metrics-v3-system-cpu.go

    		cpuNiceVal := math.Round(ts.Nice/tot*100*100) / 100
    		m.Set(sysCPUNice, cpuNiceVal)
    		cpuStealVal := math.Round(ts.Steal/tot*100*100) / 100
    		m.Set(sysCPUSteal, cpuStealVal)
    	}
    
    	// metrics-resource.go runs a job to collect resource metrics including their Avg values and
    	// stores them in resourceMetricsMap. We can use it to get the Avg values of CPU idle and IOWait.
    	cpuResourceMetrics, found := resourceMetricsMap[cpuSubsystem]
    	if found {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 20 17:55:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/cors.md

    # CORS (Cross-Origin Resource Sharing)
    
    <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORS ou "Cross-Origin Resource Sharing"</a> refere-se às situações em que um frontend rodando em um navegador possui um código JavaScript que se comunica com um backend, e o backend está em uma "origem" diferente do frontend.
    
    ## Origem
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top