Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 361 - 370 of 739 for testDfs (0.3 seconds)

  1. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.ImmutableListTailSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.UnhashableElementsImmutableListGenerator;
    import com.google.common.collect.testing.testers.ListHashCodeTester;
    import com.google.common.testing.CollectorTester;
    import com.google.common.testing.NullPointerTester;
    import com.google.common.testing.SerializableTester;
    import java.util.Arrays;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  2. docs/fr/docs/benchmarks.md

    # Tests de performance { #benchmarks }
    
    Les benchmarks indépendants de TechEmpower montrent que les applications **FastAPI** s’exécutant avec Uvicorn sont [parmi les frameworks Python les plus rapides disponibles](https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7), seulement en dessous de Starlette et Uvicorn eux‑mêmes (tous deux utilisés en interne par FastAPI).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneTestPlugin.java

    import org.gradle.api.tasks.testing.Test;
    
    /**
     * Configures the build to compile against Elasticsearch's test framework and
     * run integration and unit tests. Use BuildPlugin if you want to build main
     * code as well as tests.
     */
    public class StandaloneTestPlugin implements Plugin<Project> {
        @Override
        public void apply(final Project project) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/forbidden/es-test-signatures.txt

    org.apache.lucene.util.LuceneTestCase$Slow @ Don't write slow tests
    org.junit.Ignore @ Use AwaitsFix instead
    org.apache.lucene.util.LuceneTestCase$Nightly @ We don't run nightly tests at this point!
    com.carrotsearch.randomizedtesting.annotations.Nightly @ We don't run nightly tests at this point!
    
    org.junit.Test @defaultMessage Just name your test method testFooBar
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  5. container-tests/README.md

    OkHttp Container Tests
    ======================
    
    This module contains tests against other services
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Jan 20 09:58:21 GMT 2024
    - 113 bytes
    - Click Count (0)
  6. guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixType.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 19 16:02:36 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  7. scripts/test.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    export PYTHONPATH=./docs_src
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 10:53:47 GMT 2026
    - 124 bytes
    - Click Count (0)
  8. guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Abstract test case parent for anything implementing {@link ListenableFuture}. Tests the two get
     * methods and the addListener method.
     *
     * @author Sven Mawson
     * @since 10.0
     */
    @GwtIncompatible
    public abstract class AbstractListenableFutureTest extends TestCase {
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 11 18:52:30 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  9. src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java

    import org.junit.jupiter.params.provider.ValueSource;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.smb1.Config;
    
    /**
     * Tests for {@link NtlmMessage}. Since {@code NtlmMessage} is abstract we
     * create a lightweight concrete subclass only to exercise the inherited
     * behaviour. The tests cover flag manipulation, byte‑buffer operations and
     * static helpers. Edge cases such as null or short arrays and negative
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

            File restTestOutputDir = new File(outputResourceDir.get().getAsFile(), REST_TEST_PREFIX);
    
            // only copy core tests if explicitly instructed
            if (includeCore.get().isEmpty() == false) {
                getLogger().debug("Rest tests for project [{}] will be copied to the test resources.", projectPath);
                fileSystemOperations.copy(c -> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
Back to Top