Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 1,627 for param6 (0.07 sec)

  1. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

        }
    
        /**
         * コンストラクタの引数型を表現する{@link ParameterizedClassDesc}を作成して返します。
         *
         * @param constructor
         *            コンストラクタ。{@literal null}であってはいけません
         * @param index
         *            引数の位置
         * @param map
         *            パラメータ化された型が持つ型変数をキー、型引数を値とする{@link Map}。{@literal null}
         *            であってはいけません
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/nio/ChannelUtil.java

                throw new IORuntimeException(e);
            }
        }
    
        /**
         * ファイルチャネルの内容をバイトバッファに読み込みます。
         *
         * @param channel
         *            ファイルチャネル。{@literal null}であってはいけません
         * @param buffer
         *            バイトバッファ。{@literal null}であってはいけません
         * @param position
         *            読み込みを開始する位置
         * @return 読み込んだバイト数
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/EmptyArgumentException.java

        }
    
        /**
         * {@link EmptyArgumentException}を作成します。
         *
         * @param argName
         *            引数の名前
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable 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)
  4. guava/src/com/google/common/collect/ObjectArrays.java

       *
       * @param reference any array of the desired type
       * @param length the length of the new array
       */
      public static <T extends @Nullable Object> T[] newArray(T[] reference, int length) {
        return Platform.newArray(reference, length);
      }
    
      /**
       * Returns a new array that contains the concatenated contents of two arrays.
       *
       * @param first the first array of elements to concatenate
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    
        /**
         * Reduces path consumed by the given value
         * 
         * @param i
         */
        void stripPathConsumed ( int i );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/JAASAuthenticator.java

         * @param properties
         *            JAAS properties to set
         * @param domain
         * @param username
         * @param password
         */
        public JAASAuthenticator ( Map<String, ?> properties, String domain, String username, String password ) {
            super(null, domain, username, password);
            this.serviceName = "static";
            this.configuration = new StaticJAASConfiguration(properties);
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

        private byte[] fileId;
        private Smb2QueryDirectoryResponse response;
    
    
        /**
         * @param th
         * @param parent
         * @param wildcard
         * @param filter
         * @param searchAttributes
         * @throws CIFSException
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 16:15:08 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

        /**
         * Creates a new Builder instance for constructing a ParserRequest.
         *
         * @param command the Maven command to be executed
         * @param commandName the Maven command Name to be executed
         * @param args the command-line arguments
         * @param logger the logger to be used during parsing
         * @param messageBuilderFactory the factory for creating message builders
         * @return a new Builder instance
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

            this.maxParameterCount = 6;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param attributes
         * @param createTime
         * @param lastWriteTime
         * @param lastAccessTime
         */
        public Trans2SetFileInformation ( Configuration config, int fid, int attributes, long createTime, long lastWriteTime, long lastAccessTime ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * does not actually resolve the artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
         * @param root the Maven Dependency, must not be {@code null}
         * @param scope the {link PathScope} to collect dependencies, must not be {@code null}
         * @return the collection result, never {@code null}
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top