Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 238 for teardown (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

    @Suppress(
      "DEPRECATION_ERROR",
      "UNUSED_VALUE",
      "UNUSED_VARIABLE",
      "VARIABLE_WITH_REDUNDANT_INITIALIZER",
    )
    class KotlinDeprecationErrorTest {
      private val factory = TestValueFactory()
    
      @AfterEach
      fun tearDown() {
        factory.close()
      }
    
      @Test @Disabled
      fun address() {
        val address: Address = factory.newAddress()
        val url: HttpUrl = address.url()
        val dns: Dns = address.dns()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        executor = newCachedThreadPool();
        serializer = ExecutionSequencer.create();
        firstFuture = SettableFuture.create();
        firstCallable = new TestCallable(firstFuture);
      }
    
      @Override
      public void tearDown() throws Exception {
        executor.shutdown();
      }
    
      public void testCallableStartsAfterFirstFutureCompletes() {
        @SuppressWarnings({"unused", "nullness"})
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java

            directoryLeaseManager = new DirectoryLeaseManager(context, baseLeaseManager);
        }
    
        @AfterEach
        public void tearDown() throws Exception {
            if (directoryLeaseManager != null) {
                directoryLeaseManager.shutdown();
            }
            if (mocks != null) {
                mocks.close();
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

            queryFieldConfig.init();
            ComponentUtil.register(queryFieldConfig, "queryFieldConfig");
        }
    
        @Override
        public void tearDown() throws Exception {
            ComponentUtil.setFessConfig(null);
            super.tearDown();
        }
    
        public void test_init() {
            // Test initialization with null fields
            queryFieldConfig.init();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                @Override
                public LaJobRuntime getJobRuntime() {
                    return null;
                }
            }, "jobHelper");
        }
    
        @Override
        public void tearDown() throws Exception {
            FileUtils.deleteQuietly(tempDir);
    
            // Restore original helpers
            if (originalSystemHelper != null) {
                ComponentUtil.register(originalSystemHelper, "systemHelper");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            waitJob(NAME_PREFIX);
            refresh();
    
            ThreadUtil.sleep(3000);
        }
    
        @BeforeEach
        protected void init() {
            refresh();
        }
    
        @AfterEach
        protected void tearDown() {
        }
    
        @AfterAll
        protected static void tearDownAll() {
            final List<Map<String, Object>> jobLogList = readJobLog(NAME_PREFIX);
            for (Map<String, Object> elem : jobLogList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
        }
    
        @BeforeEach
        protected void init() {
        }
    
        @AfterEach
        protected void tearDown() {
            final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
            int count = 0;
            List<String> idList = getIdList(searchBody);
            while (idList.size() > 0 && count < NUM) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/smb1/DfsTest.java

            lenient().when(Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false)).thenReturn(false);
        }
    
        @AfterEach
        void tearDown() {
            if (logStreamMockedStatic != null)
                logStreamMockedStatic.close();
            if (uniAddressMockedStatic != null)
                uniAddressMockedStatic.close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            suggestJob = new SuggestJob();
        }
    
        @Override
        public void tearDown() throws Exception {
            // Clean up temp directory
            if (tempDir != null && tempDir.exists()) {
                deleteDirectory(tempDir);
            }
            super.tearDown();
        }
    
        private void createRequiredDirectories() {
            // Create necessary directories for SuggestJob execution
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            ComponentUtil.register(facetInfo, "facetInfo");
            viewHelper = new ViewHelper();
            viewHelper.init();
        }
    
        @Override
        public void tearDown() throws Exception {
            propertiesFile.delete();
            super.tearDown();
        }
    
        public void test_facetQueries() {
            final List<FacetQueryView> list = viewHelper.getFacetQueryViewList();
            assertEquals(3, list.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
Back to top