Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for compileTest (0.69 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top