Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 1,627 for param7 (0.1 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

          }
          return annotations;
        }
      }
    
      /**
       * Incorporate additional requirements into an existing requirements object.
       *
       * @param requirements the existing requirements object
       * @param moreRequirements more requirements to incorporate
       * @param source the source of the additional requirements (used only for error reporting)
       * @return the existing requirements object, modified to include the additional requirements
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/FileUtil.java

         *
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @return 読み込んだテキスト
         */
        public static String readText(final File file) {
            assertArgumentNotNull("file", file);
            return readText(file, Charset.defaultCharset().name());
        }
    
        /**
         * 指定のエンコーディングでファイルからテキストを読み込みます。
         *
         * @param path
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

         * potential NTLM fallback (if the server does not support kerberos).
         * 
         * @param subject
         *            represents the user who perform Kerberos authentication. Should at least contain a TGT for the user.
         * @param domain
         *            domain for NTLM fallback
         * @param username
         *            user for NTLM fallback
         * @param password
         *            password for NTLM fallback
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  10. 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)
Back to top