Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for testdistro (0.05 seconds)

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

  1. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

                createProject(null),
                "testdistro",
                null,
                ElasticsearchDistributionTypes.ARCHIVE,
                Platform.LINUX,
                true
            );
            assertEquals(distro.getVersion(), VersionProperties.getElasticsearch());
        }
    
        public void testBadVersionFormat() {
            assertDistroError(
                createProject(null),
                "testdistro",
                "badversion",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

                elasticsearch_distributions {
                  test_distro {
                      version = "$distroVersion"
                      type = "archive"
                      platform = "linux"
                      architecture = Architecture.current();
                  }
                }
                tasks.register("setupDistro", Sync) {
                    from(elasticsearch_distributions.test_distro)
                    into("build/distro")
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  3. src/test/java/jcifs/util/SecureCredentialStorageTest.java

                Arrays.fill(decrypted, '\0');
            } finally {
                storage2.close();
            }
    
            Arrays.fill(plaintext, '\0');
        }
    
        @Test
        public void testDestroy() throws Exception {
            char[] plaintext = "DestroyTest".toCharArray();
            byte[] encrypted = storage.encryptCredentials(plaintext);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  4. src/test/java/jcifs/http/NtlmHttpFilterTest.java

            when(filterConfig.getInitParameter(anyString())).thenAnswer(invocation -> initParams.get(invocation.getArgument(0)));
    
            assertDoesNotThrow(() -> filter.init(filterConfig));
        }
    
        @Test
        void testDestroy() {
            // Test that destroy method executes without errors
            assertDoesNotThrow(() -> filter.destroy());
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 12.8K bytes
    - Click Count (0)
Back to Top