Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for testmovk (0.24 sec)

  1. src/net/http/transport_dial_test.go

    	t *testing.T
    
    	connID int        // distinguished Dials in logs
    	ready  chan error // sent on to complete the Dial
    
    	net.Conn
    }
    
    func newTransportDialTester(t *testing.T, mode testMode) *transportDialTester {
    	t.Helper()
    	dt := &transportDialTester{
    		t:     t,
    		dials: make(chan *transportDialTesterConn),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    )
    
    var (
    	updateTestData = flag.Bool("u", false, "when set, tests may update files in testdata instead of failing")
    	enableZipSum   = flag.Bool("zipsum", false, "enable TestZipSums")
    	debugZipSum    = flag.Bool("testwork", false, "when set, TestZipSums will preserve its test directory")
    	modCacheDir    = flag.String("zipsumcache", "", "module cache to use instead of temp directory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                import org.junit.jupiter.api.Test;
                import static org.assertj.core.api.Assertions.assertThat;
    
                public class ExampleTest {
                    @Test public void testOK() {
                        assertThat(1 + 1).isEqualTo(2);
                    }
                }
            """
    
            settingsFile << """
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  4. src/container/list/list_test.go

    	if e.Value != 1 {
    		t.Errorf("e.value = %d, want 1", e.Value)
    	}
    	if e.Next() != nil {
    		t.Errorf("e.Next() != nil")
    	}
    	if e.Prev() != nil {
    		t.Errorf("e.Prev() != nil")
    	}
    }
    
    func TestMove(t *testing.T) {
    	l := New()
    	e1 := l.PushBack(1)
    	e2 := l.PushBack(2)
    	e3 := l.PushBack(3)
    	e4 := l.PushBack(4)
    
    	l.MoveAfter(e3, e3)
    	checkListPointers(t, l, []*Element{e1, e2, e3, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	}
    }
    
    // If -testwork is specified, the test prints the name of the temp directory
    // and does not remove it when done, so that a programmer can
    // poke at the test file tree afterward.
    var testWork = flag.Bool("testwork", false, "")
    
    // cleanup cleans up a test that runs testgo.
    func (tg *testgoData) cleanup() {
    	tg.t.Helper()
    	if *testWork {
    		if tg.tempdir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

            fail("Expected ArithmeticException");
          } catch (ArithmeticException expected) {
          }
        }
      }
    
      public void testMod() {
        for (int a : TEST_INTS) {
          for (int b : TEST_INTS) {
            if (b != 0) {
              UnsignedInteger aUnsigned = UnsignedInteger.fromIntBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

            fail("Expected ArithmeticException");
          } catch (ArithmeticException expected) {
          }
        }
      }
    
      public void testMod() {
        for (int a : TEST_INTS) {
          for (int b : TEST_INTS) {
            if (b != 0) {
              UnsignedInteger aUnsigned = UnsignedInteger.fromIntBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.go

    	flag.Parse()
    	parseCpuList()
    
    	before()
    	startAlarm()
    	testOk := RunTests(matchString, tests)
    	exampleOk := RunExamples(examples)
    	if !testOk || !exampleOk {
    		fmt.Println("FAIL")
    		os.Exit(1)
    	}
    	fmt.Println("PASS")
    	stopAlarm()
    	RunBenchmarks(matchString, benchmarks)
    	after()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                brokenTests.forEach { testName ->
                    def testMask = "org.gradle.docs.samples.*.$testName"
                    if (shouldRunBrokenForConfigurationCacheDocsTests(project)) {
                        includeTestsMatching testMask
                    } else {
                        excludeTestsMatching testMask
                    }
                }
            }
        } else {
            filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

          try {
            UnsignedLong.fromLongBits(a).dividedBy(UnsignedLong.ZERO);
            fail("Expected ArithmeticException");
          } catch (ArithmeticException expected) {
          }
        }
      }
    
      public void testMod() {
        for (long a : TEST_LONGS) {
          for (long b : TEST_LONGS) {
            if (b != 0) {
              UnsignedLong aUnsigned = UnsignedLong.fromLongBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top