Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 1,826 for paras (0.03 sec)

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

        /**
         * {@link Method}オブジェクトによって表される基本となるメソッドを、指定したオブジェクトに対して指定したパラメータで呼び出します。
         *
         * @param <T>
         *            メソッドの戻り値の型
         * @param method
         *            メソッド。{@literal null}であってはいけません
         * @param target
         *            基本となるメソッドの呼び出し元のオブジェクト。{@literal static}メソッドの場合は{@literal null}
         * @param args
         *            メソッド呼び出しに使用される引数
         * @return このオブジェクトが表すメソッドを、パラメータ{@code args}を使用して{@code obj}にディスパッチした結果
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

                this.sub_authority[ i ] = id.sub_authority[ i - domsid.sub_authority_count ];
            }
        }
    
    
        /**
         * 
         * @param sid
         * @param type
         * @param domainName
         * @param acctName
         * @param decrementAuthority
         */
        public SID ( rpc.sid_t sid, int type, String domainName, String acctName, boolean decrementAuthority ) {
            this.revision = sid.revision;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/InvalidProjectModelException.java

        public InvalidProjectModelException(String projectId, String message, File pomLocation) {
            super(projectId, message, pomLocation);
        }
    
        /**
         * @param projectId
         * @param pomLocation      absolute path of the pom file
         * @param message
         * @param validationResult
         * @deprecated use {@link File} constructor for pomLocation
         */
        @Deprecated
        public InvalidProjectModelException(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            return getStatus() != 0;
        }
    
    
        /**
         * @param buffer
         * @param start
         * @param len
         * @throws SMBProtocolDecodingException
         */
        protected void haveResponse ( byte[] buffer, int start, int len ) throws SMBProtocolDecodingException {}
    
    
        /**
         * @param buffer
         * @param bufferIndex
         * @return
         * @throws Smb2ProtocolDecodingException
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

       * skipped.
       *
       * @param streamId server-initiated stream ID: an even number.
       * @param source location of data corresponding with this stream ID.
       * @param byteCount number of bytes to read or skip from the source.
       * @param last when true, there are no data frames to follow.
       */
      @Throws(IOException::class)
      fun onData(
        streamId: Int,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Queues.java

       *
       * @param q the blocking queue to be drained
       * @param buffer where to add the transferred elements
       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 26 14:11:14 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

         * method provides an atomic compare-and-update of some key's value.
         *
         * @param key the key under which to store the session data, must not be {@code null}
         * @param oldValue the expected data currently associated with the key, may be {@code null}
         * @param newValue the data to associate with the key, may be {@code null} to remove the mapping
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayMap.java

             */
            public Entry() {
            }
    
            /**
             * インスタンスを構築します。
             *
             * @param hashCode
             *            ハッシュ値
             * @param key
             *            キー
             * @param value
             *            値
             * @param next
             *            次のエントリ
             */
            public Entry(final int hashCode, final K key, final V value, final Entry<K, V> next) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/composition/DependencyManagementImporter.java

         *
         * @param target The model into which to import the dependency management section, must not be <code>null</code>.
         * @param sources The dependency management sections to import, may be <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

            for (final String s : values) {
                value = value.replace(s, "\\" + s);
            }
            return value;
        }
    
        public QueryStringBuilder params(final SearchRequestParams params) {
            this.params = params;
            return this;
        }
    
        public QueryStringBuilder sortField(final String sortField) {
            this.sortField = sortField;
            return this;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top