Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for Validation (0.24 sec)

  1. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/build.gradle

    dependencies {
        implementation enforcedPlatform('org.junit:junit-bom:5.7.1')
    }
    
    // tag::disable_validation[]
    tasks.withType(GenerateModuleMetadata).configureEach {
        // The value 'enforced-platform' is provided in the validation
        // error message you got
        suppressedValidationErrors.add('enforced-platform')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-nested-models.md

        }
    }
    ```
    
    Again, doing just that declaration, with **FastAPI** you get:
    
    * Editor support (completion, etc.), even for nested models
    * Data conversion
    * Data validation
    * Automatic documentation
    
    ## Special types and validation
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass_test.mlir

    // RUN: tf-opt -verify-clustering-pass  -split-input-file -verify-diagnostics %s | FileCheck %s
    // Tests the VerifyClusteringPass Pass, ensures that an error is thrown when validation fails.
    
    func.func @testNotTfDialect(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
     // expected-error@below {{op is in dialect chlo not in tf functional dialect}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/query-params-str-validations.md

        ```
    
    ## Recap
    
    You can declare additional validations and metadata for your parameters.
    
    Generic validations and metadata:
    
    * `alias`
    * `title`
    * `description`
    * `deprecated`
    
    Validations specific for strings:
    
    * `min_length`
    * `max_length`
    * `pattern`
    
    In these examples you saw how to declare validations for `str` values.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/README.md

    stdout.
    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    * `gotracevalidate` parses traces and validates them.
      It performs more rigorous checks than the parser does on its own,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/README.md

      name: httpbin
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway # Expected: no validation error since this gateway exists
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin-bogus
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway-bogus # Expected: validation error since this gateway does not exist
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

                $repositoriesBlock
                dependencies {
                    implementation(gradleKotlinDsl())
                }
                tasks.withType<KotlinCompile>().configureEach {
                    // Work around JVM validation issue: https://youtrack.jetbrains.com/issue/KT-66919
                    jvmTargetValidationMode = org.jetbrains.kotlin.gradle.dsl.jvm.JvmTargetValidationMode.WARNING
                }
            """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

        override fun uri(path: Any): URI =
            fileOperations.uri(path)
    
        override fun file(path: Any): File =
            fileOperations.file(path)
    
        override fun file(path: Any, validation: PathValidation): File =
            fileOperations.file(path, validation)
    
        override fun files(vararg paths: Any): ConfigurableFileCollection =
            fileOperations.configurableFiles(*paths)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         *
         * @param path The object to resolve as a `File`.
         * @param validation The validation to perform on the file.
         * @return The resolved file.
         * @see KotlinInitScript.file
         */
        @Suppress("unused")
        fun file(path: Any, validation: PathValidation): File =
            fileOperations.file(path, validation)
    
        /**
         * Creates a [ConfigurableFileCollection] containing the given files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/cookie-params.md

        ```
    
    ## Declare `Cookie` parameters
    
    Then declare the cookie parameters using the same structure as with `Path` and `Query`.
    
    The first value is the default value, you can pass all the extra validation or annotation parameters:
    
    === "Python 3.10+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/cookie_params/tutorial001_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="9"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top