Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for utils (0.19 sec)

  1. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.util;
    
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class QueryResponseListTest extends UnitFessTestCase {
        public void test_calculatePageInfo_page0() {
            QueryResponseList qrList;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Dfs.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import java.util.*;
    
    import jcifs.smb1.Config;
    import jcifs.smb1.UniAddress;
    import jcifs.smb1.util.*;
    
    import java.io.*;
    
    public class Dfs {
    
        static class CacheEntry {
            long expiration;
            HashMap map;
    
            CacheEntry(long ttl) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.util.Arrays;
    
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.bouncycastle.asn1.ASN1OutputStream;
    import org.bouncycastle.asn1.DERSequence;
    import org.slf4j.Logger;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/SessionTest.java

    import static org.junit.Assert.assertTrue;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.MalformedURLException;
    import java.net.UnknownHostException;
    import java.util.Collection;
    import java.util.Map;
    
    import org.junit.Assert;
    import org.junit.Assume;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Parameterized;
    import org.junit.runners.Parameterized.Parameters;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

            }
    
            public String getMailReturnPath() {
                return get(FessEnv.MAIL_RETURN_PATH);
            }
    
            @Override
            protected java.util.Map<String, String> prepareGeneratedDefaultMap() {
                java.util.Map<String, String> defaultMap = super.prepareGeneratedDefaultMap();
                defaultMap.put(FessEnv.lasta_di_SMART_DEPLOY_MODE, "warm");
    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)
  6. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

    import jcifs.Configuration;
    import jcifs.RuntimeCIFSException;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb1.com.SmbComNTCreateAndXResponse;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public abstract class AndXServerMessageBlock extends ServerMessageBlock {
    
        private static final Logger log = LoggerFactory.getLogger(AndXServerMessageBlock.class);
    
    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)
  7. src/main/java/jcifs/smb1/UniAddress.java

     */
    
    package jcifs.smb1;
    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    import java.io.IOException;
    import java.util.StringTokenizer;
    
    import jcifs.smb1.netbios.Lmhosts;
    import jcifs.smb1.netbios.NbtAddress;
    import jcifs.smb1.util.LogStream;
    
    /**
     * <p>Under normal conditions it is not necessary to use
     * this class to use jCIFS properly. Name resolusion is
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/GenericsUtil.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.lang.reflect.WildcardType;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import org.codelibs.core.collection.CollectionsUtil;
    
    /**
     * genericsを扱うためのユーティリティ・クラスです。
     *
     * @author koichik
     */
    public abstract class GenericsUtil {
    
    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)
  9. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

    import java.io.DataOutput;
    import java.io.DataInputStream;
    import java.io.DataOutputStream;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.UnknownHostException;
    
    import jcifs.smb1.util.Encdec;
    
    public class SmbRandomAccessFile implements DataOutput, DataInput {
    
        private static final int WRITE_OPTIONS = 0x0842;
    
        private SmbFile file;
        private long fp;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/StringUtil.java

     */
    package org.codelibs.core.lang;
    
    import static org.codelibs.core.collection.CollectionsUtil.newArrayList;
    
    import java.lang.reflect.Method;
    import java.util.List;
    import java.util.StringTokenizer;
    
    /**
     * {@link String}用のユーティリティクラスです。
     *
     * @author higa
     * @author shinsuke
     */
    public abstract class StringUtil {
    
        /**
         * A system line separator.
         */
    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)
Back to top