Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for testNoop (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            // Given: Create a new pool for this test to ensure isolation
            SmbTransportPoolImpl testPool = new SmbTransportPoolImpl();
            when(ctx.getTransportPool()).thenReturn(testPool);
    
            // Create an existing connection
            SmbTransportImpl first = testPool.getSmbTransport(ctx, address, 445, false);
    
            // When: Request another connection
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 19.2K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

         * Root directory of the tests being generated. To make rest tests happy
         * we generate them in a testRoot which is contained in this directory.
         */
        private DirectoryProperty testRoot
    
        @Internal
        Set<String> names = new HashSet<>()
    
        @Inject
        RestTestsFromSnippetsTask(ObjectFactory objectFactory) {
            testRoot = objectFactory.directoryProperty()
            TestBuilder builder = new TestBuilder()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

                    .get()
                    .getOutput()
                    .getClassesDirs()
                    .getFiles()
                    .stream()
                    .filter(File::exists)
                    .flatMap(testRoot -> walkPathAndLoadClasses(testRoot).entrySet().stream())
                    .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
            }
            return testClassNames;
        }
    
        @Input
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
  4. tensorflow/c/BUILD

        ],
    )
    
    tf_custom_op_library(
        name = "test_op1.so",
        srcs = ["test_op1.cc"],
    )
    
    tf_kernel_library(
        name = "test_op_kernel",
        srcs = ["test_op.cc"],
        deps = [
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
        alwayslink = 1,
    )
    
    tf_cuda_cc_test(
        name = "env_test",
        size = "medium",
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 17 18:49:14 GMT 2026
    - 30.3K bytes
    - Click Count (0)
  5. TESTING.asciidoc

    ------------------------------------------------------------------------
    
    === Repeats a given test N times
    
    (note the filters - individual test repetitions are given suffixes,
    ie: testFoo[0], testFoo[1], etc... so using testmethod or tests.method
    ending in a glob is necessary to ensure iterations are run).
    
    -------------------------------------------------------------------------
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
Back to Top