Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for With_underscore (0.33 sec)

  1. src/strings/strings_test.go

    }{
    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    		if s := Title(tt.in); s != tt.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/guard_renderer.cc

                                      context_.cpp_config.unit + "_ops.h");
      string with_underscores(self_path);
      std::replace(with_underscores.begin(), with_underscores.end(), '/', '_');
      std::replace(with_underscores.begin(), with_underscores.end(), '.', '_');
      guard_ = toUpperSnake(with_underscores) + "_";
    }
    
    void GuardRenderer::Open() {
      CodeLine("#ifndef $0", guard_);
      CodeLine("#define $0", guard_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                }
            }
            return formatter.toString();
        }
    
        /**
         * Converts an arbitrary string to a camel-case string which can be used in a Java identifier. Eg, with_underscores -> withUnderscores
         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                }
            }
            return formatter.toString();
        }
    
        /**
         * Converts an arbitrary string to a camel-case string which can be used in a Java identifier. Eg, with_underscores -> withUnderscores
         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
        public static String toLowerCamelCase(CharSequence string) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top