Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 482 for verifications (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/ImmutableComponentVerificationMetadata.java

        private final ModuleComponentIdentifier component;
        private final List<ArtifactVerificationMetadata> verifications;
    
        public ImmutableComponentVerificationMetadata(ModuleComponentIdentifier component, List<ArtifactVerificationMetadata> verifications) {
            this.component = component;
            this.verifications = ImmutableList.copyOf(verifications);
        }
    
        @Override
        public ModuleComponentIdentifier getComponentId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    /**
     * A {@code VerificationTask} is a task which performs some verification of the artifacts produced by a build.
     */
    public interface VerificationTask {
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

            writer.startElement(COMPONENTS);
            for (ComponentVerificationMetadata verification : verifications) {
                writeVerification(verification);
            }
            writer.endElement();
        }
    
        private void writeVerification(ComponentVerificationMetadata verification) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

        public abstract Property<JavaLauncher> getLauncher();
    
        /**
         * Specifies whether the build should break when plugin verifications fails.
         */
        @Input
        public abstract Property<Boolean> getIgnoreFailures();
    
        /**
         * Returns whether the build should break when the verifications performed by this task detects a warning.
         */
        @Input
        public abstract Property<Boolean> getFailOnWarning();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

    import org.gradle.api.internal.artifacts.verification.model.Checksum;
    import org.gradle.api.internal.artifacts.verification.model.ChecksumKind;
    import org.gradle.api.internal.artifacts.verification.model.ComponentVerificationMetadata;
    import org.gradle.api.internal.artifacts.verification.model.IgnoredKey;
    import org.gradle.api.internal.artifacts.verification.signatures.SignatureVerificationResultBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/index.md

    L'utiliser dans votre éditeur est ce qui vous montre vraiment les avantages de FastAPI, en voyant le peu de code que vous avez à écrire, toutes les vérifications de type, l'autocomplétion, etc.
    
    ---
    
    ## Installer FastAPI
    
    La première étape consiste à installer FastAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. docs/fr/docs/history-design-future.md

    J'y ai ensuite contribué, pour le rendre entièrement compatible avec JSON Schema, pour supporter différentes manières de définir les déclarations de contraintes, et pour améliorer le support des éditeurs (vérifications de type, autocomplétion) sur la base des tests effectués dans plusieurs éditeurs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. build/root/Makefile

    ifeq ($(PRINT_HELP),y)
    ginkgo:
    	echo "$$GINKGO_HELP_INFO"
    else
    ginkgo:
    	hack/make-rules/build.sh github.com/onsi/ginkgo/v2/ginkgo
    endif
    
    define VERIFY_HELP_INFO
    # Runs all the presubmission verifications.
    #
    # Args:
    #   BRANCH: Branch to be passed to verify-vendor.sh script.
    #   WHAT: List of checks to run
    #
    # Example:
    #   make verify
    #   make verify BRANCH=branch_x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/body.md

        Ce qui améliore le support pour les modèles Pydantic avec :
    
        * de l'auto-complétion
        * des vérifications de type
        * du "refactoring" (ou remaniement de code)
        * de la recherche
        * de l'inspection
    
    ## Utilisez le modèle
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         */
        @Incubating
        @Input
        public Property<Boolean> getEnableExternalDtdLoad() {
            return enableExternalDtdLoad;
        }
    
        /**
         * Whether the build should break when the verifications performed by this task fail.
         *
         * @return true if failures should be ignored
         */
        @Internal
        public boolean isIgnoreFailures() {
            return getIgnoreFailures();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top