Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 140 for Verification (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            assertFalse(
                    wagon.getTransferEventSupport().hasTransferListener(transferListener),
                    "Transfer listener still registered after putArtifact");
        }
    
        /**
         * Checks the verification of checksums.
         */
        @Disabled
        @Test
        void testChecksumVerification() throws Exception {
            ArtifactRepositoryPolicy policy = new ArtifactRepositoryPolicy(
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 12.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/InternalPrecommitTasks.java

    /**
     * Internal precommit plugins that adds elasticsearch project specific
     * checks to the common precommit plugin.
     */
    public class InternalPrecommitTasks {
        /**
         * Adds a precommit task, which depends on non-test verification tasks.
         */
        public static void create(Project project, boolean withProductiveCode) {
            project.getPluginManager().apply(CheckstylePrecommitPlugin.class);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 14:34:07 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/elasticsearch.bwc-test.gradle

      }
    }
    
    tasks.register("bwcTest") {
      description = 'Runs backwards compatibility tests.'
      group = 'verification'
    
      if (project.bwc_tests_enabled) {
        dependsOn tasks.matching { it.name ==~ /v[0-9\.]+#bwcTest/ }
      }
    }
    
    tasks.withType(Test).configureEach {
      onlyIf { project.bwc_tests_enabled }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 30 12:11:25 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+intake.yml

                - name: elastic+elasticsearch+%BRANCH%+intake+multijob+sanity-check
                  kill-phase-on: NEVER
                  current-parameters: true
                  git-revision: true
          - multijob:
              name: Verification
              projects:
                - name: elastic+elasticsearch+%BRANCH%+intake+multijob+part1
                  kill-phase-on: NEVER
                  current-parameters: true
                  git-revision: true
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  5. .editorconfig

    insert_final_newline = true
    
    spelling_languages = en-US
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Nov 25 07:01:54 GMT 2025
    - 582 bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

                }
            } catch (IOException e) {
                System.err.println("An error occurred during verification: " + e.getMessage());
                throw new RuntimeException("Error during file verification", e);
            }
        }
    
        private static class AdocFileEntry {
            @SerializedName("filename")
            String filename;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 15:38:58 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  7. docs/debugging/s3-verify/main.go

    	if err != nil {
    		return nil, err
    	}
    
    	secure := strings.EqualFold(u.Scheme, "https")
    	transport, err := minio.DefaultTransport(secure)
    	if err != nil {
    		return nil, err
    	}
    	if insecure {
    		// skip TLS verification
    		transport.TLSClientConfig.InsecureSkipVerify = true
    	}
    
    	clnt, err := minio.New(u.Host, &minio.Options{
    		Creds:     credentials.NewStaticV4(accessKey, secretKey, ""),
    		Secure:    secure,
    		Transport: transport,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Jun 22 15:12:47 GMT 2022
    - 8.4K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
            id(buildTypeId(model))
            name = "Sanity Check"
            description = "Static code analysis, checkstyle, release notes verification, etc."
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                "sanityCheck",
                extraParameters =
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 25 20:21:47 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  9. docs/debugging/s3-check-md5/main.go

    	flag.BoolVar(&debug, "debug", false, "Prints HTTP network calls to S3 endpoint")
    	flag.BoolVar(&versions, "versions", false, "Verify all versions")
    	flag.BoolVar(&insecure, "insecure", false, "Disable TLS verification")
    	flag.StringVar(&minModTimeStr, "modified-since", "", "Specify a minimum object last modified time, e.g.: 2023-01-02T15:04:05Z")
    	flag.Parse()
    
    	if endpoint == "" {
    		log.Fatalln("Endpoint is not provided")
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

                name = "Resolve all dependencies"
                tasks = "resolveAllDependencies"
                gradleParams =
                    (
                        buildToolGradleParameters(isContinue = false) + listOf("--dependency-verification", "lenient")
                    ).joinToString(separator = " ")
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 1.2K bytes
    - Click Count (0)
Back to Top