Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 660 for tent (0.16 sec)

  1. testing/performance/src/templates/with-verbose-testng/Test.java

        @Test
        public void testOne() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @Test
        public void testTwo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/go122.test

    Carlos Amedee <******@****.***> 1715092668 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    		s    string
    		a, b *C.char
    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    			t.Errorf("%s: points at %#v, want %#v", test.s, got, test.s)
    		}
    	}
    }
    
    // issues 8368 and 8441
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	var skipFunc func(*distTest) (string, bool)
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case rtSkipFunc:
    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    			panic("empty variant")
    		}
    		name := testName(test.pkg, test.variant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/project-with-source/Test.scala

    package ${packageName}
    
    import org.junit.Assert._
    
    class ${testClassName} {
        val production = new ${productionClassName}("value")
    
        @org.junit.Test
        def test() {
            assertEquals(production.property, "value")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 229 bytes
    - Viewed (0)
  8. testing/performance/src/templates/with-verbose-junit/Test.java

        @org.junit.Test
        public void testOne() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @org.junit.Test
        public void testTwo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 991 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/shared/src/test/resources/org/gradle/test-resource.txt

    Laura Kassovic <******@****.***> 1706138984 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - Viewed (0)
  10. cluster/gce/config-test.sh

    export NODE_EXTRA_METADATA=${KUBE_NODE_EXTRA_METADATA:-${KUBE_EXTRA_METADATA:-}}
    
    NETWORK=${KUBE_GCE_NETWORK:-e2e-test-${USER}}
    if [[ "${CREATE_CUSTOM_NETWORK}" = true ]]; then
      SUBNETWORK=${SUBNETWORK:-${NETWORK}-custom-subnet}
    fi
    INSTANCE_PREFIX=${KUBE_GCE_INSTANCE_PREFIX:-e2e-test-${USER}}
    CLUSTER_NAME=${CLUSTER_NAME:-${INSTANCE_PREFIX}}
    MASTER_NAME="${INSTANCE_PREFIX}-master"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top