Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for numeral (0.05 sec)

  1. src/main/webapp/css/font-awesome.min.css

    sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-s...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (2)
  2. src/main/resources/fess_message_pl.properties

    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} jest nieprawidłowym numerem karty kredytowej.
    constraints.EAN.message = {item} jest nieprawidłowym kodem kreskowym {type}.
    constraints.Email.message = {item} nie jest prawidłowym adresem e-mail.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

       *
       * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It
       * is not guaranteed to return zero when the dataset consists of the same value multiple times,
       * due to numerical errors. However, it is guaranteed never to return a negative result.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/message/MessageFormatter.java

     *
     * @author higa
     */
    public abstract class MessageFormatter {
    
        /**
         * Do not instantiate.
         */
        protected MessageFormatter() {
        }
    
        /** Length of the numeric part of the message code */
        protected static final int CODE_NUMBER_LENGTH = 4;
    
        /** Suffix of the resource bundle name corresponding to the message code */
        protected static final String MESSAGES = "Messages";
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

            assertProvideThrowsException("Test\nClassification");
        }
    
        public void test_provide_withNumericValues() {
            // Test classification names with numeric values
            assertProvideThrowsException("123");
            assertProvideThrowsException("0");
            assertProvideThrowsException("-1");
            assertProvideThrowsException("Test123");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            FAILED(9);
    
            private final int id;
    
            Status(final int id) {
                this.id = id;
            }
    
            /**
             * Gets the numeric ID of the status.
             * @return The numeric ID of the status.
             */
            public int getId() {
                return id;
            }
        }
    
        /**
         * Represents the base API response structure.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        if (removalListener != null) {
          removalListener.onRemoval(RemovalNotification.create(key, value, cause));
        }
      }
    
      @SuppressWarnings("GoodTime") // timestamps as numeric primitives
      private V load(K key) throws ExecutionException {
        long startTime = ticker.read();
        V calculatedValue;
        try {
          calculatedValue = loader.load(key);
          put(key, calculatedValue);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

            paramMap.put("level1", level1);
    
            Object result = scriptEngine.evaluate(template, paramMap);
            assertEquals("nested", result);
        }
    
        // Test evaluate method with numeric values
        public void test_evaluate_withNumericValues() {
            String template = "Result: ${number1} + ${number2} = ${sum}";
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("number1", 10);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test with String data
            Map<String, Object> stringData = new HashMap<>();
            stringData.put("text", "test value");
            callback.store(params, stringData);
    
            // Test with numeric data
            Map<String, Object> numericData = new HashMap<>();
            numericData.put("integer", 123);
            numericData.put("long", 456L);
            numericData.put("double", 789.0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/StringUtil.java

            return buf.toString();
        }
    
        /**
         * Returns true if the string consists only of numeric characters.
         *
         * @param s
         *            the string to check
         * @return <code>true</code> if the string consists only of numeric characters
         */
        public static boolean isNumber(final String s) {
            if (isEmpty(s)) {
                return false;
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
Back to top