Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 258 for LowerCase (0.15 sec)

  1. src/main/resources/fess_indices/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  2. src/unicode/letter_test.go

    	{UpperCase, '7', '7'},
    	{LowerCase, '\n', '\n'},
    	{LowerCase, 'a', 'a'},
    	{LowerCase, 'A', 'a'},
    	{LowerCase, '7', '7'},
    	{TitleCase, '\n', '\n'},
    	{TitleCase, 'a', 'A'},
    	{TitleCase, 'A', 'A'},
    	{TitleCase, '7', '7'},
    
    	// Latin-1: easy to read the tests!
    	{UpperCase, 0x80, 0x80},
    	{UpperCase, 'Å', 'Å'},
    	{UpperCase, 'å', 'Å'},
    	{LowerCase, 0x80, 0x80},
    	{LowerCase, 'Å', 'å'},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertThat(base16().upperCase()).isSameInstanceAs(base16());
      }
    
      public void testBase16LowerCase() {
        BaseEncoding lowerCase = base16().lowerCase();
        assertThat(lowerCase).isNotSameInstanceAs(base16());
        assertThat(lowerCase).isSameInstanceAs(base16().lowerCase());
        testEncodingWithCasing(lowerCase, "foobar", "666f6f626172");
      }
    
      public void testBase16IgnoreCase() {
        BaseEncoding ignoreCase = base16().ignoreCase();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/StringExtensions.kt

    package gradlebuild.basics
    
    import java.util.Locale
    
    fun String.toLowerCase(): String =
        lowercase(Locale.US)
    
    fun String.toUpperCase(): String =
        uppercase(Locale.US)
    
    fun String.capitalize(): String =
        replaceFirstChar { it.uppercase(Locale.US) }
    
    fun String.decapitalize(): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 961 bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class:        testClass("", goodName),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/unicode/letter.go

    				//	{-1, 0, -1}  LowerCase (Upper, Title are previous)
    				// The characters at even offsets from the beginning of the
    				// sequence are upper case; the ones at odd offsets are lower.
    				// The correct mapping can be done by clearing or setting the low
    				// bit in the sequence offset.
    				// The constants UpperCase and TitleCase are even while LowerCase
    				// is odd so we take the low bit from _case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/BaseEncoding.java

          }
          return result;
        }
    
        @Override
        public BaseEncoding lowerCase() {
          BaseEncoding result = lowerCase;
          if (result == null) {
            Alphabet lower = alphabet.lowerCase();
            result = lowerCase = (lower == alphabet) ? this : newInstance(lower, paddingChar);
          }
          return result;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/BaseEncoding.java

          }
          return result;
        }
    
        @Override
        public BaseEncoding lowerCase() {
          BaseEncoding result = lowerCase;
          if (result == null) {
            Alphabet lower = alphabet.lowerCase();
            result = lowerCase = (lower == alphabet) ? this : newInstance(lower, paddingChar);
          }
          return result;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/-MediaTypeCommon.kt

      val typeSubtype: MatchResult =
        TYPE_SUBTYPE.matchAtPolyfill(this, 0)
          ?: throw IllegalArgumentException("No subtype found for: \"$this\"")
      val type = typeSubtype.groupValues[1].lowercase()
      val subtype = typeSubtype.groupValues[2].lowercase()
    
      val parameterNamesAndValues = mutableListOf<String>()
      var s = typeSubtype.range.last + 1
      while (s < length) {
        val parameter = PARAMETER.matchAtPolyfill(this, s)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/net/http/internal/ascii/print.go

    	if len(s) != len(t) {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    		if lower(s[i]) != lower(t[i]) {
    			return false
    		}
    	}
    	return true
    }
    
    // lower returns the ASCII lowercase version of b.
    func lower(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    // IsPrint returns whether s is ASCII and printable according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top