Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for Validation (0.19 sec)

  1. pkg/kube/inject/testdata/inject/hello-openshift.yaml.injected

            - ""
            - -b
            - '*'
            - -d
            - 15090,15021,15020
            - --log_output_level=default:info
            - --run-validation
            - --skip-rule-apply
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-validation
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 21:30:10 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-cncf-networks.yaml.injected

            - ""
            - -b
            - '*'
            - -d
            - 15090,15021,15020
            - --log_output_level=default:info
            - --run-validation
            - --skip-rule-apply
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-validation
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/path-params.md

    !!! check
        So, with the same Python type declaration, **FastAPI** gives you data validation.
    
        Notice that the error also clearly states exactly the point where the validation didn't pass.
    
        This is incredibly helpful while developing and debugging code that interacts with your API.
    
    ## Documentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/en/docs/reference/request.md

    # `Request` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_return.txt

    stdout '^panic: testing: fuzz target must not return a value \[recovered\]$'
    
    -- go.mod --
    module test
    go 1.18
    -- x_test.go --
    package test
    
    import "testing"
    
    func FuzzReturnErr(f *testing.F) {
    	f.Add("hello, validation!")
    	f.Fuzz(func(t *testing.T, in string) string {
    		return in
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 16:06:39 UTC 2022
    - 314 bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/body-fields.md

    # Body – Felder
    
    So wie Sie zusätzliche Validation und Metadaten in Parametern der **Pfadoperation-Funktion** mittels `Query`, `Path` und `Body` deklarieren, können Sie auch innerhalb von Pydantic-Modellen zusätzliche Validation und Metadaten deklarieren, mittels Pydantics `Field`.
    
    ## `Field` importieren
    
    Importieren Sie es zuerst:
    
    === "Python 3.10+"
    
        ```Python hl_lines="4"
        {!> ../../../docs_src/body_fields/tutorial001_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 29 17:36:19 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

    dependencies {
        implementation(enforcedPlatform("org.junit:junit-bom:5.7.1"))
    }
    
    // tag::disable_validation[]
    tasks.withType<GenerateModuleMetadata> {
        // 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.5K bytes
    - Viewed (0)
  8. build-logic/uber-plugins/src/main/kotlin/gradlebuild.distribution-module.gradle.kts

     * limitations under the License.
     */
    
    // Common configuration for everything that belongs to the Gradle distribution
    plugins {
        id("gradlebuild.java-library")
        id("gradlebuild.task-properties-validation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 19:12:11 UTC 2022
    - 792 bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/validate-external-gradle-plugin.gradle.kts

                    .add(pluginJar)
            } else {
                Logging.getLogger(javaClass).warn("Validation won't be performed for plugin '{}' because we couldn't locate its jar file", pluginId)
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. 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)
Back to top