Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for aBCD (2.79 sec)

  1. src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java

            assertEquals("abcd", normalizer.normalize("abcd", null));
            assertEquals("みかん", normalizer.normalize("みかん", null));
            assertEquals("みかん リンゴ", normalizer.normalize("みかん リンゴ", null));
        }
    
        public void test_AnyLower() {
            ICUNormalizer normalizer = new ICUNormalizer("Any-Lower");
            assertEquals("abcd", normalizer.normalize("ABCD", null));
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. cmd/object-handlers-common_test.go

    			canonicalizedETag: "",
    		},
    		{
    			etag:              "\"\"\"abc\"",
    			canonicalizedETag: "abc",
    		},
    		{
    			etag:              "abcd",
    			canonicalizedETag: "abcd",
    		},
    		{
    			etag:              "abcd\"\"",
    			canonicalizedETag: "abcd",
    		},
    	}
    	for _, test := range testCases {
    		etag := canonicalizeETag(test.etag)
    		if test.canonicalizedETag != etag {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixPatternStepTest.groovy

    class HasPrefixPatternStepTest extends Specification {
        def "matches name case sensitive"() {
            def step = new HasPrefixPatternStep(".abc", true)
    
            expect:
            step.matches(".abcd")
            step.matches(".abc")
            !step.matches(".")
            !step.matches(".a")
            !step.matches(".ab")
            !step.matches(".b")
            !step.matches(".bcd")
            !step.matches("_abc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/normalizer/DefaultNormalizerTest.java

        public void test_normalize() throws Exception {
            Normalizer normalizer = SuggestUtil.createDefaultNormalizer(runner.client(), suggester.settings());
            assertEquals("12345,.*[]「」abcケンサクabcdけんさくガギグゲゴ", normalizer.normalize("12345,.*[]「」ABCケンサクabcdけんさくガギグゲゴ", null));
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pkg/kubelet/types/pod_status_test.go

    	}
    
    	for _, tc := range trueCases {
    		if !PodConditionByKubelet(tc) {
    			t.Errorf("Expect %q to be condition owned by kubelet.", tc)
    		}
    	}
    
    	falseCases := []v1.PodConditionType{
    		v1.PodConditionType("abcd"),
    		v1.PodConditionType(v1.PodReasonUnschedulable),
    	}
    
    	for _, tc := range falseCases {
    		if PodConditionByKubelet(tc) {
    			t.Errorf("Expect %q NOT to be condition owned by kubelet.", tc)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/signing/src/test/resources/2.txt

    abcd...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4 bytes
    - Viewed (0)
  7. internal/s3select/sql/parser_test.go

    		"extract(YEAR from '2018-01-09')",
    		"extract(month from '2018-01-09')",
    
    		"extract(hour from '2018-01-09')",
    		"extract(day from '2018-01-09')",
    		"substring('abcd' from 2 for 2)",
    		"substring('abcd' from 2)",
    		"substring('abcd' , 2 , 2)",
    
    		"substring('abcd' , 22 )",
    		"trim('  aab  ')",
    		"trim(leading from '  aab  ')",
    		"trim(trailing from '  aab  ')",
    		"trim(both from '  aab  ')",
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/software/signing/src/test/resources/1.txt

    abcd...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4 bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("abd"));
            assertFalse(step.matches("a"));
        }
    
        @Test public void testMultiCharWildcard() {
            RegExpPatternStep step = new RegExpPatternStep("a*c", true);
            assertTrue(step.matches("abc"));
            assertTrue(step.matches("abrac"));
            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("ab"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. test/typeparam/adder.go

    func Add[T AddType](a, b T) T {
    	return a + b
    }
    
    func main() {
    	if got, want := Add(5, 3), 8; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	if got, want := Add("ab", "cd"), "abcd"; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 559 bytes
    - Viewed (0)
Back to top