Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TitleCase (0.14 sec)

  1. .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)
  2. 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