Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,984 for Defaults (0.16 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        }
    
        def "user can use defaults and provide no options to generate a basic project non-interactively"() {
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
                "--use-defaults"
            )
            closeInteractiveExecutor(handle)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

        }
    
        /**
         * The type of the signature artifact.
         *
         * <p>Defaults to the extension of the {@link #getToSign() file to sign} plus the extension of the {@link #getSignatureType() signature type}.
         * For example, when signing the file ‘my.zip’ with a signature type with extension ‘sig’, the default type is ‘zip.sig’.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

                "jit_compile=True. Defaults to false."),
           Flag("tf_xla_use_device_api_for_compile_on_demand",
                &ops_flags->tf_xla_use_device_api.enabled_for_compile_on_demand_,
                "If true, uses Device API (PjRt) for compiling and executing ops "
                "one by one in 'on-demand' mode. Defaults to false."),
           Flag("tf_xla_use_device_api_for_auto_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     * <p>
     * The following example demonstrates the various configuration options.
     * Keep in mind that all properties have sensible defaults; only configure them explicitly
     * if the defaults don't match your needs.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'eclipse'
     * }
     *
     * configurations {
     *   provided
     *   someBoringConfig
     * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. pkg/log/options.go

    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stdout.
    	OutputPaths []string
    
    	// ErrorOutputPaths is a list of file system paths to write logger errors to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stderr.
    	ErrorOutputPaths []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    ====
    
    === Default values of the JaCoCo Task extension
    
    .JaCoCo task extension default values
    ====
    include::sample[dir="snippets/testing/jacoco-quickstart/kotlin",files="build.gradle.kts[tags=testtask-configuration-defaults]"]
    include::sample[dir="snippets/testing/jacoco-quickstart/groovy",files="build.gradle[tags=testtask-configuration-defaults]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,5,opt,name=minReadySeconds"`
    
    	// revisionHistoryLimit is the number of old ReplicaSets to retain to allow rollback.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 2.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

        @Override
        public void beforeEach(Action<? super T> configAction) {
            mutateChildren(ModelActionRole.Defaults, elementType, "beforeEach()", configAction);
        }
    
        // Called from transformed DSL rules
        public void beforeEach(DeferredModelAction configAction) {
            mutateChildren(ModelActionRole.Defaults, elementType, configAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // sideEffects == Unknown or Some. Defaults to Unknown.
      // +optional
      optional string sideEffects = 6;
    
      // TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
      // the webhook call will be ignored or the API call will fail based on the
      // failure policy.
      // The timeout value must be between 1 and 30 seconds.
      // Default to 30 seconds.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        checkArgument(type != implementation, "Don't register %s to itself!", type);
        checkArgument(
            !DEFAULTS.containsKey(type), "A default value was already registered for %s", type);
        checkArgument(
            implementations.put(type, implementation) == null,
            "Implementation for %s was already registered",
            type);
      }
    
      static {
        setImplementation(Appendable.class, StringBuilder.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top