Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,631 for Barham (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Result.java

     *
     * @param <T> the model type
     */
    public class Result<T> {
    
        /**
         * Success without warnings
         *
         * @param model
         */
        public static <T> Result<T> success(T model) {
            return success(model, Collections.emptyList());
        }
    
        /**
         * Success with warnings
         *
         * @param model
         * @param problems
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/DomUtil.java

            return getContentsAsStream(contents, null);
        }
    
        /**
         * 指定のエンコーディングでXMLの内容を {@link InputStream}として取得します。
         *
         * @param contents
         *            コンテンツ。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}の場合はプラットフォームのデフォルトエンコーディングが使われます
         * @return {@link InputStream}
         */
        public static InputStream getContentsAsStream(final String contents, final String encoding) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *
       * @param i the index
       * @param newValue the new value
       */
      public final void lazySet(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.lazySet(i, next);
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value and returns the old value.
       *
       * @param i the index
       * @param newValue the new value
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceUtil.java

        }
    
        /**
         * 指定のクラスローダからリソースを返します。見つからなかった場合は<code>null</code>を返します。
         *
         * @param path
         *            リソースのパス。{@literal null}や空文字列であってはいけません
         * @param extension
         *            リソースの拡張子
         * @param loader
         *            リソースを検索するクラスローダ。{@literal null}であってはいけません
         * @return リソース
         * @see #getResourcePath(String, String)
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * if not already present.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @param sourceRoot the new source root
         */
        void addCompileSourceRoot(@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Path sourceRoot);
    
        /**
         * Get the list of resources for the given project and scope
         *
         * @param project the project
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

        private int signSequence;
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         */
        public SMB1SigningDigest ( byte[] macSigningKey, boolean bypass ) {
            this(macSigningKey, bypass, 0);
        }
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         * @param initialSequence
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

            return parameters;
        }
    
        private static void decomposeParameterIntoUserInstructions(
                MojoDescriptor mojo, Parameter param, StringBuilder messageBuffer) {
            String expression = param.getExpression();
    
            if (param.isEditable()) {
                boolean isArray = param.getType().endsWith("[]");
                boolean isCollection = false;
                boolean isMap = false;
                boolean isProperties = false;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

        public interface Baz {
    
            /**
             * @param param
             * @return 戻り値
             */
            @SuppressWarnings("rawtypes")
            List rawList(List param);
    
            /**
             * @param param
             * @return 戻り値
             */
            List<String> genericList(List<Integer> param);
    
            /**
             * @param param
             * @return 戻り値
             */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/BeanDesc.java

        /**
         * 新しいインスタンスを作成します。
         *
         * @param <T>
         *            Beanクラスの型
         * @param args
         *            コンストラクタに渡す引数の並び
         * @return 新しいインスタンス
         */
        <T> T newInstance(Object... args);
    
        /**
         * 引数の型に応じた{@link ConstructorDesc}を返します。
         *
         * @param paramTypes
         *            コンストラクタに渡す引数型の並び
         * @return 引数の型に応じた{@link ConstructorDesc}
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
Back to top