Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for littoral (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionBlocksSummaryRenderer.java

            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(extension.getPluginId()));
            title.appendChild(document.createTextNode(" plugin"));
    
            Element titleabbrev = document.createElement("titleabbrev");
            section.appendChild(titleabbrev);
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionPropertiesSummaryRenderer.java

            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(extension.getPluginId()));
            title.appendChild(document.createTextNode(" plugin"));
    
            Element titleabbrev = document.createElement("titleabbrev");
            section.appendChild(titleabbrev);
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockDetailRenderer.java

            section.setAttribute("role", "detail");
    
            Element title = document.createElement("title");
            section.appendChild(title);
            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(blockDoc.getName()));
            title.appendChild(document.createTextNode(" { }"));
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

            return convertMap(bundle);
        }
    
        /**
         * {@literal locale}が{@literal null}でなければ{@literal locale}を、{@literal null}
         * ならデフォルトのロケールを返します。
         *
         * @param locale
         *            ロケール
         * @return {@literal locale}が{@literal null}でなければ{@literal locale}を、
         *         {@literal null}ならデフォルトのロケールを返します。
         */
        protected static Locale getLocale(final Locale locale) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionMethodsSummaryRenderer.java

            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(extension.getPluginId()));
            title.appendChild(document.createTextNode(" plugin"));
    
            Element titleabbrev = document.createElement("titleabbrev");
            section.appendChild(titleabbrev);
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top