Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ToCamelCase (0.24 sec)

  1. src/main/java/org/codelibs/fess/entity/ParamMap.java

            }
            return parent.containsKey(toCamelCase(key));
        }
    
        @Override
        public boolean containsValue(final Object value) {
            return parent.containsValue(value);
        }
    
        @Override
        public V get(final Object key) {
            final V value = parent.get(key);
            if (value != null) {
                return value;
            }
            return parent.get(toCamelCase(key));
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
            return toCamelCase(string, true);
        }
    
        private static String toCamelCase(CharSequence string, boolean lower) {
            if (string == null) {
                return null;
    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. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
            return toCamelCase(string, true);
        }
    
        private static String toCamelCase(CharSequence string, boolean lower) {
            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)
  4. tensorflow/cc/framework/cc_op_gen_util.h

    string PrintTensorProto(const TensorProto& proto);
    
    string PrintAttrValue(StringPiece, const AttrValue& attr_value);
    
    bool IsEmptyList(const AttrValue::ListValue& list);
    
    string ToCamelCase(StringPiece str);
    
    string SeparateNamespaces(StringPiece str);
    
    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    // attr_type when defining an object of that type. The bool is a flag to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/cc_op_gen_util.cc

      return list.s_size() == 0 && list.i_size() == 0 && list.f_size() == 0 &&
             list.b_size() == 0 && list.type_size() == 0 &&
             list.shape_size() == 0 && list.tensor_size() == 0;
    }
    
    string ToCamelCase(StringPiece str) {
      string result;
      const char joiner = '_';
      size_t i = 0;
      bool cap = true;
      while (i < str.size()) {
        const char c = str[i++];
        if (c == '>') {
          cap = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Deprecated members of the `org.gradle.util` package now report their deprecation
    
    These members will be removed in Gradle 9.0.
    
    * `WrapUtil.toDomainObjectSet(...)`
    * `GUtil.toCamelCase(...)`
    * `GUtil.toLowerCase(...)`
    * `ConfigureUtil`
    
    [[ibm_semeru_should_not_be_used]]
    ==== Deprecated JVM vendor IBM Semeru
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top