Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 278 for littoral (0.19 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

        <section>
            <title>Properties</title>
            <section>
                <title>Properties added by the <literal>thingo</literal> plugin</title>
                <titleabbrev><literal>thingo</literal> plugin</titleabbrev>
                <table>
                    <title>Properties - <literal>thingo</literal> plugin</title>
                    <thead>
                        <tr>
                            <td>Property</td>
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

           <!--<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE, LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"/>-->...
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/PropertiesUtil.java

        }
    
        /**
         * 指定のエンコーディングでファイルを読み込んで{@link Properties}にロードします(例外処理はラップします)。
         *
         * @param props
         *            プロパティセット。{@literal null}であってはいけません
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}や空文字列であってはいけません
         */
        public static void load(final Properties props, final File file, final String encoding) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/MethodDesc.java

        /**
         * {@literal public}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal public}メソッドの場合は{@literal true}
         */
        boolean isPublic();
    
        /**
         * {@literal static}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal static}メソッドの場合は{@literal true}
         */
        boolean isStatic();
    
        /**
         * {@literal final}メソッドの場合は{@literal true}を返します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/FileUtil.java

         *            ファイルのパス。{@literal null}や空文字列であってはいけません
         * @return 読み込んだテキスト
         */
        public static String readText(final String path) {
            assertArgumentNotEmpty("path", path);
            return readText(path, Charset.defaultCharset().name());
        }
    
        /**
         * デフォルトエンコーディングでファイルからテキストを読み込みます。
         *
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @return 読み込んだテキスト
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

            "custom-header",
          )
        bytesIn.writeByte(0x40) // Literal indexed
        bytesIn.writeByte(0x0a) // Literal name (len = 10)
        bytesIn.writeUtf8("custom-foo")
        bytesIn.writeByte(0x0d) // Literal value (len = 13)
        bytesIn.writeUtf8("custom-header")
        bytesIn.writeByte(0x40) // Literal indexed
        bytesIn.writeByte(0x0a) // Literal name (len = 10)
        bytesIn.writeUtf8("custom-bar")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 38.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/FieldDesc.java

        /**
         * {@literal public}フィールドの場合は{@literal true}を返します。
         *
         * @return {@literal public}フィールドの場合は{@literal true}
         */
        boolean isPublic();
    
        /**
         * {@literal static}フィールドの場合は{@literal true}を返します。
         *
         * @return {@literal static}フィールドの場合は{@literal true}
         */
        boolean isStatic();
    
        /**
         * {@literal final}フィールドの場合は{@literal true}を返します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

         * </p>
         *
         * @param jarFile
         *            Jarファイル。{@literal null}であってはいけません
         * @param prefix
         *            トラバースするリソースの名前が含む接頭辞。{@literal null}であってはいけません。
         *            空文字列でない場合はスラッシュ('/')で終了していなければなりません
         * @param handler
         *            クラスを処理するハンドラ。{@literal null}であってはいけません
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/xml/DomUtil.java

        }
    
        /**
         * 指定のエンコーディングで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 Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/MethodUtil.java

            }
            buf.append(")");
            return buf.toString();
        }
    
        /**
         * {@literal equals(Object)}メソッドかどうかを返します。
         *
         * @param method
         *            メソッド。{@literal null}であってはいけません
         * @return {@literal equals(Object)}メソッドなら{@literal true}
         */
        public static boolean isEqualsMethod(final Method method) {
            assertArgumentNotNull("method", method);
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top