- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 7,602 for Class (0.06 sec)
-
android/guava-tests/test/com/google/common/cache/AbstractLoadingCacheTest.java
import junit.framework.TestCase; import org.checkerframework.checker.nullness.qual.Nullable; /** * Unit test for {@link AbstractLoadingCache}. * * @author Charles Fry */ public class AbstractLoadingCacheTest extends TestCase { public void testGetUnchecked_checked() { final Exception cause = new Exception(); final AtomicReference<Object> valueRef = new AtomicReference<>();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
maven = container.lookup(Maven.class); executionRequestPopulator = container.lookup(MavenExecutionRequestPopulator.class); modelProcessor = createModelProcessor(container); configurationProcessors = container.lookupMap(ConfigurationProcessor.class); toolchainsBuilder = container.lookup(ToolchainsBuilder.class);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
docs/em/docs/advanced/settings.md
/// <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">π π’</a> (π "π¨π» {") π’ π π π π π, πββ βοΈ, & πͺ β π π π (βοΈ π π π). π πͺ β & βοΈ π π’ π, π΅ πββ π: //// tab | πΎ, πΈπ», πͺ π <div class="termy"> ```console // You could create an env var MY_NAME with $ export MY_NAME="Wade Wilson"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.3K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
* <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a> * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a> * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a> * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>, etc.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 28.5K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
} /** * Returns the package name of the class, without attempting to load the class. * * <p>Behaves similarly to {@code class.getPackage().}{@link Package#getName() getName()} but * does not require the class (or package) to be loaded. * * <p>But note that this method may behave differently for a class in the default package: For
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/ReflectionFreeAssertThrows.java
.put(NoSuchElementException.class, e -> e instanceof NoSuchElementException) .put(NullPointerException.class, e -> e instanceof NullPointerException) .put(NumberFormatException.class, e -> e instanceof NumberFormatException) .put(RuntimeException.class, e -> e instanceof RuntimeException) .put(SomeCheckedException.class, e -> e instanceof SomeCheckedException)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/EventBusTest.java
} public void testPrimitiveSubscribeFails() { class SubscribesToPrimitive { @Subscribe public void toInt(int i) {} } assertThrows(IllegalArgumentException.class, () -> bus.register(new SubscribesToPrimitive())); } /** Records thrown exception information. */ private static final class RecordingSubscriberExceptionHandler implements SubscriberExceptionHandler {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 11.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <div class="row"> <div class="col-sm-2"> <la:message key="labels.pagination_page_guide_msg" arg0="${f:h(pager.currentPageNumber)}" arg1="${f:h(pager.allPageCount)}" arg2="${f:h(pager.allRecordCount)}" /> </div> <nav aria-label="..."> </nav> <div class="col-sm-10"> <ul class="pagination pagination-sm m-0 float-right"> <c:if test="${pager.existPrePage}">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 1.5K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
} public String getId() { return groupId + ":" + artifactId + ":" + version; } ]]></code> </codeSegment> </codeSegments> </class> <class xdoc.anchorName="mojo"> <name>MojoDescriptor</name> <version>1.0.0+</version> <description>A Mojo description.</description> <fields> <field> <name>goal</name>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentCache.java
import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.util.logging.Logger; public class ContentCache implements Closeable { protected static final Logger logger = Logger.getLogger(ContentCache.class.getName()); private final byte[] data; private final File file; public ContentCache(final byte[] data) { this.data = data;
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Mon Nov 14 21:05:19 UTC 2022 - 1.6K bytes - Viewed (0)