Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 491 - 500 of 773 for task0 (0.02 seconds)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusService.kt

        override fun close() {
            require(seenProjectsCount > 0) {
                "NullawayStatusService was created but no status tasks have run"
            }
    
            printResult {
                println("Collected status of ${seenProjectsCount} ${projectS(seenProjectsCount)}.")
    
                val enabledCount = projectsWithNullAwayEnabled.size
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Aug 20 13:18:23 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                        ) {
                            "isolatedProjectsIntegTest"
                        } else {
                            "${testCoverage.testType.asCamelCase()}Test"
                        }
                    tasks = "clean $testTaskName"
                    gradleParams = parameters
                    executionMode = BuildStep.ExecutionMode.ALWAYS
                }
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jan 07 10:42:35 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/eclipse.settings/org.eclipse.jdt.core.prefs

    org.eclipse.jdt.core.formatter.tabulation.size=4
    
    # Silence warnings about references to jdk internals. We intentionally use some
    # and have much tighter control of the warnings in the forbidden APIs gradle
    # task which is the definitive list of allowed references.
    org.eclipse.jdt.core.compiler.problem.forbiddenReference=ignore
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 16:53:28 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml

    <!-- There are some rules that we only want to enable in an IDE. These  -->
    <!-- are extracted to a separate file, and merged into the IDE-specific -->
    <!-- Checkstyle config by the `:configureIdeCheckstyle` task.           -->
    
    <module name="IdeFragment">
    
        <!-- See CONTRIBUTING.md for our guidelines on Javadoc -->
    
        <module name="MissingJavadocMethod">
            <property name="severity" value="warning" />
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 18:58:39 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/java/org/elasticsearch/gradle/internal/ExportElasticsearchBuildResourcesTaskIT.java

            assertOutputContains(
                getGradleRunner().withArguments("noConfigAfterExecution", "-s", "-i").buildAndFail().getOutput(),
                "buildResources can't be configured after the task ran"
            );
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  6. docs/zh/docs/advanced/async-tests.md

    由于测试函数现在是异步的,因此除了在测试中向 FastAPI 应用程序发送请求之外,您现在还可以调用(和使用 `await` 等待)其他 `async` 异步函数,就和您在代码中的其他任何地方调用它们的方法一样。
    
    /// tip | 提示
    
    如果您在测试程序中集成异步函数调用的时候遇到一个 `RuntimeError: Task attached to a different loop` 的报错(例如,使用 [MongoDB 的 MotorClient](https://stackoverflow.com/questions/41584243/runtimeerror-task-attached-to-a-different-loop) 时),请记住,只能在异步函数中实例化需要事件循环的对象,例如在 `@app.on_event("startup")` 回调中初始化。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

        }
    
        /**
         * Invoked after MavenSession instance has been created.
         *
         * This callback is intended to allow extensions to inject execution properties,
         * activate profiles and perform similar tasks that affect MavenProject
         * instance construction.
         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  8. scripts/translation_fixer.py

    non_translated_sections = (
        f"reference{os.sep}",
        "release-notes.md",
        "fastapi-people.md",
        "external-links.md",
        "newsletter.md",
        "management-tasks.md",
        "management.md",
        "contributing.md",
    )
    
    
    cli = typer.Typer()
    
    
    @cli.callback()
    def callback():
        pass
    
    
    def iter_all_lang_paths(lang_path_root: Path) -> Iterable[Path]:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  9. README.md

      </a>
    </div>
    
    
    ## 🐘 **Gradle Build Tool** 
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  10. docs/en/mkdocs.yml

        - tutorial/cors.md
        - tutorial/sql-databases.md
        - tutorial/bigger-applications.md
        - tutorial/stream-json-lines.md
        - tutorial/server-sent-events.md
        - tutorial/background-tasks.md
        - tutorial/metadata.md
        - tutorial/static-files.md
        - tutorial/testing.md
        - tutorial/debugging.md
      - Advanced User Guide:
        - advanced/index.md
        - advanced/stream-data.md
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top