Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for CamelCase (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.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
                parameters:
                  additionalProperties:
                    type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis_openapi.json

              },
              "kind": {
                "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"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. hack/print-workspace-status.sh

    # instead of volatile-status.txt.
    # Stamped rules will be retriggered by changes to stable-status.txt, but not by
    # changes to volatile-status.txt.
    # IMPORTANT: the camelCase vars should match the lists in hack/lib/version.sh
    cat <<EOF
    STABLE_BUILD_GIT_COMMIT ${KUBE_GIT_COMMIT-}
    STABLE_BUILD_SCM_STATUS ${KUBE_GIT_TREE_STATE-}
    STABLE_BUILD_SCM_REVISION ${KUBE_GIT_VERSION-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. pkg/config/schema/ast/ast.go

    	var s Metadata
    	err := yaml.Unmarshal([]byte(yamlText), &s)
    	if err != nil {
    		return nil, err
    	}
    	return &s, nil
    }
    
    func asResourceVariableName(n string) string {
    	return strcase.CamelCase(n)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // Last time the condition transitioned from one status to another.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human-readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top