Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 623 for code (0.15 sec)

  1. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            }
        }
    
        /**
         * <code>type</code>の実際の型を返します。
         * <ul>
         * <li><code>type</code>が<code>Class</code>の場合はそのまま返します。</li>
         * <li><code>type</code>がパラメータ化された型の場合はその原型を返します。</li>
         * <li><code>type</code>がワイルドカード型の場合は(最初の)上限境界を返します。</li>
         * <li><code>type</code>が型変数で引数{@code map}のキーとして含まれている場合はその変数の実際の型引数を返します。</li>
         * <li><code>type</code>が型変数で引数{@code map}のキーとして含まれていない場合は(最初の)上限境界を返します。</li>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/net/URLUtil.java

            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * 文字列表現から<code>URL</code>オブジェクトを作成します。
         *
         * @param spec
         *            <code>URL</code>として構文解析される文字列。{@literal null}や空文字列であってはいけません
         * @return <code>URL</code>
         */
        public static URL create(final String spec) {
            assertArgumentNotEmpty("spec", spec);
    
            try {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * 文字列が<code>null</code>または空文字列なら<code>true</code>を返します。
         *
         * @param text
         *            文字列
         * @return 文字列が<code>null</code>または空文字列なら<code>true</code>
         */
        public static final boolean isEmpty(final String text) {
            return text == null || text.length() == 0;
        }
    
        /**
         * 文字列が<code>null</code>でも空文字列でもなければ<code>true</code>を返します。
         *
         * @param text
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * </code></td><td width="20%"><code>
     *  ../.././.././../foo/
     * </code></td><td><code>
     *  smb1://host/foo/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/zig/zag
     * </code></td><td width="20%"><code>
     *  /
     * </code></td><td><code>
     *  smb1://host/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://server/
     * </code></td><td width="20%"><code>
     *  ../
    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)
  5. src/main/java/org/codelibs/core/io/ResourceUtil.java

     */
    package org.codelibs.core.io;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.Properties;
    
    import org.codelibs.core.exception.IORuntimeException;
    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)
  6. src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java

     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.ParameterizedType;
    
    /**
     * パラメタ化されたクラスを扱うためのインターフェースです。
     *
     * @author koichik
     */
    public interface ParameterizedClassDesc {
    
        /**
         * このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code>を返します。
         *
         * @return このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code>
         */
        boolean isParameterizedClass();
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/PythonJob.java

    package org.codelibs.fess.job;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import javax.servlet.ServletContext;
    
    import org.apache.commons.lang3.RandomStringUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  8. pom.xml

    			<groupId>com.fasterxml.jackson.core</groupId>
    			<artifactId>jackson-core</artifactId>
    			<version>${jackson.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.fasterxml.jackson.core</groupId>
    			<artifactId>jackson-annotations</artifactId>
    			<version>${jackson.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.fasterxml.jackson.core</groupId>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    log.info("Failed to send node status request for " + addr, ioe);
                    throw new UnknownHostException(addr.toString());
                }
                if ( response.received && response.resultCode == 0 ) {
    
                    /*
                     * For name queries resolved by different sources (e.g. WINS,
                     * BCAST, Node Status) we need to augment the hashcode generated
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

     */
    package org.codelibs.fess.mylasta.direction;
    
    import org.lastaflute.core.direction.ObjectiveConfig;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    /**
     * @author FreeGen
     */
    public interface FessEnv {
    
        /** The key of the configuration. e.g. warm */
        String lasta_di_SMART_DEPLOY_MODE = "lasta_di.smart.deploy.mode";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top