Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for emptyString (0.2 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            result.testClass("org.gradle.FooTest").assertTestOutcomes(testOutcome, testName)
            if (dryRun) {
                result.testClassByXml("org.gradle.FooTest").assertStderr(Matchers.emptyString())
            } else {
                result.testClassByXml("org.gradle.FooTest").assertStderr(Matchers.containsString("ran FooTest.${testName}!"))
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K 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/go/constant/value.go

    func MakeBool(b bool) Value { return boolVal(b) }
    
    // MakeString returns the [String] value for s.
    func MakeString(s string) Value {
    	if s == "" {
    		return &emptyString // common case
    	}
    	return &stringVal{s: s}
    }
    
    var emptyString stringVal
    
    // MakeInt64 returns the [Int] value for x.
    func MakeInt64(x int64) Value { return int64Val(x) }
    
    // MakeUint64 returns the [Int] value for x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  4. 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)
Back to top