Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,892 for Option (0.58 sec)

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

            then:
            rootProjectDslFixtureFor(BuildInitDsl.GROOVY).assertGradleFilesGenerated()
        }
    
        def "prompts to overwrite files if any exist and does not creates gradle files for no option"() {
            given: "a file exists in the build directory"
            targetDir.file(defaultFileName).touch()
    
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables.go

    )
    
    // RestoreCountersFlag is an option flag for Restore
    type RestoreCountersFlag bool
    
    // RestoreCounters a boolean true constant for the option flag RestoreCountersFlag
    const RestoreCounters RestoreCountersFlag = true
    
    // NoRestoreCounters a boolean false constant for the option flag RestoreCountersFlag
    const NoRestoreCounters RestoreCountersFlag = false
    
    // FlushFlag an option flag for Flush
    type FlushFlag bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

        static final String STACKTRACE = "{info}> {normal}Run with {userinput}--stacktrace{normal} option to get the stack trace."
        static final String INFO_OR_DEBUG = "{info}> {normal}Run with {userinput}--info{normal} or {userinput}--debug{normal} option to get more log output."
        static final String INFO = "{info}> {normal}Run with {userinput}--info{normal} option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/behind-a-proxy.md

    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Falls Sie Hypercorn verwenden, das hat auch die Option `--root-path`.
    
    !!! note "Technische Details"
        Die ASGI-Spezifikation definiert einen `root_path` für diesen Anwendungsfall.
    
        Und die Kommandozeilenoption `--root-path` stellt diesen `root_path` bereit.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

        }
    
        String getUnrecognizedOptionError() {
            def jvm = Jvm.current()
            if (jvm.ibmJvm) {
                return "Command-line option unrecognised: -foo"
            } else {
                return "Unrecognized option: -foo"
            }
        }
    
        String getWorkerTaskThatWaits() {
            return """
                public class WorkerTaskThatWaits extends WorkerTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            Node libraryLevel = findOrCreateFirstChildWithAttributeValue(configuration, "option", "name", "compilerLibraryLevel");
            setNodeAttribute(libraryLevel, "value", "Project");
    
            Node libraryName = findOrCreateFirstChildWithAttributeValue(configuration, "option", "name", "compilerLibraryName");
            setNodeAttribute(libraryName, "value", scalaCompilerLibrary.getName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            when:
            configurationCacheRun("greet", "-${option}greeting=hi")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle.kts': $reportedInput")
            }
    
            when:
            configurationCacheRun("greet", "-${option}greeting=hi")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      StringRef getDescription() const override {
        return "Unfreeze large constants.";
      }
    
      void runOnOperation() override;
    
     private:
      Option<int64_t> CreateSizeThresholdInBytesOption(const int64_t init_value) {
        return Option<int64_t>(
            *this, "size_threshold_in_bytes", llvm::cl::init(init_value),
            llvm::cl::desc(
                "Lower threshold of the constant size for unfreezing. Constants "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        api(project(":build-cache-base"))
        api(project(":build-cache-local"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
        api(project(":core-api"))
        api(project(":declarative-dsl-api"))
        api(project(":enterprise-logging"))
        api(project(":enterprise-operations"))
        api(project(":execution"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

            if (details.exceptionStyle == ExceptionStyle.NONE && !hasNonGradleSpecificCauseInAncestry) {
                context.appendResolution(output ->
                    runWithOption(output, STACKTRACE_LONG_OPTION, " option to get the stack trace.")
                );
            }
    
            boolean hasCompileError = hasNonGradleSpecificCauseInAncestry &&
                hasCauseAncestry(details.failure, CompilationFailedIndicator.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top