Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for testmovk (1.1 sec)

  1. src/cmd/distpack/test.go

    				log.Fatalf("unexpected source archive file: %s (generated by dist)", f.Name)
    			}
    		}
    	}
    }
    
    func testZip(a *Archive) { test("binary", a, zipRules) }
    func testMod(a *Archive) { test("module", a, modRules) }
    
    func test(kind string, a *Archive, rules []testRule) {
    	ok := true
    	have := make([]bool, len(rules))
    	for _, f := range a.Files {
    		for i, r := range rules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  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/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)
  5. 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)
  6. 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)
  7. src/cmd/go/scriptreadme_test.go

    Note also that in reported output, the actual name of the per-script temporary directory
    has been consistently replaced with the literal string $WORK.
    
    The cmd/go test flag -testwork (which must appear on the "go test" command line after
    standard test flags) causes each test to log the name of its $WORK directory and other
    environment variable settings and also to leave that directory behind when it exits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/shared_test.go

    var minpkgs = []string{"runtime", "sync/atomic"}
    var soname = "libruntime,sync-atomic.so"
    
    var testX = flag.Bool("testx", false, "if true, pass -x to 'go' subcommands invoked by the test")
    var testWork = flag.Bool("testwork", false, "if true, log and do not delete the temporary working directory")
    
    // run runs a command and calls t.Errorf if it fails.
    func run(t *testing.T, msg string, args ...string) {
    	runWithEnv(t, msg, nil, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/FilesTest.java

        File parent = getTestFile("ascii.txt");
        assertTrue(parent.isFile());
        File file = file(parent, "foo");
        assertThrows(IOException.class, () -> Files.createParentDirs(file));
      }
    
      public void testMove() throws IOException {
        File i18nFile = getTestFile("i18n.txt");
        File temp1 = createTempFile();
        File temp2 = createTempFile();
    
        Files.copy(i18nFile, temp1);
        moveHelper(true, temp1, temp2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    // until all are ready or a timeout is reached
    func WaitForResources(objects object.K8sObjects, client kube.Client,
    	waitTimeout time.Duration, dryRun bool, l *progress.ManifestLog,
    ) error {
    	if dryRun || TestMode {
    		return nil
    	}
    
    	if err := waitForCRDs(objects, client); err != nil {
    		return err
    	}
    
    	var notReady []string
    	var debugInfo map[string]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top