- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 468 for Split (0.05 seconds)
-
.github/workflows/extract-unit-test-split.jq
Stefan Wolf <******@****.***> 1633938695 +0200
Created: 2026-04-01 11:36 - Last Modified: 2021-10-11 08:08 - 171 bytes - Click Count (0) -
guava-tests/test/com/google/common/base/SplitterTest.java
() -> COMMA_SPLITTER.withKeyValueSeparator(":").split("a:1,b:2,a:3")); } public void testMapSplitter_varyingTrimLevels() { MapSplitter splitter = COMMA_SPLITTER.trimResults().withKeyValueSeparator(Splitter.on("->")); Map<String, String> split = splitter.split(" x -> y, z-> a "); assertThat(split).containsEntry("x ", " y"); assertThat(split).containsEntry("z", " a"); }
Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 15:59 - 29.7K bytes - Click Count (0) -
src/main/webapp/js/admin/moment-with-locales.min.js
defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"vm":"VM":t?"...Created: 2026-03-31 13:07 - Last Modified: 2024-10-26 01:49 - 360.5K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Created: 2026-03-31 13:07 - Last Modified: 2026-03-26 02:24 - 92.3K bytes - Click Count (0) -
guava/src/com/google/common/base/Splitter.java
* {@link #splitToList(CharSequence)}. Java 8+ users may prefer {@link #splitToStream} instead. * * @param sequence the sequence of characters to split * @return an iteration over the segments split from the parameter */ public Iterable<String> split(CharSequence sequence) { checkNotNull(sequence); return new Iterable<String>() { @Override public Iterator<String> iterator() {Created: 2026-04-03 12:43 - Last Modified: 2026-02-23 19:19 - 23.8K bytes - Click Count (0) -
src/bufio/example_test.go
// Set the split function for the scanning operation. scanner.Split(bufio.ScanWords) // Count the words. count := 0 for scanner.Scan() { count++ } if err := scanner.Err(); err != nil { fmt.Fprintln(os.Stderr, "reading input:", err) } fmt.Printf("%d\n", count) // Output: 15 } // Use a Scanner with a custom split function (built by wrapping ScanWords) to validate
Created: 2026-04-07 11:13 - Last Modified: 2024-11-01 21:52 - 5.5K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Splitter.java
* {@link #splitToList(CharSequence)}. * * @param sequence the sequence of characters to split * @return an iteration over the segments split from the parameter */ public Iterable<String> split(CharSequence sequence) { checkNotNull(sequence); return new Iterable<String>() { @Override public Iterator<String> iterator() {Created: 2026-04-03 12:43 - Last Modified: 2026-02-23 19:19 - 23.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/BucketExtensions.kt
*/ package model import java.util.LinkedList /** * Split a list of elements into nearly even sublist. If an element is too large, largeElementSplitFunction will be used to split the large element into several smaller pieces; * if some elements are too small, they will be aggregated by smallElementAggregateFunction. * * @param list the list to split, must be ordered by size desc
Created: 2026-04-01 11:36 - Last Modified: 2025-02-12 09:12 - 5.7K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
return spliterator.tryAdvance(action); } @Override @Nullable GeneralSpliterator<E> trySplit() { Spliterator<E> split = spliterator.trySplit(); return split == null ? null : new GeneralSpliteratorOfObject<>(split); } } @IgnoreJRERequirement // *should* be redundant with the annotation on SpliteratorTester private static final class GeneralSpliteratorOfPrimitive<
Created: 2026-04-03 12:43 - Last Modified: 2026-04-01 17:27 - 12.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
return spliterator.tryAdvance(action); } @Override @Nullable GeneralSpliterator<E> trySplit() { Spliterator<E> split = spliterator.trySplit(); return split == null ? null : new GeneralSpliteratorOfObject<>(split); } } private static final class GeneralSpliteratorOfPrimitive< E extends @Nullable Object, C, S extends Spliterator.OfPrimitive<E, C, S>>
Created: 2026-04-03 12:43 - Last Modified: 2026-04-01 17:27 - 12.1K bytes - Click Count (0)