Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 497 for testF (0.16 sec)

  1. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/Test.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.junit.Assert;
    
    public class Test {
    
        @org.junit.Test
        public void ok() {
            System.out.println("sys out ok");
            System.err.println("sys err ok");
        }
    
        @org.junit.Test
        public void fail() {
            Assert.fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 895 bytes
    - Viewed (0)
  2. testing/performance/src/templates/with-junit/Test.java

        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% (binding.hasVariable("testMethodCount") ? testMethodCount : 20).times { index ->  %>
        @org.junit.Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 399 bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/Test.java

    package ${packageName};
    
    import static org.junit.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
        @org.junit.Test
        public void test() {
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 294 bytes
    - Viewed (1)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildScriptClasspathIntegrationTest.java

                    "public class OnDemandImportedClass { }"
            );
            builder.buildJar(testFile("repo/test-1.3.jar"));
    
            testFile("build.gradle").writelns(
                    "import org.gradle.test.ImportedClass",
                    "import static org.gradle.test.StaticImportedClass.*",
                    "import static org.gradle.test.StaticImportedFieldClass.anotherValue",
                    "import org.gradle.test2.*",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest/sub_test/sub2","Output":"            foo_test.go:14: output from sub2 test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:22: output from root test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:27: output from root test\n"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test/sub2"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/mlir_pass_instrumentation_test.cc

      std::string pass_that_changed_identity_;
      friend class TestInstrumentor;
    };
    
    class TestInstrumentor : public PassInstrumentation {
     public:
      explicit TestInstrumentor(TestPassInstrumentation* test) : test_(test) {}
    
     private:
      void runBeforePass(Pass* pass, Operation* op) override {
        StringStream stream;
        op->print(stream, mlir::OpPrintingFlags().useLocalScope());
        ops_seen_by_pass_[pass] = stream.ss.str();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_request_files/test_tutorial003_py39.py

        path = tmp_path / "test.txt"
        path.write_bytes(b"<file content>")
        path2 = tmp_path / "test2.txt"
        path2.write_bytes(b"<file content2>")
    
        client = TestClient(app)
        with path.open("rb") as file, path2.open("rb") as file2:
            response = client.post(
                "/files/",
                files=(
                    ("files", ("test.txt", file)),
                    ("files", ("test2.txt", file2)),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/test/resources/org/codelibs/core/io/test.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 1.4.2_12 (Sun Microsystems Inc.) test.txt...
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 437 bytes
    - Viewed (0)
  9. src/test/resources/org/codelibs/core/io/test.txt

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 17 bytes
    - Viewed (0)
  10. fess-crawler/src/test/resources/extractor/image/test.png

    test.png...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Jan 21 05:12:12 UTC 2016
    - 156 bytes
    - Viewed (0)
Back to top