Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for loader (0.2 sec)

  1. src/main/java/org/codelibs/core/io/ResourceUtil.java

         *            リソースの拡張子
         * @param loader
         *            リソースを検索するクラスローダ。{@literal null}であってはいけません
         * @return リソース
         * @see #getResourcePath(String, String)
         */
        public static URL getResourceNoException(final String path, final String extension, final ClassLoader loader) {
            assertArgumentNotNull("loader", loader);
    
            if (path == null || loader == null) {
                return null;
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                }
                if (logger.isDebugEnabled()) {
                    logger.debug("Finished to write {}", url);
                }
            });
            return response;
        }
    
        protected void writeNoCache(final StreamResponse response, final ResponseData responseData) {
            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/core/lang/ClassUtil.java

         */
        @SuppressWarnings("unchecked")
        public static <T> Class<T> forName(final String className, final ClassLoader loader) throws ClassNotFoundRuntimeException {
            assertArgumentNotEmpty("className", className);
            try {
                return (Class<T>) Class.forName(className, true, loader);
            } catch (final ClassNotFoundException e) {
                throw new ClassNotFoundRuntimeException(e);
            }
        }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/adminlte.min.js

    d).css("position")&&(r=!0),0===n&&0===i?(t(o).css("bottom",e.footer),t(o).css("top",e.header),t(o+", "+o+" "+a).css("height",e.window-(e.header+e.footer))):i<=e.footer?!1===r?(t(o).css("bottom",e.footer-i),t(o+", "+o+" "+a).css("height",e.window-(e.footer-i))):t(o).css("bottom",e.footer):n<=e.header?!1===s?(t(o).css("top",e.header-n),t(o+", "+o+" "+a).css("height",e.window-(e.header-n))):t(o).css("top",e.header):!1===s?(t(o).css("top",0),t(o+", "+o+" "+a).css("height",e.window)):t(o).css("top",e...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 23.7K bytes
    - Viewed (3)
  5. src/main/java/jcifs/smb1/Config.java

            }
        }
    
        /**
         * Load the <code>Config</code> with properties from the stream
         * <code>in</code> from a <code>Properties</code> file.
         */
    
        public static void load( InputStream in ) throws IOException {
            if( in != null ) {
                prp.load( in );
            }
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            final Classes classes = jvmStats.getClasses();
            final JvmClassesObj jvmClassesObj = new JvmClassesObj();
            jvmObj.classes = jvmClassesObj;
            jvmClassesObj.loaded = classes.getLoadedClassCount();
            jvmClassesObj.total_loaded = classes.getTotalLoadedClassCount();
            jvmClassesObj.unloaded = classes.getUnloadedClassCount();
            jvmObj.uptime = jvmStats.getUptime().getMillis();
            return jvmObj;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                /*
                 * A word about communicating header info to andx smbs
                 *
                 * This is where we recursively invoke the provided andx smb
                 * object to write it's parameter words and bytes to our outgoing
                 * array. Incedentally when these andx smbs are created they are not
                 * necessarily populated with header data because they're not writing
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(DataConfig.class);
    
        private static final String CRAWLER_WEB_PREFIX = "crawler.web.";
    
        private static final String CRAWLER_WEB_HEADER_PREFIX = CRAWLER_WEB_PREFIX + "header.";
    
        private static final String CRAWLER_WEB_AUTH = CRAWLER_WEB_PREFIX + "auth";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="dict"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_ru.properties

    errors.invalid_header_for_request_file=Invalid header: {0}
    
    errors.invalid_query_unknown=The given query has unknown condition.
    errors.invalid_query_parse_error=The given query is invalid.
    errors.invalid_query_sort_value=The given sort ({0}) is invalid.
    errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
    errors.invalid_query_unsupported_sort_order=The given sort order ({0}) is not supported.
    
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
Back to top