Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,414 for optionB (0.12 sec)

  1. android/guava/src/com/google/common/base/Optional.java

     */
    @DoNotMock("Use Optional.of(value) or Optional.absent()")
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public abstract class Optional<T> implements Serializable {
      /**
       * Returns an {@code Optional} instance with no contained reference.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is equivalent to Java 8's
       * {@code Optional.empty}.
       */
      public static <T> Optional<T> absent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTask.java

         */
        @Input
        @Optional
        @Option(option = "variant", description = "The name of the single variant to report")
        public abstract Property<String> getVariantName();
    
        /**
         * Shows all variants, including legacy and deprecated configurations.
         *
         * @return property holding the flag to show all variants
         */
        @Input
        @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:17:34 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    message IntOrString {
      optional int64 type = 1;
    
      optional int32 intVal = 2;
    
      optional string strVal = 3;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 23:57:45 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top