Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,117 for includes_ (0.21 sec)

  1. docs/en/docs/tutorial/response-model.md

    ...but continue reading below to see how to overcome that.
    
    ## Return Type and Data Filtering
    
    Let's continue from the previous example. We wanted to **annotate the function with one type** but return something that includes **more data**.
    
    We want FastAPI to keep **filtering** the data using the response model.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            then:
            builder.build() == ["-classpath", ""]
        }
    
        def "includes main options by default"() {
            spec.sourceCompatibility = "1.7"
    
            expect:
            builder.build() == ["-source", "1.7"] + defaultOptions
        }
    
        def "can include/exclude classpath"() {
            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         */
        @Override
        public Test include(String... includes) {
            patternSet.include(includes);
            return this;
        }
    
        /**
         * Adds include patterns for the files in the test classes directory (e.g. '**/*Test.class')).
         *
         * @see #setIncludes(Iterable)
         */
        @Override
        public Test include(Iterable<String> includes) {
            patternSet.include(includes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    .Setting {cpp} source set
    ====
    include::sample[dir="snippets/cpp/basic/kotlin/common",files="build.gradle.kts[tags=cpp-source-set]"]
    include::sample[dir="snippets/cpp/basic/groovy/common",files="build.gradle[tags=cpp-source-set]"]
    ====
    
    Now Gradle will only search directly in _src_ for the source and private headers and in _include_ for public headers.
    
    [[sec:custom_cpp_compile_link]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

        }
    
        @Override
        public CopySpec include(String... includes) {
            patternSet.include(includes);
            return this;
        }
    
        @Override
        public CopySpec include(Iterable<String> includes) {
            patternSet.include(includes);
            return this;
        }
    
        @Override
        public CopySpec include(Spec<FileTreeElement> includeSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    include::sample[dir="snippets/tutorial/projectApi/kotlin",files="build.gradle.kts[tags=project-name]"]
    include::sample[dir="snippets/tutorial/projectApi/groovy",files="build.gradle[tags=project-name]"]
    ----
    $ gradle -q check
    include::{snippetsPath}/tutorial/projectApi/tests/projectApi.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Wed Jun 12 09:22:58 UTC 2024
    - Last Modified: Thu Feb 20 19:53:57 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  8. LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Mon Jan 11 04:26:17 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  9. licenses/github.com/pires/go-proxyproto/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. licenses/go.opentelemetry.io/otel/exporters/otlp/otlptrace/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top