Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 738 for Nresources (0.31 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private PathMappingService pathMappingService;
        @Resource
        private PathMapPager pathMapPager;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/internal/RequestWithPath.java

     */
    package jcifs.internal;
    
    
    /**
     * @author mbechler
     *
     */
    public interface RequestWithPath extends CommonServerMessageBlock {
    
        /**
         * @return the path to the resource (below share)
         */
        String getPath ();
    
    
        /**
         * 
         * @return the server name
         */
        String getServer ();
    
    
        /**
         * 
         * @return the domain name
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  5. docs/sts/README.md

    # MinIO STS Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    The MinIO Security Token Service (STS) is an endpoint service that enables clients to request temporary credentials for MinIO resources. Temporary credentials work almost identically to default admin credentials, with some differences:
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private RoleService roleService;
        @Resource
        private RolePager rolePager;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. docs/en/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 or "Cross-Origin Resource Sharing"</a> refers to the situations when a frontend running in a browser has JavaScript code that communicates with a backend, and the backend is in a different "origin" than the frontend.
    
    ## Origin
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        //                                                                           =========
        @Resource
        private WebAuthenticationService webAuthenticationService;
        @Resource
        private WebAuthPager webAuthPager;
        @Resource
        protected WebConfigService webConfigService;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NbtException.java

                            result += "Called name not present";
                            break;
                        case NO_RESOURCES:
                            result += "Called name present, but insufficient resources";
                            break;
                        case UNSPECIFIED:
                            result += "Unspecified error";
                            break;
                        default:
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        // Attribute
        // =========
    
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        @Resource
        protected QueryHelper queryHelper;
    
        @Resource
        protected SearchHelper searchHelper;
    
        @Resource
        protected HttpServletRequest request;
    
        public List<Map<String, Object>> documentItems;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 09:03:45 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top