Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 1,826 for paras (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

        private byte expectInfoType;
        private byte expectInfoClass;
        private Decodable info;
    
    
        /**
         * @param config
         * @param expectInfoType
         * @param expectInfoClass
         */
        public Smb2QueryInfoResponse ( Configuration config, byte expectInfoType, byte expectInfoClass ) {
            super(config);
            this.expectInfoType = expectInfoType;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmSsp.java

         * HttpServletResponse, byte[])} method to perform NTLM authentication
         * for the specified servlet request.
         * 
         * @param tc
         *
         * @param req
         *            The request being serviced.
         * @param resp
         *            The response.
         * @param challenge
         *            The domain controller challenge.
         * @return credentials passed in the servlet request
         * @throws IOException
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                    return methodDesc;
                }
            }
            return null;
        }
    
        /**
         * 引数が引数型に適合するかチェックします。
         *
         * @param paramTypes
         *            引数型の並び
         * @param args
         *            引数の並び
         * @param adjustNumber
         *            引数型が数値型の場合に引数を適合するように変換する場合は{@literal true}
         * @return 引数が引数型に適合する場合は{@literal true}
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Response.java

    
        /**
         * @return status code
         */
        int getErrorCode ();
    
    
        /**
         * @param k
         */
        void setMid ( long k );
    
    
        /**
         * @return mid
         */
        long getMid ();
    
    
        /**
         * 
         * @param buffer
         * @param i
         * @param size
         * @return whether signature verification is successful
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                private final List<RemoteRepository> repositories;
    
                /**
                 * Creates a request with the specified properties.
                 *
                 * @param session      {@link Session}
                 * @param rootArtifact The root dependency whose transitive dependencies should be collected, may be {@code
                 *                     null}.
                 */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

         * <code>/aaa/bbb/ccc/ddd/eee.txt</code>というリソースが存在すると、 ハンドラには
         * <code>ccc/ddd/eee.txt</code>というパスが渡されます。
         * </p>
         *
         * @param rootDir
         *            ルートディレクトリ。{@literal null}であってはいけません
         * @param baseDirectory
         *            ベースディレクトリ
         * @param handler
         *            リソースを処理するハンドラ。{@literal null}であってはいけません
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SigningDigest.java

         * The MD5 digest of the MAC signing key + the entire SMB is taken;
         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data The data.
         * @param offset The starting offset at which the SMB header begins.
         * @param length The length of the SMB data starting at offset. 
         */
        void sign(byte[] data, int offset, int length,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

            forEach(rootDir, null, handler);
        }
    
        /**
         * ファイルシステムに含まれるクラスをトラバースします。
         *
         * @param rootDir
         *            ルートディレクトリ。{@literal null}であってはいけません
         * @param rootPackage
         *            ルートパッケージ
         * @param handler
         *            クラスを処理するハンドラ。{@literal null}であってはいけません
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/text/Tokenizer.java

        /**
         * 単語用の文字として設定します。
         *
         * @param ctype2
         *            文字のタイプの配列
         * @param val
         *            文字コード
         */
        protected static void wordChar(final byte[] ctype2, final int val) {
            ctype2[val] |= CT_ALPHA;
        }
    
        /**
         * 空白用の文字として設定します。
         *
         * @param ctype2
         *            文字のタイプの配列
         * @param low
         *            最小の文字コード
         * @param hi
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/CIFSContext.java

     */
    public interface CIFSContext {
    
        /**
         * Get a resource
         * 
         * @param url
         * @return the SMB resource at the specified location
         * @throws CIFSException
         */
        SmbResource get ( String url ) throws CIFSException;
    
    
        /**
         * Get a pipe resource
         * 
         * @param url
         * @param pipeType
         *            the type of the pipe
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.7K bytes
    - Viewed (0)
Back to top