Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for Validation (1.04 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/K2IntegrationTest.kt

                            id = "my-plugin"
                            implementationClass = "MyPlugin"
                        }
                    }
                }
                // Work around JVM validation issue: https://youtrack.jetbrains.com/issue/KT-66919
                tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * Resolves a file path relative to this script's target base directory.
         *
         * @param path The object to resolve as a `File`.
         * @param validation The validation to perform on the file.
         * @return The resolved file.
         * @see file
         */
        fun file(path: Any, validation: PathValidation): File
    
        /**
         * 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
    - 12.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot.libsonnet

              Size of each xDS push.
            |||
          ),
        ]),
      ], panelHeight=10, startY=3)
      + grid.makeGrid([
        row.new('Webhooks')
        + row.withPanels([
          panels.timeSeries.simple(
            'Validation', queries.validateWebhook, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.simple(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Prepares to load or create a model. Does nothing if the cached model is available or else prepares to capture
         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/extra-models.md

    We could do better.
    
    We can declare a `UserBase` model that serves as a base for our other models. And then we can make subclasses of that model that inherit its attributes (type declarations, validation, etc).
    
    All the data conversion, validation, documentation, etc. will still work as normally.
    
    That way, we can declare just the differences between the models (with plaintext `password`, with `hashed_password` and without password):
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/FlowParametersInstantiator.kt

                                        (problemsService as InternalProblems).internalReporter.create {
                                            id("invalid-dependency", "Property cannot carry dependency", GradleCoreProblemGroup.validation().property())
                                            contextualLabel("Property '$propertyName' cannot carry a dependency on $dependency as these are not yet supported.")
                                            severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs/en/docs/index.md

    ```Python
    item: Item
    ```
    
    ...and with that single declaration you get:
    
    * Editor support, including:
        * Completion.
        * Type checks.
    * Validation of data:
        * Automatic and clear errors when the data is invalid.
        * Validation even for deeply nested JSON objects.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. docs/fr/docs/index.md

    ... et avec cette déclaration unique, vous obtenez :
    
    * Une assistance dans votre IDE, notamment :
        * la complétion.
        * la vérification des types.
    * La validation des données :
        * des erreurs automatiques et claires lorsque les données ne sont pas valides.
        * une validation même pour les objets <abbr title="JavaScript Object Notation">JSON</abbr> profondément imbriqués.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/request-forms.md

    With `Form` you can declare the same configurations as with `Body` (and `Query`, `Path`, `Cookie`), including validation, examples, an alias (e.g. `user-name` instead of `username`), etc.
    
    !!! info
        `Form` is a class that inherits directly from `Body`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1/generated.proto

      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference targetRef = 4;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top