Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for compileTest (0.23 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithoutComponentIntegrationTest.groovy

        protected SourceElement getComponentUnderTest() {
            return new CppSimpleUnitTest()
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingSchemeTest.groovy

            "main" | null      | "resources" | "resources"
            "main" | "compile" | "java"      | "compileJava"
    
            "test" | null      | null        | "test"
            "test" | "compile" | null        | "compileTest"
            "test" | null      | "resources" | "testResources"
            "test" | "compile" | "java"      | "compileTestJava"
        }
    
        def "generates binary name and output directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/regexp/all_test.go

    	}
    	return re
    }
    
    func TestGoodCompile(t *testing.T) {
    	for i := 0; i < len(goodRe); i++ {
    		compileTest(t, goodRe[i], "")
    	}
    }
    
    func TestBadCompile(t *testing.T) {
    	for i := 0; i < len(badRe); i++ {
    		compileTest(t, badRe[i].re, badRe[i].err)
    	}
    }
    
    func matchTest(t *testing.T, test *FindTest) {
    	re := compileTest(t, test.pat, "")
    	if re == nil {
    		return
    	}
    	m := re.MatchString(test.text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            outputs.snapshot { run "compileTest${language.capitalizedName}" }
    
            when:
            file("src/test/${languageName}/BazTest.${languageName}").text = "public class BazTest { String change; }"
            unusedClass.delete()
    
            run "compileTest${language.capitalizedName}"
    
            then:
            outputs.recompiledClasses("BazTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/commandLineTutorialTasks.graphml

              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n1">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    
    .Simple Task Graph
    image::commandLineTutorialTasks.png[]
    
    You can see that the `test` task is not executed, even though the `dist` task depends on it.
    The `test` task’s dependencies, such as `compileTest`, are not executed either.
    The dependencies of `test` that other tasks depend on, such as `compile`, are still executed.
    
    [[sec:rerun_tasks]]
    === Forcing tasks to execute
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

    import org.gradle.nativeplatform.toolchain.internal.compilespec.CCompileSpec
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    class CCompileTest extends AbstractProjectBuilderSpec {
    
        CCompile cCompile
        def toolChain = Mock(NativeToolChainInternal)
        def platform = Mock(NativePlatformInternal)
        def platformToolChain = Mock(PlatformToolProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    Cici Huang <******@****.***> 1714606001 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    Cici Huang <******@****.***> 1714606001 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile_test.go

    Cici Huang <******@****.***> 1714606001 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top