Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for 1500 (0.01 sec)

  1. android/guava-tests/test/com/google/common/base/StopwatchTest.java

        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (1.5 * 60 * 1000000000L));
        assertEquals("1.500 min", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (2.5 * 60 * 60 * 1000000000L));
        assertEquals("2.500 h", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        /** The username for file authentication (required, maximum 100 characters). */
        @Required
        @Size(max = 100)
        public String username;
    
        /** The password for file authentication (maximum 100 characters). */
        @Size(max = 100)
        public String password;
    
        /** Additional parameters for file authentication (maximum 1000 characters). */
        @Size(max = 1000)
        public String parameters;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/MemoryUtil.java

            } else if (size.divide(ONE_PB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_TB_BI)).divide(BigDecimal.valueOf(1000)) + "PB";
            } else if (size.divide(ONE_TB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_GB_BI)).divide(BigDecimal.valueOf(1000)) + "TB";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/DocListTest.java

            doc.put("id", "1");
            docList.add(doc);
    
            docList.addContentSize(1000);
            docList.addProcessingTime(500);
    
            assertEquals(1, docList.size());
            assertEquals(1000, docList.getContentSize());
            assertEquals(500, docList.getProcessingTime());
    
            docList.clear();
    
            assertEquals(0, docList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

         */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The value of the request header.
         */
        @Required
        @Size(max = 1000)
        public String value;
    
        /**
         * The web configuration ID associated with this request header.
         */
        @Required
        @Size(max = 1000)
        public String webConfigId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    
        /** Reading (pronunciation) of the token in katakana */
        @Required
        @Size(max = 1000)
        public String reading;
    
        /** Part of speech tag for the token */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

        public Integer crudMode;
    
        /**
         * The regular expression pattern to match request paths.
         */
        @Required
        @Size(max = 1000)
        public String regex;
    
        /**
         * The replacement pattern for matched paths.
         */
        @Size(max = 1000)
        public String replacement;
    
        /**
         * The processing type for path mapping.
         */
        @Required
        public String processType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        /**
         * The username for authentication.
         */
        @Required
        @Size(max = 100)
        public String username;
    
        /**
         * The password for authentication.
         */
        @Size(max = 100)
        public String password;
    
        /**
         * Additional parameters for the authentication.
         */
        @Size(max = 1000)
        public String parameters;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
         * The name of the access token.
         * This is a required field with a maximum length of 1000 characters.
         */
        @Required
        @Size(max = 1000)
        public String name;
    
        /**
         * The actual access token string.
         * This is the token value that will be used for authentication.
         * Maximum length is 10000 characters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            Consumer<String> callback = line -> callbackResults.add(line);
    
            JobProcess jobProcess = new JobProcess(mockProcess, 100, callback);
            InputStreamThread thread = jobProcess.getInputStreamThread();
    
            thread.start();
            thread.join(1000);
    
            assertEquals(2, callbackResults.size());
            assertEquals("integration test", callbackResults.get(0));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top