Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TitleCase (0.3 sec)

  1. src/unicode/letter_test.go

    	{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, 'Å', 'å'},
    	{LowerCase, 'å', 'å'},
    	{TitleCase, 0x80, 0x80},
    	{TitleCase, 'Å', 'Å'},
    	{TitleCase, 'å', 'Å'},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. src/unicode/letter.go

    // characters that involve multiple runes in the input or output.
    
    // Indices into the Delta arrays inside CaseRanges for case mapping.
    const (
    	UpperCase = iota
    	LowerCase
    	TitleCase
    	MaxCase
    )
    
    type d [MaxCase]rune // to make the CaseRanges text shorter
    
    // If the Delta field of a [CaseRange] is UpperLower, it means
    // this CaseRange represents a sequence of the form (say)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

        steps {
            killProcessStep(this@killProcessStep, mode, os, arch, executionMode)
        }
    }
    
    fun String.toCapitalized() = this.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }
    
    /**
     * Define clean up rules for the project.
     * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate.go

    // If the name of the component is lower case, the function will use the capitalized version
    // of the name.
    func (t *Translator) ComponentMap(cns string) *ComponentMaps {
    	cn := name.TitleCase(name.ComponentName(cns))
    	return t.ComponentMaps[cn]
    }
    
    func (t *Translator) ProtoToHelmValues2(ii *v1alpha1.IstioOperatorSpec) (map[string]any, error) {
    	by, err := json.Marshal(ii)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top