- Sort Score
- Result 10 results
- Languages All
Results 4231 - 4240 of 4,441 for avoid (0.11 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
* * @param session The Maven session context * @param toolchain The toolchain to store * @throws ToolchainManagerException if storing the toolchain fails */ void storeToolchainToBuildContext(@Nonnull Session session, @Nonnull Toolchain toolchain) throws ToolchainManagerException;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java
// // or we can show it graphically as: // // p1 ---> p0 --> super model // // ---------------------------------------------------------------------- @Test void testDependencyManagementOverridesTransitiveDependencyVersion() throws Exception { File localRepo = getLocalRepositoryPath(); File pom0 = new File(localRepo, "p0/pom.xml");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy
} private Set<CtMethod> collectAllPublicApiMethods(CtClass c) { Set<CtMethod> result = [] as Set collect(result, c) return result } private void collect(Set<CtMethod> result, CtClass c) { if (c == null) { return } result.addAll(c.declaredMethods.findAll { isPublicApi(it) }) collect(result, c.superclass) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
} getSession().ifPresent(session -> session.removeAttribute(INVALID_OLD_PASSWORD)); return redirect(ProfileAction.class); } private void validatePasswordForm(final PasswordForm form, final VaErrorHook validationErrorLambda) { validate(form, messages -> {}, validationErrorLambda); if (!form.password.equals(form.confirmPassword)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
} } catch (final IOException fnfe) { log.error("Could not read lmhosts " + tc.getConfig().getLmHostsFileName(), fnfe); //$NON-NLS-1$ } return result; } void populate(final Reader r, final CIFSContext tc) throws IOException { String line; final BufferedReader br = new BufferedReader(r); while ((line = br.readLine()) != null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMultiset.java
} @CanIgnoreReturnValue @Override public final boolean retainAll(Collection<?> elementsToRetain) { return Multisets.retainAllImpl(this, elementsToRetain); } @Override public abstract void clear(); // Views @LazyInit private transient @Nullable Set<E> elementSet; @Override public Set<E> elementSet() { Set<E> result = elementSet; if (result == null) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ReflectionFreeAssertThrows.java
import org.jspecify.annotations.Nullable; /** Replacements for JUnit's {@code assertThrows} that work under GWT/J2CL. */ @GwtCompatible @NullMarked final class ReflectionFreeAssertThrows { interface ThrowingRunnable { void run() throws Throwable; } interface ThrowingSupplier { @Nullable Object get() throws Throwable; } @CanIgnoreReturnValue static <T extends Throwable> T assertThrows(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java
// // ---------------------------------------------------------------------- @Test @DisabledOnOs(value = WINDOWS, disabledReason = "need to investigate why it fails on windows") void testProjectInheritance() throws Exception { File localRepo = getLocalRepositoryPath(); System.out.println("Local repository is at: " + localRepo.getAbsolutePath());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 04 10:35:11 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* in a lazy fashon. */ void checkData(final CIFSContext tc) throws UnknownHostException { if (this.hostName.isUnknown()) { tc.getNameServiceClient().getNbtAllByAddress(this); } } void checkNodeStatusData(final CIFSContext tc) throws UnknownHostException { if (!this.isDataFromNodeStatus) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
delegate.addRelatedGroup(group); } for (int run = 0; run < REPETITIONS; run++) { testItems(); delegate.test(); } return this; } private void testItems() { for (Object item : Iterables.concat(equalityGroups)) { assertTrue(item + " must not be Object#equals to null", !item.equals(null)); assertTrue(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0)