Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for checksumPolicy (3.41 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultRepositoryFactory.java

            String checksumPolicy = RepositoryPolicy.CHECKSUM_POLICY_FAIL;
            if (policy != null) {
                enabled = policy.isEnabled();
                if (policy.getUpdatePolicy() != null) {
                    updatePolicy = policy.getUpdatePolicy();
                }
                if (policy.getChecksumPolicy() != null) {
                    checksumPolicy = policy.getChecksumPolicy();
                }
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                    .checksumPolicy(settingsPolicy.getChecksumPolicy())
                    .location("enabled", toLocation(settingsPolicy.getLocation("enabled")))
                    .location("updatePolicy", toLocation(settingsPolicy.getLocation("updatePolicy")))
                    .location("checksumPolicy", toLocation(settingsPolicy.getLocation("checksumPolicy")))
                    .build();
            return policy;
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                String snapshotUpdates,
                String checksumPolicy)
                throws InvalidRepositoryException {
            ArtifactRepositoryPolicy snapshotsPolicy =
                    new ArtifactRepositoryPolicy(snapshots, snapshotUpdates, checksumPolicy);
    
            ArtifactRepositoryPolicy releasesPolicy =
                    new ArtifactRepositoryPolicy(releases, releaseUpdates, checksumPolicy);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                    .checksumPolicy(settingsPolicy.getChecksumPolicy())
                    .location("enabled", toLocation(settingsPolicy.getLocation("enabled")))
                    .location("updatePolicy", toLocation(settingsPolicy.getLocation("updatePolicy")))
                    .location("checksumPolicy", toLocation(settingsPolicy.getLocation("checksumPolicy")))
                    .build();
            return policy;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

                (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
              <version>1.0.0+</version>
              <description>
                What to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                {@code never} (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
              <version>4.0.0+</version>
              <description>
                What to do when verification of an artifact checksum fails. Valid values are
                {@code ignore},
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top