Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for Validation (0.2 sec)

  1. README.fips.md

    # MinIO FIPS Builds
    
    MinIO creates FIPS builds using a patched version of the Go compiler (that uses BoringCrypto, from BoringSSL, which is [FIPS 140-2 validated](https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2964.pdf)) published by the Golang Team [here](https://github.com/golang/go/tree/dev.boringcrypto/misc/boring).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 869 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * @param path The object to resolve as a `File`.
         * @param validation The validation to perform on the file.
         * @return The resolved file.
         * @see 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)
  8. tests/integration/security/fuzz/README.md

    # Fuzz test for security policy
    
    The directory includes fuzz tests for security policy:
    
    - request authentication: test potential bypass and crash in the JWT filter caused by malformed JWT token and common
      vulnerabilities in JWT validation.
    
    - authorization policy: test potential policy bypass issues caused by path normalization issues in Istio and Envoy.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/response-model.md

    !!! tip
        If you have strict type checks in your editor, mypy, etc, you can declare the function return type as `Any`.
    
        That way you tell the editor that you are intentionally returning anything. But FastAPI will still do the data documentation, validation, filtering, etc. with 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)
  10. pkg/config/schema/codegen/templates/collections.go.tmpl

    package {{.PackageName}}
    
    import (
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    {{ .CustomImport }}
      "reflect"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    {{- end}}
    )
    
    var (
    {{ range .Entries }}
    	{{ .Resource.Identifier }} = resource.Builder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top