Search Options

Results per page
Sort
Preferred Languages
Advance

Results 651 - 660 of 1,826 for paras (0.03 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

        }
    
    
        /**
         * Just bypasses TransWaitNamedPipe - used by DCERPC bind.
         * 
         * @param b
         * @param off
         * @param len
         * @param flags
         * @throws IOException
         */
        public void writeDirect ( byte[] b, int off, int len, int flags ) throws IOException {
            if ( len <= 0 ) {
                return;
            }
    
            if ( this.tmp == null ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/hash/MessageDigestAlgorithmBenchmark.java

     * </ul>
     *
     * @author Kurt Alfred Kluever
     */
    public class MessageDigestAlgorithmBenchmark {
      @Param({"10", "1000", "100000", "1000000"})
      int size;
    
      @Param Algorithm algorithm;
      @Param HashMethod hashMethod;
    
      private enum HashMethod {
        MESSAGE_DIGEST_API() {
          @Override
          public byte[] hash(Algorithm algorithm, byte[] input) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/hash/MessageDigestAlgorithmBenchmark.java

     * </ul>
     *
     * @author Kurt Alfred Kluever
     */
    public class MessageDigestAlgorithmBenchmark {
      @Param({"10", "1000", "100000", "1000000"})
      int size;
    
      @Param Algorithm algorithm;
      @Param HashMethod hashMethod;
    
      private enum HashMethod {
        MESSAGE_DIGEST_API() {
          @Override
          public byte[] hash(Algorithm algorithm, byte[] input) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  4. docs/es/docs/deployment/index.md

    ## ¿Qué significa desplegar una aplicación?
    
    **Desplegar** una aplicación significa realizar una serie de pasos para hacerla **disponible para los usuarios**.
    
    Para una **API web**, normalmente implica ponerla en una **máquina remota**, con un **programa de servidor** que proporcione un buen rendimiento, estabilidad, etc, para que sus **usuarios** puedan **acceder** a la aplicación de manera eficiente y sin interrupciones o problemas.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SMBSignatureValidationException.java

         * 
         */
        public SMBSignatureValidationException () {
            super();
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public SMBSignatureValidationException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * @param msg
         */
        public SMBSignatureValidationException ( String msg ) {
            super(msg);
        }
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/sql/DriverManagerUtil.java

        /**
         * JDBCドライバを登録します。
         *
         * @param driverClass
         *            登録するJDBCドライバのクラス。{@literal null}であってはいけません
         */
        public static void registerDriver(final Class<Driver> driverClass) {
            assertArgumentNotNull("driverClass", driverClass);
            registerDriver(ClassUtil.newInstance(driverClass));
        }
    
        /**
         * JDBCドライバを登録します。
         *
         * @param driver
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/ScheduledJobException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * @param message Exception message.
         * @param cause Root cause for this exception.
         */
        public ScheduledJobException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * @param message Exception message.
         */
        public ScheduledJobException(final String message) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

         */
        protected final int getDataCount () {
            return this.dataCount;
        }
    
    
        /**
         * @param dataCount
         *            the dataCount to set
         */
        public final void setDataCount ( int dataCount ) {
            this.dataCount = dataCount;
        }
    
    
        /**
         * @param buffer
         */
        public void setBuffer ( byte[] buffer ) {
            this.txn_buf = buffer;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java

         * {@link ClassNotFoundRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ClassNotFoundRuntimeException(final ClassNotFoundException cause) {
            this(null, cause);
        }
    
        /**
         * {@link ClassNotFoundRuntimeException}を作成します。
         *
         * @param className
         *            クラス名
         * @param cause
         *            原因となった例外
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSourceTransformer.java

     */
    @Deprecated(since = "4.0.0")
    public interface ModelSourceTransformer {
        /**
         *
         * @param pomFile the pom file, cannot be null
         * @param context the context, cannot be null
         * @param  model the model to transform
         * @throws TransformerException if the transformation fails
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top