Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for CamelCase (0.56 sec)

  1. pkg/util/strcase/camelcase.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package strcase
    
    import (
    	"bytes"
    	"strings"
    )
    
    // CamelCase converts the string into camel case string
    func CamelCase(s string) string {
    	if s == "" {
    		return ""
    	}
    	t := make([]byte, 0, 32)
    	i := 0
    	if isWordSeparator(s[0]) {
    		// Need a capital letter; drop the '_'.
    		t = append(t, 'X')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            # LINT.ThenChange(METADATA:checks)
    
    CheckOptions:
      # LINT.IfChange(check-options)
      - key:             readability-identifier-naming.ClassCase
        value:           CamelCase
      - key:             readability-identifier-naming.EnumCase
        value:           CamelCase
      - key:             readability-identifier-naming.FunctionCase
        value:           camelBack
      - key:             readability-identifier-naming.MemberCase
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            TextUtil.shorterOf("", "bb") == ""
            TextUtil.shorterOf("", "") == ""
        }
    
        def "#camelCase to kebab = #kebabCase"() {
            expect:
            TextUtil.camelToKebabCase(camelCase) == kebabCase
    
            where:
            camelCase   | kebabCase
            ""          | ""
            "foo"       | "foo"
            "fooBar"    | "foo-bar"
            "Foo"       | "foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeRootProjectAccessorsIntegrationTest.groovy

            where:
            root         | accessor
            'test'       | 'test'
            'root'       | 'root'
            'snake_case' | 'snakeCase'
            'kebab-case' | 'kebabCase'
            'camelCase'  | 'camelCase'
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/fatih/camelcase/LICENSE

    = vendor/github.com/fatih/camelcase licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2015 Fatih Arslan
    
    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskSpec.groovy

            then:
            task.dependencySpec != null
            task.configuration.name == 'foo'
            task.showSinglePathToDependency == true
        }
    
        def "configuration could be specified by camelCase shortcut"() {
            given:
            project.configurations.create("confAlpha")
            def confB = project.configurations.create("confBravo")
    
            when:
            task.configuration = "coB"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 17 06:46:38 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskTest.groovy

        def "configuration to render could be specified by camelCase shortcut"() {
            given:
            project.configurations.create("confAlpha")
            def confB = project.configurations.create("confBravo")
    
            when:
            task.configuration = "coB"
    
            then:
            task.configurations == [confB] as Set
        }
    
        def "ambiguous configuration selection by camelCase shortcut fails"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/ipamhandle-crd.yaml

                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                type: string
              metadata:
                type: object
              spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/generate.go

    			"--relax-primitive-carry-to-bitwidth", "32,64", "--internal-static",
    			"--public-function-case", "camelCase", "--public-type-case", "camelCase",
    			"--private-function-case", "camelCase", "--private-type-case", "camelCase",
    			"--doc-text-before-function-name", "", "--doc-newline-before-package-declaration",
    			"--doc-prepend-header", "Code generated by Fiat Cryptography. DO NOT EDIT.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/networkset-crd.yaml

                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                type: string
              metadata:
                type: object
              spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top