Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,958 for additional (0.14 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildUpToDateWhen.sample.conf

    commands: [{
        executable: gradle
        args: clean alwaysInstrumentClasses
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: alwaysInstrumentClasses
        expected-output-file: incrementalBuildUpToDateWhenAgain.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/kotlin/build.gradle.kts

    plugins {
        idea
        `java-library`
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        create("intTest") {
            java {
                setSrcDirs(listOf("src/integration"))
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets["intTest"].java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/configurationCacheNoProblem.sample.conf

    commands: [{
      executable: gradle
      args: help
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: help
      expected-output-file: load.out
      allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 220 bytes
    - Viewed (0)
  4. docs/en/docs/advanced/index.md

    # Advanced User Guide
    
    ## Additional Features
    
    The main [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} should be enough to give you a tour through all the main features of **FastAPI**.
    
    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/path-operation-advanced-configuration.md

    !!! tip
        This is a low level extension point.
    
        If you only need to declare additional responses, a more convenient way to do it is with [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    You can extend the OpenAPI schema for a *path operation* using the parameter `openapi_extra`.
    
    ### OpenAPI Extensions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/build.gradle

    plugins {
        id 'idea'
        id 'java-library'
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        intTest {
            java {
                srcDirs = ['src/integration']
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets.intTest.java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 328 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileWithDiscoveredInputsIntegrationTest.groovy

            and:
            outputs.noneRecompiled()
    
            where:
            testCase                       | headerDirs
            "extra header dir after"       | '"src/main/headers", "src/additional-headers"'
            "extra header dir before"      | '"src/additional-headers", "src/main/headers"'
            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/java/modules-multi-project/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
Back to top