Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for titleTest (0.14 sec)

  1. src/text/template/examplefunc_test.go

    Input: {{printf "%q" .}}
    Output 0: {{title .}}
    Output 1: {{title . | printf "%q"}}
    Output 2: {{printf "%q" . | title}}
    `
    
    	// Create a template, add the function map, and parse the text.
    	tmpl, err := template.New("titleTest").Funcs(funcMap).Parse(templateText)
    	if err != nil {
    		log.Fatalf("parsing: %s", err)
    	}
    
    	// Run the template to verify the output.
    	err = tmpl.Execute(os.Stdout, "the go programming language")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    			if s := string(out); s != tt.out {
    				t.Errorf("ReplaceAll(%q, %q, %q) = %q, want %q", tt.in, tt.old, tt.new, s, tt.out)
    			}
    		}
    	}
    }
    
    type TitleTest struct {
    	in, out string
    }
    
    var TitleTests = []TitleTest{
    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    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. src/main/resources/fess_indices/fess.json

            "title_ca",
            "title_ckb-iq",
            "title_cs",
            "title_da",
            "title_de",
            "title_el",
            "title_en",
            "title_en-ie",
            "title_es",
            "title_et",
            "title_eu",
            "title_fa",
            "title_fi",
            "title_fr",
            "title_gl",
            "title_gu",
            "title_he",
            "title_hi",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

        }
    
        public void setTitle_Terms(Collection<String> titleList) {
            setTitle_Terms(titleList, null);
        }
    
        public void setTitle_Terms(Collection<String> titleList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            TermsQueryBuilder builder = regTermsQ("title", titleList);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 326.1K bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    		if tt.n == -1 {
    			s := ReplaceAll(tt.in, tt.old, tt.new)
    			if s != tt.out {
    				t.Errorf("ReplaceAll(%q, %q, %q) = %q, want %q", tt.in, tt.old, tt.new, s, tt.out)
    			}
    		}
    	}
    }
    
    var TitleTests = []struct {
    	in, out string
    }{
    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess.json

            "title_ca",
            "title_ckb-iq",
            "title_cs",
            "title_da",
            "title_de",
            "title_el",
            "title_en",
            "title_en-ie",
            "title_es",
            "title_et",
            "title_eu",
            "title_fa",
            "title_fi",
            "title_fr",
            "title_gl",
            "title_gu",
            "title_he",
            "title_hi",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

            "title_ca",
            "title_ckb-iq",
            "title_cs",
            "title_da",
            "title_de",
            "title_el",
            "title_en",
            "title_en-ie",
            "title_es",
            "title_et",
            "title_eu",
            "title_fa",
            "title_fi",
            "title_fr",
            "title_gl",
            "title_gu",
            "title_he",
            "title_hi",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top