Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 190 for 60000 (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

        public Integer crudMode;
    
        /**
         * The search term for which related queries are shown.
         */
        @Required
        @Size(max = 10000)
        public String term;
    
        /**
         * The related queries to be suggested (one per line).
         */
        @Required
        @Size(max = 10000)
        public String queries;
    
        /**
         * The virtual host for which these related queries apply.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/PropertyConfigurationTest.java

            props.setProperty("jcifs.smb.client.connTimeout", "30000");
            props.setProperty("jcifs.smb.client.soTimeout", "35000");
            props.setProperty("jcifs.smb.client.responseTimeout", "30000");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
            assertEquals(30000, testConfig.getConnTimeout());
            assertEquals(35000, testConfig.getSoTimeout());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10)
        public String webApiJson;
    
        /**
         * Application-specific value for custom configurations.
         * This field can be used to store custom application settings.
         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    		Queries can be inclusive or exclusive of the upper and lower bounds.
    		If you want to find documents whose content_length fields have values
    		between 1000 and 10000, inclusive, you can enter:
    		<pre>content_length:[1000 TO 10000]</pre>
    		If you want to exclude the upper and lower bounds, use "{}".
    	</dd>
    	<dt>Boost</dt>
    	<dd>
    		To boost a term use the "^" symbol with a boost factor (a number) at
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            }
        }
    
        // Test getTimeAdjustTimeMillisAsLong values
        public void test_getTimeAdjustTimeMillisAsLong_values() {
            Long[] testValues = { 0L, 1L, -1L, 1000L, -1000L, 60000L, -60000L, 3600000L, -3600000L, Long.MAX_VALUE, Long.MIN_VALUE };
    
            for (Long value : testValues) {
                FessConfig testConfig = new FessConfig.SimpleImpl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * Redirect target or return URL parameter.
         * This is required and limited to 10000 characters to accommodate long URLs.
         */
        @Size(max = 10000)
        @Required
        public String rt;
    
        /**
         * Hash value for security or validation purposes.
         * This field is optional and used for request verification.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

         */
        public double getAverageReadLatencyMicros() {
            long reads = rdmaReads.get();
            if (reads == 0) {
                return 0.0;
            }
            return totalReadTime.get() / (double) reads / 1000.0; // Convert to microseconds
        }
    
        /**
         * Calculate average write latency in microseconds
         *
         * @return average write latency
         */
        public double getAverageWriteLatencyMicros() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

        </description>
      </expression>
      <expression>
        <syntax>project.artifact</syntax>
        <configuration>
          <![CDATA[
    <groupId>project.group</groupId>
    <artifactId>project-artifact</artifactId>
    <version>0.0.0.0</version>
    <packaging>type</packaging>
        ]]></configuration>
        <description> This is the Artifact instance created from the essential project
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/util/HexdumpTest.java

            byte[] data1 = createTestData(16);
            Hexdump.hexdump(ps, data1, 0, 16);
            String output1 = baos.toString();
    
            assertNotNull(output1);
            assertTrue(output1.contains("00000:"));
            assertTrue(output1.contains(" 00 01 02 03"));
            assertTrue(output1.contains("|"));
    
            // Test with less than 16 bytes
            baos.reset();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            when(mockDelegate.getResponseTimeout()).thenReturn(30000);
    
            // When
            int timeout1 = delegatingConfig.getResponseTimeout();
            int timeout2 = delegatingConfig.getResponseTimeout();
            int timeout3 = delegatingConfig.getResponseTimeout();
    
            // Then
            assertEquals(30000, timeout1, "First call should return correct value");
            assertEquals(30000, timeout2, "Second call should return correct value");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top