Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for emptyString (0.41 sec)

  1. src/syscall/syscall_plan9.go

    	}
    	return false
    }
    
    func (e ErrorString) Temporary() bool {
    	return e == EINTR || e == EMFILE || e.Timeout()
    }
    
    func (e ErrorString) Timeout() bool {
    	return e == EBUSY || e == ETIMEDOUT
    }
    
    var emptystring string
    
    // A Note is a string describing a process note.
    // It implements the os.Signal interface.
    type Note string
    
    func (n Note) Signal() {}
    
    func (n Note) String() string {
    	return string(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    			[]*Address{
    				{
    					Name:    `Micro`,
    					Address: "micro@µ.example.com",
    				},
    			},
    		},
    		// Issue 14866
    		{
    			`"" <emptystring@example.com>`,
    			[]*Address{
    				{
    					Name:    "",
    					Address: "emptystring@example.com",
    				},
    			},
    		},
    		// CFWS
    		{
    			`<******@****.***> (CFWS (cfws))  (another comment)`,
    			[]*Address{
    				{
    					Name:    "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	{"if 1.5i", "{{if 1.5i}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
    	{"if 0.0i", "{{if .ComplexZero}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if emptystring", "{{if ``}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if string", "{{if `notempty`}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	{"if 1.5i", "{{if 1.5i}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
    	{"if 0.0i", "{{if .ComplexZero}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if emptystring", "{{if ``}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if string", "{{if `notempty`}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/constants/SuggestConstants.java

     */
    package org.codelibs.fess.suggest.constants;
    
    public final class SuggestConstants {
        private SuggestConstants() {
        }
    
        public static final String EMPTY_STRING = "";
    
        public static final String USER_DICT_ENCODING = "fess.user.dict.encoding";
    
        public static final String USER_DICT_PATH = "fess.user.dict.path";
    
        public static final String TEXT_SEPARATOR = " ";
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

            final List<SuggestItem> items = new ArrayList<>();
    
            final String index;
            if (hits.length > 0) {
                index = hits[0].getIndex();
            } else {
                index = SuggestConstants.EMPTY_STRING;
            }
    
            for (final SearchHit hit : hits) {
                final Map<String, Object> source = hit.getSourceAsMap();
                final String text = source.get(FieldNames.TEXT).toString();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            final String index;
            if (hits.length > 0) {
                index = hits[0].getIndex();
            } else {
                index = SuggestConstants.EMPTY_STRING;
            }
    
            final boolean singleWordQuery = isSingleWordQuery(query);
            final boolean hiraganaQuery = isHiraganaQuery(query);
            for (int i = 0; i < hits.length && words.size() < size; i++) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.emptyDoubles.min() == 1.0": "min called on empty list",
    				"self.emptyDoubles.max() == 3.0": "max called on empty list",
    				"self.emptyStrings.min() == 'a'": "min called on empty list",
    				"self.emptyStrings.max() == 'c'": "max called on empty list",
    
    				// only allow sum on numeric types and duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top