Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for 2m (0.01 seconds)

  1. src/test/java/org/codelibs/fess/suggest/settings/TimeoutSettingsTest.java

            assertEquals("30s", settings.getSearchTimeout());
        }
    
        @Test
        public void testSetIndexTimeout() {
            TimeoutSettings settings = new TimeoutSettings();
            settings.setIndexTimeout("2m");
            assertEquals("2m", settings.getIndexTimeout());
        }
    
        @Test
        public void testSetBulkTimeout() {
            TimeoutSettings settings = new TimeoutSettings();
            settings.setBulkTimeout("5m");
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. internal/s3select/select_benchmark_test.go

    }
    
    // BenchmarkSelectAll_1M - benchmark * function with 1m records.
    func BenchmarkSelectAll_1M(b *testing.B) {
    	benchmarkSelectAll(b, 1*humanize.MiByte)
    }
    
    // BenchmarkSelectAll_2M - benchmark * function with 2m records.
    func BenchmarkSelectAll_2M(b *testing.B) {
    	benchmarkSelectAll(b, 2*humanize.MiByte)
    }
    
    // BenchmarkSelectAll_10M - benchmark * function with 10m records.
    func BenchmarkSelectAll_10M(b *testing.B) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 5K bytes
    - Click Count (0)
Back to Top