Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lowercased (0.15 sec)

  1. android/guava/src/com/google/common/io/BaseEncoding.java

        }
    
        Alphabet lowerCase() {
          if (!hasUpperCase()) {
            return this;
          }
          checkState(!hasLowerCase(), "Cannot call lowerCase() on a mixed-case alphabet");
          char[] lowerCased = new char[chars.length];
          for (int i = 0; i < chars.length; i++) {
            lowerCased[i] = Ascii.toLowerCase(chars[i]);
          }
          Alphabet lowerCase = new Alphabet(name + ".lowerCase()", lowerCased);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Mar 15 16:33:32 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. false */
        String LDAP_GROUP_NAME_WITH_UNDERSCORES = "ldap.group.name.with.underscores";
    
        /** The key of the configuration. e.g. false */
        String LDAP_LOWERCASE_PERMISSION_NAME = "ldap.lowercase.permission.name";
    
        /** The key of the configuration. e.g. true */
        String LDAP_ALLOW_EMPTY_PERMISSION = "ldap.allow.empty.permission";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
Back to top