Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 262 for Bajram (0.18 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * of <tt>FILE_SHARE_READ</tt>, <tt>FILE_SHARE_WRITE</tt>, and
     * <tt>FILE_SHARE_DELETE</tt> logically OR'd together.
     *
     * @param   context A URL string
     * @param   name A path string relative to the <code>context</code> paremeter
     * @param   auth The credentials the client should use for authentication
     * @param   shareAccess Specifies what access other clients have while this file is open.
     * @throws  MalformedURLException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ParseRuntimeException(final ParseException cause) {
            super("ECL0050", asArray(cause), cause);
        }
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param s
         *            解析できなかった文字列
         */
        public ParseRuntimeException(final String s) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java

        private static final long serialVersionUID = -3649900343028907465L;
    
        private final Class<?> targetClass;
    
        /**
         * {@link IllegalAccessRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param cause
         *            原因となった例外
         */
        public IllegalAccessRuntimeException(final Class<?> targetClass, final IllegalAccessException cause) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

        private final Class<?> targetClass;
    
        private final String methodName;
    
        /**
         * {@link MethodNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param methodName
         *            メソッド名
         */
        public MethodNotStaticRuntimeException(final Class<?> targetClass, final String methodName) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.java

        /**
         * {@link CaseInsensitiveSet}を作成します。
         *
         * @param c
         *            コピー元のコレクション
         */
        public CaseInsensitiveSet(final Collection<String> c) {
            map = new CaseInsensitiveMap<>(Math.max((int) (c.size() / .75f) + 1, 16));
            addAll(c);
        }
    
        /**
         * {@link CaseInsensitiveSet}を作成します。
         *
         * @param initialCapacity
         *            初期容量
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ClassLoaderIterator.java

         *
         * @param classLoader
         *            クラスローダ。{@literal null}であってはいけません
         * @return {@link ClassLoaderIterator}をラップした{@link Iterable}
         */
        public static Iterable<ClassLoader> iterable(final ClassLoader classLoader) {
            return () -> new ClassLoaderIterator(classLoader);
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param classLoader
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        }
    
        public static String[] getParamValueArray(final HttpServletRequest request, final String param) {
            return simplifyArray(request.getParameterValues(param));
        }
    
        protected FacetInfo createFacetInfo(final HttpServletRequest request) {
            final String[] fields = getParamValueArray(request, "facet.field");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        private static final String CRAWLER_WEB_AUTH = CRAWLER_WEB_PREFIX + "auth";
    
        private static final String CRAWLER_USERAGENT = "crawler.useragent";
    
        private static final String CRAWLER_PARAM_PREFIX = "crawler.param.";
    
        private static final Object CRAWLER_FILE_AUTH = "crawler.file.auth";
    
        protected Pattern[] includedDocPathPatterns;
    
        protected Pattern[] excludedDocPathPatterns;
    
    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/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        /** パラメータ化された戻り値型の情報 */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
         * インスタンスを構築します。
         *
         * @param beanDesc
         *            このメソッドを所有するクラスの{@link BeanDesc}。{@literal null}であってはいけません
         * @param method
         *            メソッド。{@literal null}であってはいけません
         */
        public MethodDescImpl(final BeanDesc beanDesc, final Method method) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java

        private static final long serialVersionUID = 9033370905740809950L;
    
        private final String path;
    
        /**
         * {@link ResourceNotFoundRuntimeException}を作成します。
         *
         * @param path
         *            リソースのパス
         */
        public ResourceNotFoundRuntimeException(final String path) {
            super("ECL0055", asArray(path));
            this.path = path;
        }
    
        /**
         * パスを返します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top