Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vowel (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		article = "an"
    	}
    
    	return fmt.Sprintf("%s%s%s", padding, article, padding)
    }
    
    // isVowel returns true if the rune is a vowel (case insensitive).
    func isVowel(c rune) bool {
    	vowels := []rune{'a', 'e', 'i', 'o', 'u'}
    	for _, value := range vowels {
    		if value == unicode.ToLower(c) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // non-breaking space
        assertThat(parse("http://h/\u00a0").encodedPath).isEqualTo("/%C2%A0")
        // ogham space mark
        assertThat(parse("http://h/\u1680").encodedPath).isEqualTo("/%E1%9A%80")
        // mongolian vowel separator
        assertThat(parse("http://h/\u180e").encodedPath).isEqualTo("/%E1%A0%8E")
        // en quad
        assertThat(parse("http://h/\u2000").encodedPath).isEqualTo("/%E2%80%80")
        // em quad
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top