Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for CamelCase (0.17 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            return normaliseLineSeparators(normaliseFileSeparators(in));
        }
    
        public static String camelToKebabCase(String camelCase) {
            return KEBAB_JOINER.join(Iterables.transform(Arrays.asList(UPPER_CASE.split(camelCase)), TO_LOWERCASE));
        }
    
        /**
         * This method should be used when making strings lowercase that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    }
    
    func (IngressPortStatus) SwaggerDoc() map[string]string {
    	return map_IngressPortStatus
    }
    
    var map_IngressRule = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            }
            builder.append(rest);
            return builder.toString();
        }
    
        /**
         * Converts an arbitrary string to upper case identifier with words separated by _. Eg, camelCase -> CAMEL_CASE
         */
        @SuppressWarnings("StringCaseLocaleUsage")
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // The format of the error shall comply with the following rules:
      // - built-in error values shall be specified in this file and those shall use
      //   CamelCase names
      // - cloud provider specific error values must have names that comply with the
      //   format foo.example.com/CamelCase.
      // ---
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // The format of the error shall comply with the following rules:
      // - built-in error values shall be specified in this file and those shall use
      //   CamelCase names
      // - cloud provider specific error values must have names that comply with the
      //   format foo.example.com/CamelCase.
      // ---
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar_fiat.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  8. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.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
                spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// The format of the error shall comply with the following rules:
    	// - built-in error values shall be specified in this file and those shall use
    	//   CamelCase names
    	// - cloud provider specific error values must have names that comply with the
    	//   format foo.example.com/CamelCase.
    	// ---
    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +optional
    	// +kubebuilder:validation:Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top