Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 941 for LITERAL (0.12 sec)

  1. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         * <tr>
         * <th>JavaBeansのプロパティ名</th>
         * <th>{@literal Map}のプロパティ名</th>
         * </tr>
         * <tr>
         * <td>{@literal foo}</td>
         * <td>{@literal foo}</td>
         * </tr>
         * <tr>
         * <td>{@literal foo_bar}</td>
         * <td>{@literal foo.bar}</td>
         * </tr>
         * <tr>
         * <td>{@literal foo_bar_baz}</td>
         * <td>{@literal foo.bar.baz}</td>
         * </tr>
         * </table>
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                            <listitem><literal>RUNTIME</literal> -> <literal>project.configurations.runtimeClasspath - project.configurations.compileClasspath</literal></listitem>
                            <listitem><literal>TEST</literal> -> <literal>project.configurations.testRuntimeClasspath - project.configurations.runtimeClasspath</literal></listitem>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. 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) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/nio/ChannelUtil.java

                throw new IORuntimeException(e);
            }
        }
    
        /**
         * ファイルチャネル{@literal from}を{@literal to}へ転送します。
         *
         * @param from
         *            転送元のファイルチャネル。{@literal null}であってはいけません
         * @param to
         *            転送先のファイルチャネル。{@literal null}であってはいけません
         * @return 転送されたバイト数
         */
        public static long transfer(final FileChannel from, final FileChannel to) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.SourceSetOutput.xml

                        <td>Default with <literal>java</literal> plugin</td>
                    </tr>
                </thead>
                <tr>
                    <td>classesDirs</td>
                    <td>a file collection of each <literal><replaceable>${project.layout.buildDirectory}</replaceable>/classes/<replaceable>${sourceDirectorySet.name}</replaceable>/<replaceable>${sourceSet.name}</replaceable></literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. 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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.ProjectReportsPluginConvention.xml

                        <td>Name</td>
                        <td>Default with <literal>project-report</literal> plugin</td>
                    </tr>
                </thead>
                <tr>
                    <td>projectReportDirName</td>
                    <td><literal>'project'</literal></td>
                </tr>
                <tr>
                    <td>projectReportDir</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 899 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent.xml

                        <td>Default with <literal>eclipse</literal> and <literal>war</literal> plugins</td>
                        <td>Default with <literal>eclipse</literal> and <literal>ear</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>sourceDirs</td>
                    <td>source dirs from <literal>project.sourceSets.main.allSource</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/collection/Maps.java

     * <p>
     * 本クラスをstatic importすることにより、次のように{@literal Map}のインスタンスを簡潔に初期化することができます。
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.collection.Maps.*;
     *
     * Map&lt;String, Integer&gt; map = map("a", 1).$("b", 2).$("c", 3).$();
     * </pre>
     *
     * @author koichik
     * @param <K>
     *            {@literal Map}のキーの型
     * @param <V>
     *            {@literal Map}の値の型
     */
    public class Maps<K, V> {
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/go/scanner/scanner_test.go

    	{token.FLOAT, ".0", literal},
    	{token.FLOAT, "3.14159265", literal},
    	{token.FLOAT, "1e0", literal},
    	{token.FLOAT, "1e+100", literal},
    	{token.FLOAT, "1e-100", literal},
    	{token.FLOAT, "2.71828e-1000", literal},
    	{token.IMAG, "0i", literal},
    	{token.IMAG, "1i", literal},
    	{token.IMAG, "012345678901234567889i", literal},
    	{token.IMAG, "123456789012345678890i", literal},
    	{token.IMAG, "0.i", literal},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top