Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 6,867 for Option (0.13 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
         * The key for the option to enable tracking of line/column numbers. This option is of type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/InternalOptions.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface InternalOptions {
        /**
         * Lookup the value for an {@link InternalOption}.
         */
        <T> Option.Value<T> getOption(InternalOption<T> option);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. subprojects/composite-builds/build.gradle.kts

        testImplementation(project(":file-watching"))
        testImplementation(project(":build-option"))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":dependency-management")))
        testImplementation(testFixtures(project(":core")))
    
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":launcher"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                         swift-library
    
         --use-defaults     Use default values for options not configured explicitly
    
         --no-use-defaults     Disables option --use-defaults.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description""") // include the next header to make sure all options are listed
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

        /**
         * Defines a specific property to report. If not set then all properties will appear in the report.
         *
         * @since 7.5
         */
        @Incubating
        @Input
        @Optional
        @Option(option = "property", description = "A specific property to output")
        public Property<String> getProperty() {
            return property;
        }
    
        @Internal
        @Override
        public ReportRenderer getRenderer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:disambiguate_task_options_from_built_in_options]]
    === Specify options for tasks
    To pass an option to a task, prefix the option name with `--` after the task name:
    
    ----
    $ gradle exampleTask --exampleOption=exampleValue
    ----
    
    ==== Disambiguate task options from built-in options
    Gradle does not prevent tasks from registering options that conflict with Gradle's built-in options, like `--profile` or `--help`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOptionFileOption.java

     * limitations under the License.
     */
    
    package org.gradle.external.javadoc;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents a Javadoc command-line option.
     *
     * @param <T> The type which this option represents.
     */
    @HasInternalProtocol
    public interface JavadocOptionFileOption<T> extends OptionLessJavadocOptionFileOption<T> {
        String getOption();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 951 bytes
    - Viewed (0)
  8. cmd/batch-expire_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

    /**
     * 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,
         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/config_gradle.adoc

    [[sec:configuring_jvm_memory]]
    == Configuring JVM memory
    
    The `org.gradle.jvmargs` Gradle property controls the VM running the build.
    It defaults to `-Xmx512m "-XX:MaxMetaspaceSize=384m"`
    
    You can adjust JVM options for Gradle in the following ways.
    
    *Option 1:* Changing JVM settings for the build VM:
    ====
    ----
    org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top