Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 181 for Verification (0.14 seconds)

  1. src/test/java/jcifs/smb1/smb1/FileEntryTest.java

    /**
     * Unit tests for {@link FileEntry}. The interface itself has no
     * implementation, so the tests exercise the contract via Mockito mocks.
     * Each method is exercised for normal inputs, extreme or edge cases, and
     * interaction verification.
     */
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.times;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 3K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

                        val verifyAcceptedApiChangesOrdering = tasks.register<gradlebuild.binarycompatibility.AlphabeticalAcceptedApiChangesTask>("verifyAcceptedApiChangesOrdering") {
                            group = "verification"
                            description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Nov 29 14:03:44 GMT 2024
    - 6K bytes
    - Click Count (0)
  3. docs/iam/identity-management-plugin.md

    The authentication flow is similar to that of OpenID, however the token is "opaque" to MinIO - it is simply sent to the plugin for verification. CAVEAT: There is no console UI integration for this method of authentication and it is intended primarily for machine authentication.
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 27 00:58:09 GMT 2022
    - 4.2K bytes
    - Click Count (0)
  4. docs/security/security.md

    ```
    
    The best way to verify artifacts is [automatically with Gradle][gradle_verification].
    
    
    [gradle_verification]: https://docs.gradle.org/current/userguide/dependency_verification.html#sec:signature-verification
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 27 10:19:17 GMT 2022
    - 1.4K bytes
    - Click Count (0)
  5. 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)
  6. 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)
  7. 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)
  8. .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)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

         *
         * @param macSigningKey
         *            The MAC signing key used for generating signatures
         * @param bypass
         *            Whether to bypass signature verification
         */
        public SMB1SigningDigest(final byte[] macSigningKey, final boolean bypass) {
            this(macSigningKey, bypass, 0);
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  10. .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)
Back to Top