- Sort Score
- Num 10 results
- Language All
Results 1691 - 1700 of 1,809 for scratch (0.1 seconds)
-
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
trans2SetFileInfo.writeParametersWireFormat(buffer, 0); trans2SetFileInfo.toString(); success[index] = true; } catch (Exception e) { e.printStackTrace(); success[index] = false; } }); threads[i].start(); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterables.java
if (!predicate.apply(element)) { if (from > to) { try { list.set(to, element); } catch (UnsupportedOperationException e) { slowRemoveIfForRemainingElements(list, predicate, to, from); return true; } catch (IllegalArgumentException e) { slowRemoveIfForRemainingElements(list, predicate, to, from); return true; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 18:35:28 GMT 2025 - 43.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
} private static Type genericReturnType(Class<?> cls, String methodName) { try { return cls.getMethod(methodName).getGenericReturnType(); } catch (Exception e) { throw new RuntimeException(e); } } public void testTwoStageResolution() { class ForTwoStageResolution<A extends Number> { <B extends A> void verifyTwoStageResolution() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
Runnable task = () -> { try { if (shouldWait.get()) { firstBarrier.await(); secondBarrier.await(); } } catch (Exception e) { throw new RuntimeException(e); } }; TestCustomScheduler scheduler = new TestCustomScheduler();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
Runnable task = () -> { try { if (shouldWait.get()) { firstBarrier.await(); secondBarrier.await(); } } catch (Exception e) { throw new RuntimeException(e); } }; TestCustomScheduler scheduler = new TestCustomScheduler();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
} private static Type genericReturnType(Class<?> cls, String methodName) { try { return cls.getMethod(methodName).getGenericReturnType(); } catch (Exception e) { throw new RuntimeException(e); } } public void testTwoStageResolution() { class ForTwoStageResolution<A extends Number> { <B extends A> void verifyTwoStageResolution() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
commandLineBuilder.addArg(interpolator.interpolate(arg, callback)); } return copy(source, cliManager, commandLineBuilder.get()); } catch (InterpolatorException e) { throw new IllegalArgumentException("Could not interpolate CommonsCliOptions", e); } }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} else { queryContext.setQueryBuilder(QueryBuilders.matchAllQuery()); } // TODO options query context.accept(queryContext); } catch (final QueryParseException e) { throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
parser.setProperty(XMLConstants.ACCESS_EXTERNAL_DTD, StringUtil.EMPTY); parser.setProperty(XMLConstants.ACCESS_EXTERNAL_SCHEMA, StringUtil.EMPTY); parser.parse(is, this); } catch (final Exception e) { throw new GsaConfigException("Failed to parse XML file.", e); } } /** * SAX event handler called at the beginning of document parsing.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
try { Files.move(from, to); if (success) { assertFalse(from.exists()); assertTrue(to.exists()); } else { fail("expected exception"); } } catch (IOException possiblyExpected) { if (success) { throw possiblyExpected; } } } private static class UnmovableFile extends File { private final boolean canRename;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 22.8K bytes - Click Count (0)