- Sort Score
- Num 10 results
- Language All
Results 2001 - 2010 of 5,779 for classe (0.04 seconds)
-
android/guava/src/com/google/common/cache/CacheLoader.java
* * {@snippet : * CacheLoader<Key, Graph> loader = CacheLoader.from(key -> createExpensiveGraph(key)); * } * * @author Charles Fry * @since 10.0 */ @GwtCompatible public abstract class CacheLoader<K, V> { /** Constructor for use by subclasses. */ protected CacheLoader() {} /** * Computes or retrieves the value corresponding to {@code key}. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 9.7K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Stopwatch.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Oct 08 18:55:33 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
* and have access to the Fess system environment including OpenSearch URL and session ID.</p> */ public class PythonJob extends ExecJob { /** Logger instance for this class */ static final Logger logger = LogManager.getLogger(PythonJob.class); /** * Default constructor for PythonJob. * Creates a new instance of the Python job with default settings. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
import org.junit.jupiter.api.Test; /** * Unit tests for IpAddressUtil class. */ public class IpAddressUtilTest { @Test public void testCompressIPv6() { // Test IPv6 compression (using reflection to access protected method) try { java.lang.reflect.Method method = IpAddressUtil.class.getDeclaredMethod("compressIPv6", String.class); method.setAccessible(true);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/ByteSourceTester.java
*/ @AndroidIncompatible // TODO(b/230620681): Make this available (even though we won't run it). @NullUnmarked public class ByteSourceTester extends SourceSinkTester<ByteSource, byte[], ByteSourceFactory> { private static final ImmutableList<Method> testMethods = getTestMethods(ByteSourceTester.class); static TestSuite tests(String name, ByteSourceFactory factory, boolean testAsCharSource) { TestSuite suite = new TestSuite(name);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 8.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java
/** * Unit test for {@link Uninterruptibles#getUninterruptibly} * * @author Kevin Bourrillion * @author Chris Povirk */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class UninterruptibleFutureTest extends TestCase { private SleepingRunnable sleeper; private Future<Boolean> delayedFuture; private final TearDownStack tearDownStack = new TearDownStack(); @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 8.9K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ImmutableGraph.java
* class may be obtained with {@link #copyOf(Graph)}. * * <p>See the Guava User's Guide's <a * href="https://github.com/google/guava/wiki/GraphsExplained#immutable-implementations">discussion * of the {@code Immutable*} types</a> for more information on the properties and guarantees * provided by this class. * * @author James Sexton * @author Joshua O'MadadhainCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 7.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Tests for {@code UnsignedInteger}. * * @author Louis Wasserman */ @GwtCompatible @NullUnmarked public class UnsignedIntegerTest extends TestCase { private static final ImmutableSet<Integer> TEST_INTS; private static final ImmutableSet<Long> TEST_LONGS; private static int force32(int value) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 9.6K bytes - Click Count (0) -
tests/test_request_params/test_cookie/test_required_str.py
# Without aliases @app.get("/required-str") async def read_required_str(p: Annotated[str, Cookie()]): return {"p": p} class CookieModelRequiredStr(BaseModel): p: str @app.get("/model-required-str") async def read_model_required_str(p: Annotated[CookieModelRequiredStr, Cookie()]): return {"p": p.p}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 10.4K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java
* thing it'd do. It is sneaky. */ @Setup public void forceLoadClasses(Blackhole bh) { bh.consume(LongKeyedBucketOrds.FromSingle.class); bh.consume(LongKeyedBucketOrds.FromMany.class); bh.consume(LongKeyedBucketOrds.FromManySmall.class); } /** * Emulates a way that we do <strong>not</strong> use {@link LongKeyedBucketOrds} * because it is not needed. */
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Feb 19 20:59:23 GMT 2021 - 8.4K bytes - Click Count (0)