Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for testFork (0.37 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/CompileOptionsTest.groovy

            compileOptions.bootstrapClasspath == null
            compileOptions.extensionDirs == null
    
            compileOptions.forkOptions != null
            compileOptions.debugOptions != null
        }
    
        def testFork() {
            compileOptions.fork = false
            assertNull(compileOptions.forkOptions.memoryMaximumSize)
    
            expect:
            compileOptions.fork([memoryMaximumSize: '1g'])
            assertTrue(compileOptions.fork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/compile/GroovyCompileOptionsTest.groovy

            assertNull(compileOptions.configurationScript)
            assertFalse(compileOptions.javaAnnotationProcessing)
            assertFalse(compileOptions.parameters)
        }
    
        @Test
        void testFork() {
            compileOptions.fork = false
            assertNull(compileOptions.forkOptions.memoryMaximumSize)
    
            compileOptions.fork([memoryMaximumSize: '1g'])
            assertTrue(compileOptions.fork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                    .run()
            }
        }
    
        def prepareTaskTypeUsingWorker() {
            def gradle3Submit = 'workerExecutor.submit(TestWork) { c -> c.displayName = "org.gradle.test.TestWork" }'
            def submit = 'workerExecutor.noIsolation().submit(TestWork) { }'
            buildFile << """
                import javax.inject.Inject
                import org.gradle.workers.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmp/cmp_test.go

    		case uintptr:
    			c = cmp.Compare(test.x.(uintptr), test.y.(uintptr))
    		}
    		if c != test.compare {
    			t.Errorf("Compare(%v, %v) == %d, want %d", test.x, test.y, c, test.compare)
    		}
    	}
    }
    
    func TestSort(t *testing.T) {
    	// Test that our comparison function is consistent with
    	// sort.Float64s.
    	input := []float64{1.0, 0.0, negzero, math.Inf(1), math.Inf(-1), math.NaN()}
    	sort.Float64s(input)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/short_test.go

    func TestShortCircuit(t *testing.T) {
    	testAnd(t, false, false, false)
    	testAnd(t, false, true, false)
    	testAnd(t, true, false, false)
    	testAnd(t, true, true, true)
    
    	testOr(t, false, false, false)
    	testOr(t, false, true, true)
    	testOr(t, true, false, true)
    	testOr(t, true, true, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm_arm64_test.s

    TEXT ·testvmovq(SB), NOSPLIT, $0-16
    	VMOVQ   $0x7040201008040201, $0x3040201008040201, V1
    	VMOV    V1.D[0], R0
    	VMOV    V1.D[1], R1
    	MOVD    R0, r1+0(FP)
    	MOVD    R1, r2+8(FP)
    	RET
    
    // testmovk() uint64
    TEXT ·testmovk(SB), NOSPLIT, $0-8
    	MOVD	$0, R0
    	MOVK	$(40000<<48), R0
    	MOVD	R0, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 892 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
Back to top