Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 775 for Herting (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.34.md

    - Built Kubernetes using Go 1.24.3. ([#131934](https://github.com/kubernetes/kubernetes/pull/131934), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    - Built Kubernetes using Go 1.24.4. ([#132222](https://github.com/kubernetes/kubernetes/pull/132222), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

                    + facetResponse + "]";
        }
    
        /**
         * Builder class for constructing SearchResult instances using the builder pattern.
         *
         * This builder provides a fluent interface for setting the various properties
         * of a SearchResult before creating the final immutable instance.
         */
        static class SearchResultBuilder {
    
            /** The total number of records that match the search criteria. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            // Verify listener was called
            assertTrue(listener.wasShutdownCalled());
        }
    
        public void test_shutdown_withoutListener() {
            // Call shutdown without setting listener
            try {
                scriptExecutor.shutdown();
                fail("Expected NullPointerException");
            } catch (NullPointerException e) {
                // Expected behavior when no listener is set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

                // Mock implementation
            };
            generator.searchEngineClient = mockClient;
            assertEquals(mockClient, generator.searchEngineClient);
        }
    
        // Helper methods for setting up mock components
        private void setupMockComponents() {
            try {
                // Register mock system properties
                File propFile = File.createTempFile("test", ".properties");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - Promoted the feature gate `AnyVolumeDataSource` to GA. ([#129770](https://github.com/kubernetes/kubernetes/pull/129770), [@sunnylovestiramisu](https://github.com/sunnylovestiramisu)) [SIG Apps, Storage and Testing]
    - Removed general available feature gate `CPUManager`. ([#129296](https://github.com/kubernetes/kubernetes/pull/129296), [@carlory](https://github.com/carlory)) [SIG API Machinery, Node and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            }
    
            String result = scoreUpdater.execute();
            String[] lines = result.split("\n");
            assertEquals(100, lines.length);
        }
    
        // Test priority sorting with large range
        public void test_addScoreBooster_largePriorityRange() {
            PriorityTrackingBooster booster1 = new PriorityTrackingBooster(Integer.MIN_VALUE, 100L);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java

        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
            if (__specifiedProperties != null) { // normally false, true if e.g. setting after selected
                __specifiedProperties.addPropertyName(propertyName);
            }
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/FakeTickerTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.testing;
    
    import static com.google.common.testing.ReflectionFreeAssertThrows.assertThrows;
    import static java.util.concurrent.Executors.newFixedThreadPool;
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Update debian-base, debian-iptables, setcap images to pick up CVE fixes
      - Debian-base to v1.9.0
      - Debian-iptables to v1.6.7
      - setcap to v2.0.4 (#106143, @cpanato) [SIG Release and Testing]
    
    ### Failing Test
    
    - Fixes hostpath storage e2e tests within SELinux enabled env (#105786, @Elbehery) [SIG Testing]
    
    ### Bug or Regression
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            // Replace with second customizer
            pagerCreator.setPagerCustomizer(customizer2);
            assertSame(customizer2, pagerCreator.getPagerCustomizer());
        }
    
        // Test setting null customizer
        public void test_setPagerCustomizer_null() {
            // Create and set a customizer
            ComponentCustomizer customizer = new ComponentCustomizer() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top