Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for compileTest (0.23 sec)

  1. testing/performance/src/templates/project-with-source/build.xml

        </target>
    
        <target name="compile">
            <mkdir dir="\${classes.dir}"/>
            <javac srcdir="\${src.dir}" destdir="\${classes.dir}"/>
        </target>
    
        <target name="compileTest" depends="compile">
            <mkdir dir="\${test.classes.dir}"/>
            <javac srcdir="\${test.src.dir}" destdir="\${test.classes.dir}">
                <classpath>
                    <path location="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. 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)
  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)
  5. 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)
  6. 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)
  7. ReadMe.md

    - `install` - build and install all public artifacts into local maven repository
    - `coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
    - `gradlePluginTest` - build and run gradle plugin tests
    - `compilerTest` - build and run all compiler tests
    
    To reproduce TeamCity build use `-Pteamcity=true` flag. Local builds don't run proguard and have jar compression disabled by default.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top