Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 511 for JAVADOC (0.33 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

            //First, we replace slashes because they have special meaning in the javadoc options file
            //Then, we replace every linebreak with slash+linebreak. Slash is needed according to javadoc options file format
            write(value.replaceAll("\\\\", "\\\\\\\\")
                    //below does not help on windows environments. I was unable to get plain javadoc utility to work successfully with multiline options _in_ the options file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

     * limitations under the License.
     */
    
    package org.gradle.external.javadoc;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.tasks.Input;
    import org.gradle.external.javadoc.internal.JavadocOptionFile;
    import org.gradle.external.javadoc.internal.JavadocOptionFileOptionInternal;
    import org.gradle.external.javadoc.internal.JavadocOptionFileOptionInternalAdapter;
    import org.gradle.internal.Cast;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/site/apt/index.apt

     The main component is <<<ModelBuilder>>>
     ({{{./apidocs/org/apache/maven/model/building/ModelBuilder.html}javadoc}},
     {{{./xref/org/apache/maven/model/building/ModelBuilder.html}source}}),
     with its <<<DefaultModelBuilder>>> implementation
     ({{{./apidocs/org/apache/maven/model/building/DefaultModelBuilder.html}javadoc}},
     {{{./xref/org/apache/maven/model/building/DefaultModelBuilder.html}source}})
     that manages the steps sequence.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/sourceSets/kotlin/build.gradle.kts

    }
    
    // tag::jar[]
    tasks.register<Jar>("intTestJar") {
        from(sourceSets["intTest"].output)
    }
    // end::jar[]
    
    // tag::javadoc[]
    tasks.register<Javadoc>("intTestJavadoc") {
        source(sourceSets["intTest"].allJava)
        classpath = sourceSets["intTest"].compileClasspath
    }
    // end::javadoc[]
    
    // tag::test[]
    tasks.register<Test>("intTest") {
        testClassesDirs = sourceSets["intTest"].output.classesDirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 789 bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.compile.CompileOptions.annotationProcessorGeneratedSourcesDirectory don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.javadoc.Javadoc.destinationDir don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.javadoc.Javadoc.maxMemory don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.testing.Test.forkEvery don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.iml.xml

          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseSourcesAndJavadocJarsIntegrationTest.groovy

            }
            if (!javadoc.isEmpty()) {
                assert lib.javadocLocation != null: "no javadoc attached"
                assert lib.javadocLocation.endsWith("/${javadoc.get(0)}!/")
            }
        }
    
        @Override
        void ideFileContainsGradleApi(String apiJarPrefix) {
            def apiLib = findApiLibrary(apiJarPrefix)
            assert apiLib.sourcePath == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

     * limitations under the License.
     */
    
    package org.gradle.external.javadoc;
    
    /**
     * This enum maps to the -verbose and -quiet options of the javadoc executable.
     */
    public enum JavadocOutputLevel {
        /**
         * -verbose
         *
         * Provides more detailed messages while javadoc is running. Without the verbose option,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java

            }
        }
    
        /* (non-Javadoc)
         * @see org.apache.maven.profiles.ProfileManager#explicitlyActivate(java.util.List)
         */
        public void explicitlyActivate(List<String> profileIds) {
            for (String profileId1 : profileIds) {
                explicitlyActivate(profileId1);
            }
        }
    
        /* (non-Javadoc)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

            events("passed")
        }
    }
    
    tasks.check { dependsOn(integrationTest) }
    // end::integ-test-task[]
    
    // tag::defining-custom-javadoc-task[]
    tasks.register<Javadoc>("testJavadoc") {
        source = sourceSets.test.get().allJava
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top