Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,070 for optionC (0.11 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        /** This option is deprecated and may be repurposed as Java debug in a future version.
         * Use {@code -X/--verbose} instead. */
        @Deprecated
        public static final String DEBUG = "debug";
    
        protected Options options;
    
        @SuppressWarnings("checkstyle:linelength")
        public CLIManager() {
            options = new Options();
            options.addOption(Option.builder(Character.toString(HELP))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        public abstract Property<Boolean> getUseDefaults();
    
        /**
        * Should we allow existing files in the build directory to be overwritten?
        *
        * This property can be set via command-line option '--overwrite'. Defaults to false.
        *
        * @since 8.9
        */
        @Incubating
        @Input
        @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            this.checks = checks
        }
    
        @Option(option = "channel", description = "Channel to use when running the performance test. By default, 'commits'.")
        void setChannel(@Nullable String channel) {
            this.channel = channel
        }
    
        @Option(option = "profiler", description = "Allows configuring a profiler to use. The same options as for Gradle profilers --profiler command line option are available and 'none' to disable profiling")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppCompilerArgsTransformerTest.groovy

        def transformer = new VisualCppCompilerArgsTransformer<NativeCompileSpec>() {
            @Override
            protected Optional<String> getLanguageOption() {
                return Optional.of("/GRADLE_DSL")
            }
        }
    
        def "includes options when debug and optimized enabled"() {
            def spec = Stub(NativeCompileSpec)
            spec.debuggable >> debug
            spec.optimized >> optimize
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. cmd/object-api-options.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 Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

            "-p", "--module-path", "--upgrade-module-path", "--patch-module"
        );
        // These options allow you to use : instead of a space to separate the
        // option from the value
        private static final List<String> UNRELIABLE_OPTION_PREFIXES = Arrays.asList(
            // bootclasspath can also end with /a or /p
            "-Xbootclasspath",
            // Defining a java agent
            "-javaagent",
            "-agentpath"
        );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.OutputFile;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.internal.buildconfiguration.DaemonJvmPropertiesDefaults;
    import org.gradle.internal.buildconfiguration.tasks.UpdateDaemonJvmModifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkTools.java

            public CompilationTask getTask(Writer out, JavaFileManager fileManager, DiagnosticListener<? super JavaFileObject> diagnosticListener, Iterable<String> options, Iterable<String> classes, Iterable<? extends JavaFileObject> compilationUnits) {
                return delegate.getTask(out, fileManager, diagnosticListener, options, classes, compilationUnits);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.generatedSourceOutputDirectory.fileProvider(file);
        }
    
        /**
         * If this option is set to a non-null directory, it will be passed to the Java compiler's `-h` option, prompting it to generate native headers to that directory.
         *
         * @since 4.10
         */
        @Optional
        @OutputDirectory
        public DirectoryProperty getHeaderOutputDirectory() {
            return headerOutputDirectory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension oldObject = 10;
    
      // DryRun indicates that modifications will definitely not be persisted for this request.
      // Defaults to false.
      // +optional
      optional bool dryRun = 11;
    
      // Options is the operation option structure of the operation being performed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top