Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for lowercases (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		{Kind: "lowercase", Plural: "lowercases", Singular: "lowercase"},
    		// TODO this test is broken.  This updates to reflect actual behavior.  Kinds are expected to be singular
    		// old (incorrect), comment: Don't add extra s if the original object is already plural
    		{Kind: "lowercases", Plural: "lowercaseses", Singular: "lowercases"},
    	}
    	for i, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    		// add underscore when next letter is lowercase
    		if (i != 0 || i == l-1) && ((i > 0 && rune(camel[i-1]) >= 'a') ||
    			(i < l-1 && rune(camel[i+1]) >= 'a')) {
    			b.WriteRune('_')
    		}
    		b.WriteRune(v + 'a' - 'A')
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    	}
    	return c.retSpan()
    }
    
    // lowerCaser implements the Transformer interface. The default Unicode lower
    // casing requires different treatment for the first and subsequent characters
    // of a word, most notably to handle the Greek final Sigma.
    type lowerCaser struct {
    	undLowerIgnoreSigmaCaser
    
    	context
    
    	first, midWord mapFunc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. 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);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. 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);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top