Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 308 for LowerCase (0.44 sec)

  1. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  7. 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)
  8. src/go/doc/testdata/generics.go

    var X Type[int]
    
    // Parameterized types should be shown.
    type Type[P any] struct {
    	Field P
    }
    
    // Constructors for parameterized types should be shown.
    func Constructor[lowerCase any]() Type[lowerCase] {
    	return Type[lowerCase]{}
    }
    
    // MethodA uses a different name for its receiver type parameter.
    func (t Type[A]) MethodA(p A) {}
    
    // MethodB has a blank receiver type parameter.
    func (t Type[_]) MethodB() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. src/main/resources/fess_indices/fess_config.data_config.json

          "analyzer": {
            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
                "stemmer"
              ]
            }
          }
        }
      }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 484 bytes
    - Viewed (0)
Back to top