- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 37 for cut (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/Cut.java
* always be represented by a pair of {@code Cut} instances. * * @author Kevin Bourrillion */ @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989 @GwtCompatible abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { final C endpoint; Cut(C endpoint) { this.endpoint = endpoint; }Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 18:35 - 12.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/Cut.java
* always be represented by a pair of {@code Cut} instances. * * @author Kevin Bourrillion */ @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989 @GwtCompatible abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { final C endpoint; Cut(C endpoint) { this.endpoint = endpoint; }Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 18:35 - 12.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/Range.java
checkNotNull(lowerType); checkNotNull(upperType); Cut<C> lowerBound = (lowerType == BoundType.OPEN) ? Cut.aboveValue(lower) : Cut.belowValue(lower); Cut<C> upperBound = (upperType == BoundType.OPEN) ? Cut.belowValue(upper) : Cut.aboveValue(upper); return create(lowerBound, upperBound); } /**
Created: 2026-04-03 12:43 - Last Modified: 2025-09-22 18:35 - 28.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
} else { cut = positiveRangesByLowerBound.higherKey(Cut.belowAll()); } Cut<C> firstComplementRangeUpperBound = firstNonNull(cut, Cut.aboveAll()); return new AbstractIterator<Entry<Cut<C>, Range<C>>>() { Cut<C> nextComplementRangeUpperBound = firstComplementRangeUpperBound; @Override protected @Nullable Entry<Cut<C>, Range<C>> computeNext() {Created: 2026-04-03 12:43 - Last Modified: 2025-09-23 17:50 - 32.3K bytes - Click Count (0) -
src/main/webapp/js/clipboard.min.js
tion,n=void 0===e?"copy":e,o=t.container,e=t.target,t=t.text;if("copy"!==n&&"cut"!==n)throw new Error('Invalid "action" value, use either "copy" or "cut"');if(void 0!==e){if(!e||"object"!==l(e)||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===n&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===n&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid...
Created: 2026-03-31 13:07 - Last Modified: 2025-01-12 06:14 - 8.9K bytes - Click Count (0) -
.github/workflows/cleanup-stale-performance-data.yml
run: | # jdbc:mysql://gradle-bt-performance.xyz.eu-central-1.rds.amazonaws.com:3306 -> gradle-bt-performance.xyz.eu-central-1.rds.amazonaws.com echo "DB_HOST=$(echo ${PERFORMANCE_DB_URL} | cut -d/ -f3 | cut -d: -f1)" >> $GITHUB_ENV - name: Clean up stale data and verify results run: | echo "Cleaning up stale data from both databases..." docker run --rm mysql:latest mysql \Created: 2026-04-01 11:36 - Last Modified: 2026-03-24 22:05 - 2.6K bytes - Click Count (0) -
docs/resiliency/resiliency-verify-script.sh
exit 1 fi # Check if check sums match for source and destination directories CHECK_SUM_SRC=$(sha384sum <(sha384sum "${SRC_DIR}"/* | cut -d " " -f 1 | sort) | cut -d " " -f 1) CHECK_SUM_DEST=$(sha384sum <(sha384sum "${DEST_DIR}"/* | cut -d " " -f 1 | sort) | cut -d " " -f 1) if [ "${CHECK_SUM_SRC}" != "${CHECK_SUM_DEST}" ]; then echo "Checksum verification of source files and destination files failed" exit 1 fiCreated: 2026-04-05 19:28 - Last Modified: 2024-12-21 04:24 - 1.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/RangeTest.java
} } public void testOrderingCuts() { Cut<Integer> a = Range.lessThan(0).lowerBound; Cut<Integer> b = Range.atLeast(0).lowerBound; Cut<Integer> c = Range.greaterThan(0).lowerBound; Cut<Integer> d = Range.atLeast(1).lowerBound; Cut<Integer> e = Range.greaterThan(1).lowerBound; Cut<Integer> f = Range.greaterThan(1).upperBound;
Created: 2026-04-03 12:43 - Last Modified: 2026-03-13 13:01 - 24.4K bytes - Click Count (0) -
src/bytes/example_test.go
before, after, found := bytes.Cut([]byte(s), []byte(sep)) fmt.Printf("Cut(%q, %q) = %q, %q, %v\n", s, sep, before, after, found) } show("Gopher", "Go") show("Gopher", "ph") show("Gopher", "er") show("Gopher", "Badger") // Output: // Cut("Gopher", "Go") = "", "pher", true // Cut("Gopher", "ph") = "Go", "er", true // Cut("Gopher", "er") = "Goph", "", true // Cut("Gopher", "Badger") = "Gopher", "", false }
Created: 2026-04-07 11:13 - Last Modified: 2025-05-12 16:07 - 16.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java
} } private static final ImmutableList<Cut<Integer>> CUTS_TO_TEST; static { List<Cut<Integer>> cutsToTest = new ArrayList<>(); for (int i = MIN_BOUND - 1; i <= MAX_BOUND + 1; i++) { cutsToTest.add(Cut.belowValue(i)); cutsToTest.add(Cut.aboveValue(i)); } cutsToTest.add(Cut.<Integer>aboveAll()); cutsToTest.add(Cut.<Integer>belowAll());
Created: 2026-04-03 12:43 - Last Modified: 2025-10-28 16:03 - 24.4K bytes - Click Count (0)