Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for lccc (0.07 sec)

  1. src/runtime/runtime_test.go

    	// This isn't really an exhaustive test of == on strings, it's
    	// just a convenient way of documenting (via eqstring_generic)
    	// what == does.
    	s := []string{
    		"",
    		"a",
    		"c",
    		"aaa",
    		"ccc",
    		"cccc"[:3], // same contents, different string
    		"1234567890",
    	}
    	for _, s1 := range s {
    		for _, s2 := range s {
    			x := s1 == s2
    			y := eqstring_generic(s1, s2)
    			if x != y {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/AnnotationUtilTest.java

            final Map<String, Object> props = AnnotationUtil.getProperties(anno);
            assertThat((String) props.get("aaa"), is("123"));
            assertThat((String) props.get("bbb"), is("3"));
            assertThat(props.get("ccc"), is(nullValue()));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFileTest.java

            itemList.add(new StemmerOverrideItem(1, "aaa", "a"));
            itemList.add(new StemmerOverrideItem(2, "bbb", "b"));
            itemList.add(new StemmerOverrideItem(3, "ccc", "c"));
            stemmerOverrideFile.stemmerOverrideItemList = itemList;
        }
    
        public void test_selectList() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #999;
    }
    
    .token.punctuation {
        color: #ccc;
    }
    
    .token.tag,
    .token.attr-name,
    .token.namespace,
    .token.deleted {
        color: #e2777a;
    }
    
    .token.function-name {
        color: #6196cc;
    }
    
    .token.boolean,
    .token.number,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/net/MimeTypeUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetFromStream_gif() throws Exception {
            final String path = ClassUtil.getPackageName(this.getClass()).replaceAll("\\.", "/") + "/ccc.gif";
            final String contentType = MimeTypeUtil.guessContentType(path);
            assertEquals("image/gif", contentType);
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/all.css

        font-size: 1.85rem;
        text-align: center;
        padding-top: .8rem
    }
    
    .glossary .entries h4 {
        font-size: 1.65rem;
        font-weight: 300;
        border-bottom: 1px solid;
        color: #ccc;
        border-color: #ccc;
        margin-top: 2.2rem;
        margin-bottom: .15rem
    }
    
    .glossary .entries dl {
        margin-left: 0
    }
    
    .glossary .entries dl dt {
        font-weight: 600;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            included file("bbb")
            excluded file("ccc")
        }
    
        @Issue("GRADLE-2566")
        def canUseGStringsAsExcludes() {
            def a = "a"
            def b = "b"
    
            patternSet.excludes = ["${a}*"]
            patternSet.exclude("${b}*")
    
            expect:
            excluded file("aaa")
            excluded file("bbb")
            included file("ccc")
        }
    
        def supportIsEmptyMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/encoding/csv/reader_test.go

    	Output: [][]string{{"a", "b\rc", "d"}},
    }, {
    	Name: "RFC4180test",
    	Input: `§#field1,§field2,§field3
    ¶§"aaa",§"bb
    b",§"ccc"
    ¶§"a,a",§"b""bb",§"ccc"
    ¶§zzz,§yyy,§xxx
    `,
    	Output: [][]string{
    		{"#field1", "field2", "field3"},
    		{"aaa", "bb\nb", "ccc"},
    		{"a,a", `b"bb`, "ccc"},
    		{"zzz", "yyy", "xxx"},
    	},
    	UseFieldsPerRecord: true,
    	FieldsPerRecord:    0,
    }, {
    	Name:   "NoEOLTest",
    	Input:  "§a,§b,§c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

                return createCharSequence("bbb");
            }
    
            /**
             * @return CharSequence
             */
            public static CharSequence ccc() {
                return createCharSequence("ccc");
            }
    
            /**
             * @return CharSequence
             */
            public static CharSequence hoge() {
                return createCharSequence("hoge");
            }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/slices/slices_test.go

    				return len(s) > 1
    			},
    			want: []string{},
    		},
    		{
    			name:     "filter elements with length greater than 1",
    			elements: []string{"a", "bbb", "ccc", ""},
    			fn: func(s string) bool {
    				return len(s) > 1
    			},
    			want: []string{"bbb", "ccc"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			filter := Filter(tt.elements, tt.fn)
    			if !reflect.DeepEqual(filter, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top