- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,205 for science (0.72 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java
import org.apache.maven.utils.Os; import org.slf4j.Logger; /** * JDK toolchain implementation. * * @since 2.0.9, renamed from DefaultJavaToolChain in 3.2.4 * @deprecated Use {@link org.apache.maven.api.services.ToolchainFactory} instead. */ @Deprecated(since = "4.0.0") public class JavaToolchainImpl extends DefaultToolchain implements JavaToolchain { private String javaHome;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/ProblemCollector.java
*/ package org.apache.maven.building; import java.util.List; /** * Collects problems that are encountered during settings building. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services} instead */ @Deprecated(since = "4.0.0") public interface ProblemCollector { /** * Adds the specified problem. * Either message or exception is required *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 18:51:29 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/AsyncEventBus.java
import java.util.concurrent.Executor; /** * An {@link EventBus} that takes the Executor of your choice and uses it to dispatch events, * allowing dispatch to occur asynchronously. * * @author Cliff Biffle * @since 10.0 */ public class AsyncEventBus extends EventBus { /** * Creates a new AsyncEventBus that will use {@code executor} to dispatch events. Assigns {@code * identifier} as the bus's name for logging purposes.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ComparisonChain.java
* * <pre> * Comparator.comparing(Foo::isBar, {@link Booleans#falseFirst()}) * </pre> * * @since 12.0 (present as {@code compare} since 2.0) */ public abstract ComparisonChain compareFalseFirst(boolean left, boolean right); /** * Ends this comparison chain and returns its result: a value having the same sign as the first
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeBasedTable.java
* a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still runs * quickly, since the row key is provided. However, {@code column(columnKey).size()} takes longer, * since an iteration across all row keys occurs. * * <p>Because a {@code TreeBasedTable} has unique sorted values for a given row, both {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
// The mock setup is unnecessary since we never call it assertFalse(ctx.isEstablished()); verify(this.mechContext, never()).isEstablished(); } @Test @DisplayName("getNetbiosName returns null and does not call delegate") void testGetNetbiosName() { SpnegoContext ctx = newContext(); // The mock setup is unnecessary since we never call it
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Throwables.java
* * <p>See the Guava User Guide entry on <a * href="https://github.com/google/guava/wiki/ThrowablesExplained">Throwables</a>. * * @author Kevin Bourrillion * @author Ben Yu * @since 1.0 */ @GwtCompatible public final class Throwables { private Throwables() {} /** * Throws {@code throwable} if it is an instance of {@code declaredType}. Example usage: * * <pre>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.6K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
* {@link LongMath} respectively. * * @author Louis Wasserman * @since 11.0 */ @GwtCompatible public final class BigIntegerMath { /** * Returns the smallest power of two greater than or equal to {@code x}. This is equivalent to * {@code BigInteger.valueOf(2).pow(log2(x, CEILING))}. * * @throws IllegalArgumentException if {@code x <= 0} * @since 20.0 */ public static BigInteger ceilingPowerOfTwo(BigInteger x) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
* @throws IllegalStateException if the service manager reaches a state from which it cannot * become {@linkplain #isHealthy() healthy}. * @since 33.4.0 (but since 28.0 in the JRE flavor) */ @IgnoreJRERequirement // Users will use this only if they're already using Duration. public void awaitHealthy(Duration timeout) throws TimeoutException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/TearDown.java
import com.google.common.annotations.GwtCompatible; import org.jspecify.annotations.NullMarked; /** * An object that can perform a {@link #tearDown} operation. * * @author Kevin Bourrillion * @since 10.0 */ @GwtCompatible @NullMarked public interface TearDown { /** * Performs a <b>single</b> tear-down operation. See test-libraries-for-java's {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.8K bytes - Viewed (0)