Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 511 for test_1 (0.17 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/SomeIntegTest.swift

    import XCTest
    
    class SomeIntegTest: XCTestCase {
        public static var allTests = [
            ("test1", test1),
            ("test2", test2)
        ]
        func test1() {}
        func test2() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  2. test/closedchan.go

    		if recover() == nil {
    			panic("did not panic")
    		}
    	}()
    	f()
    }
    
    func test1(c Chan) {
    	for i := 0; i < 3; i++ {
    		// recv a close signal (a zero value)
    		if x := c.Recv(); x != 0 {
    			println("test1: recv on closed:", x, c.Impl())
    			failed = true
    		}
    		if x, ok := c.Recv2(); x != 0 || ok {
    			println("test1: recv2 on closed:", x, ok, c.Impl())
    			failed = true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/html/test1.html

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>タイトル</title>
    </head>
    <body>
    <h1>第一章</h1>
    <h2>第一節</h2>
    <p>ほげほげ<br>ふがふが</p>
    <p>
    <a href="test2.html">LINK</a>
    </p>
    <h1>第2章</h1>
    <h2>第2節</h2>
    </body>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 289 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/testng-preserveorder/groovy/src/test/java/org/gradle/testng/Test1.java

    import org.testng.annotations.AfterClass;
    import org.testng.annotations.BeforeClass;
    import org.testng.annotations.Test;
    
    public class Test1 {
    
        @BeforeClass
        public void beforeClass() {
            System.out.println("Test1.beforeClass()");
        }
    
        @Test
        public void test1() {
            System.out.println("Test1.test1()");
        }
    
        @Test(dependsOnMethods = {"test1"})
        public void test2() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitJdkNavigationIntegrationTest.groovy

                        value = 1;
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/Test1.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class Test1 extends AbstractTest {
    
                    @Test
                    public void shouldPass() {
                        assertEquals(1, value);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

            setup:
            def testFile = folder.createFile("test1")
            when:
            def object = parse(testFile)
            then:
            object instanceof File
            testFile == object
        }
    
        def "with Path returns the File it represents"() {
            setup:
            def testPath = folder.createFile("test1").toPath()
            when:
            def object = parse(testPath)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. tensorflow/c/eager/unified_api_test.cc

      ASSERT_EQ(errors::OK, s.code()) << s.message();
    }
    
    TEST_P(UnifiedAPI, TestUnknownShapeTracing) {
      if (!UseFunction()) {
        GTEST_SKIP() << "Tracing only test.";
      }
      if (UseMlir()) {
        // TODO(b/173074167): Remove this.
        GTEST_SKIP() << "MlirTensor::Shape is not implemented yet.";
      }
      AbstractContextPtr ctx(BuildFunction("test_fn"));
      AbstractTensorHandlePtr x;
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGGroupByInstancesIntegrationTest.groovy

                    }
    
                    @Test
                    public void test1() {
                        System.out.println("TestFactory[" + data + "].test1()");
                    }
    
                    @Test(dependsOnMethods = {"test1"})
                    public void test2() {
                        System.out.println("TestFactory[" + data + "].test2()");
                    }
    
                    @AfterClass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/test/resources/org/codelibs/core/xml/test1.xml

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

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>タイトル</title>
    </head>
    <body>
    <h1>第一章</h1>
    <h2>第一節</h2>
    <p>ほげほげ<br>ふがふが</p>
    <p>
    <a href="test2.html">LINK</a>
    </p>
    <h1>第2章</h1>
    <h2>第2節</h2>
    </body>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 289 bytes
    - Viewed (0)
Back to top