Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for numeral (0.04 sec)

  1. src/main/resources/fess_message_es.properties

    constraints.Required.message = {item} es obligatorio.
    constraints.TypeInteger.message = {item} debe ser un número.
    constraints.TypeLong.message = {item} debe ser un número.
    constraints.TypeFloat.message = {item} debe ser un número.
    constraints.TypeDouble.message = {item} debe ser un número.
    constraints.TypeAny.message = {item} no se puede convertir a {propertyType}.
    constraints.UriType.message = {item} tiene una URI no reconocida.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/xml/XmlEscapers.java

     *
     * <p><b>Note:</b> Currently the escapers provided by this class do not escape any characters
     * outside the ASCII character range. Unlike HTML escaping the XML escapers will not escape
     * non-ASCII characters to their numeric entity replacements. These XML escapers provide the minimal
     * level of escaping to ensure that the output can be safely included in a Unicode XML document.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 20 17:15:33 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.user_surname=Nom de famille
    labels.surame=Nom de famille
    labels.user_mail=E-mail
    labels.mail=E-mail
    labels.user_employeeNumber=Numéro d'employé
    labels.employeeNumber=Numéro d'employé
    labels.user_telephoneNumber=Numéro de téléphone
    labels.telephoneNumber=Numéro de téléphone
    labels.user_homePhone=Téléphone personnel
    labels.homePhone=Téléphone personnel
    labels.user_homePostalAddress=Adresse postale personnelle
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${special}";
            assertEquals("value$with\\backslash", ResourceUtil.resolve(value));
    
            // Test with numeric property names
            System.setProperty("123", "numeric");
            value = "${123}";
            assertEquals("numeric", ResourceUtil.resolve(value));
    
            // Test with underscores in property names
            System.setProperty("test_var", "underscore");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey);
            }
        }
    
        // Test getting numeric configuration values
        public void test_get_numericValues() {
            String intKey = "numeric.int";
            String floatKey = "numeric.float";
    
            System.setProperty(Constants.FESS_CONFIG_PREFIX + intKey, "123");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

    @NullUnmarked
    public class HashStringBenchmark {
      static class MaxCodePoint {
        final int value;
    
        /**
         * Convert the input string to a code point. Accepts regular decimal numerals, hex strings, and
         * some symbolic names meaningful to humans.
         */
        private static int decode(String userFriendly) {
          try {
            return Integer.decode(userFriendly);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RouteSelector.kt

          return routes[nextRouteIndex++]
        }
      }
    
      companion object {
        /** Obtain a host string containing either an actual host name or a numeric IP address. */
        val InetSocketAddress.socketHost: String get() {
          // The InetSocketAddress was specified with a string (either a numeric IP or a host name). If
          // it is a name, all IPs for that name should be tried. If it is an IP address, only that IP
          // address should be tried.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/StatsAccumulator.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: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_pl.properties

    labels.user_surname=Nazwisko
    labels.surame=Nazwisko
    labels.user_mail=Adres e-mail
    labels.mail=Adres e-mail
    labels.user_employeeNumber=Numer pracownika
    labels.employeeNumber=Numer pracownika
    labels.user_telephoneNumber=Numer telefonu
    labels.telephoneNumber=Numer telefonu
    labels.user_homePhone=Telefon (domowy)
    labels.homePhone=Telefon (domowy)
    labels.user_homePostalAddress=Adres pocztowy (domowy)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/LinearTransformation.java

       * itself. In all other cases, the inverse is a transformation such that applying both the
       * original transformation and its inverse to a value gives you the original value give-or-take
       * numerical errors. Calling this method multiple times on the same instance will always return
       * the same instance. Calling this method on the result of calling this method on an instance will
       * always return that original instance.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top