Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 401 - 410 of 739 for testDfs (0.34 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java

            });
    
            TaskProvider<LoggedExec> fetchLatestTaskProvider = tasks.register("fetchLatest", LoggedExec.class, fetchLatest -> {
                var gitFetchLatest = project.getProviders()
                    .systemProperty("tests.bwc.git_fetch_latest")
                    .forUseAtConfigurationTime()
                    .orElse("true")
                    .map(fetchProp -> {
                        if ("true".equals(fetchProp)) {
                            return true;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 9.9K bytes
    - Click Count (0)
  2. CONTRIBUTING.md

      + Check for unnecessary whitespace with `git diff --check` before committing.
    + Make sure you have added the necessary tests (JUnit/[Core IT tests][core-it]) for your changes.
    + Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken.
    + Submit a pull request to the repository in the Apache organization.
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Jun 07 09:55:33 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  3. cmd/http-tracer_test.go

    		gotQuery := redactLDAPPwd(test.query)
    		if gotQuery != test.expectedQuery {
    			t.Fatalf("test %d: expected %s got %s", i+1, test.expectedQuery, gotQuery)
    		}
    	}
    }
    
    // TestHTTPStatsRaceCondition tests the race condition fix for HTTPStats.
    // This test specifically addresses the race between:
    // - Write operations via updateStats.
    // - Read operations via toServerHTTPStats(false).
    func TestRaulStatsRaceCondition(t *testing.T) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java

        public void setTaskName(String taskName) {
            this.taskName = taskName;
        }
    
        @Input
        public String getTaskName() {
            return taskName;
        }
    
        @Option(option = "tests", description = "Sets test class or method name to be included, '*' is supported.")
        public void setTestClass(String testClass) {
            this.testClass = testClass;
        }
    
        @Input
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  5. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            assertEquals(totalentries, enumEx.totalentries);
            assertEquals(0x15, enumEx.getOpnum());
        }
    
        @Test
        void testNetrDfsEnumEx_EncodeInDecodeOut() throws NdrException {
            String dfsName = "test_dfs";
            int level = 1;
            int prefmaxlen = 100;
            netdfs.DfsEnumStruct info = new netdfs.DfsEnumStruct();
            info.level = 1;
            info.e = new netdfs.DfsEnumArray1();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 30.9K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

            // Given & When
            Smb2LockResponse lockResponse = new Smb2LockResponse(null);
    
            // Then
            assertNotNull(lockResponse);
        }
    
        @Nested
        @DisplayName("writeBytesWireFormat tests")
        class WriteBytesWireFormatTests {
    
            @Test
            @DisplayName("Should always return 0 for write bytes")
            void testWriteBytesWireFormat() {
                // Given
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 17.1K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/util/concurrent/InterruptionUtil.java

    import com.google.common.testing.TearDownAccepter;
    import java.util.concurrent.TimeUnit;
    import java.util.logging.Logger;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Utilities for performing thread interruption in tests
     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    final class InterruptionUtil {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 15:38:30 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/main/java/jcifs/SmbPipeHandle.java

         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close() throws CIFSException;
    
        /**
         * Tests whether this file descriptor is open and valid.
         *
         * @return whether the FD is open and valid
         */
        boolean isOpen();
    
        /**
         * Tests whether this file descriptor was previously open but has become invalid.
         *
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  9. docs/fr/docs/project-generation.md

      - 🧪 [Playwright](https://playwright.dev) pour les tests de bout en bout.
      - 🦇 Prise en charge du mode sombre.
    - 🐋 [Docker Compose](https://www.docker.com) pour le développement et la production.
    - 🔒 Hachage sécurisé des mots de passe par défaut.
    - 🔑 Authentification JWT (JSON Web Token).
    - 📫 Récupération de mot de passe par e-mail.
    - ✅ Tests avec [Pytest](https://pytest.org).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestTestUtil.java

            return project.getTasks().register(taskName, RestIntegTestTask.class, testTask -> {
                testTask.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
                testTask.setDescription("Runs the REST tests against an external cluster");
                project.getPlugins().withType(JavaPlugin.class, t ->
                    testTask.mustRunAfter(project.getTasks().named("test"))
                );
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 3.1K bytes
    - Click Count (0)
Back to Top