Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for parseClass (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        private Class<?> plugin1Class = classLoader.parseClass("""
            import org.gradle.api.Plugin
            import org.gradle.api.Project
            class TestPlugin1 implements Plugin<Project> {
              void apply(Project project) {}
            }
        """)
    
        private Class<?> plugin2Class = classLoader.parseClass("""
            import org.gradle.api.Plugin
            import org.gradle.api.Project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

            def cause = new RuntimeException("nested")
            def sourceExceptionType = source.parseClass(
                    "package org.gradle; public class TestException extends RuntimeException { public TestException(String msg, Throwable cause) { super(msg, cause); } }")
            def destExceptionType = dest.parseClass(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

        def "handles invalid implementation classloader"() {
            given:
            buildScript """
                def classLoader = new GroovyClassLoader(this.class.classLoader)
                def clazz = classLoader.parseClass(\"\"\"${customTaskImpl()}\"\"\")
                task customTask(type: clazz){
                    input1 = 'foo'
                    input2 = 'bar'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            GroovyCodeSource codeSource = new GroovyCodeSource(scriptText == null ? "" : scriptText, scriptName, "/groovy/script");
            try {
                try {
                    groovyClassLoader.parseClass(codeSource, false);
                } catch (MultipleCompilationErrorsException e) {
                    wrapCompilationFailure(source, e);
                } catch (CompilationFailedException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            !fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "cache does not hold strong references"() {
            given:
            def cl = new GroovyClassLoader(getClass().classLoader)
            def source = cl.parseClass('''
                import org.gradle.model.*
    
                class Rules extends RuleSource {
                    @Mutate
                    void mutate(String value) {
                    }
                }
            ''')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    func absDiff(x, y uint) uint {
    	if x < y {
    		return y - x
    	}
    	return x - y
    }
    
    // parseFlags parses flags from the first line of the given source if the line
    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/go/types/check_test.go

    func absDiff(x, y int) int {
    	if x < y {
    		return y - x
    	}
    	return x - y
    }
    
    // parseFlags parses flags from the first line of the given source if the line
    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // options selected through the flags package.
    func PProf(eo *plugin.Options) error {
    	// Remove any temporary files created during pprof processing.
    	defer cleanupTempFiles()
    
    	o := setDefaults(eo)
    
    	src, cmd, err := parseFlags(o)
    	if err != nil {
    		return err
    	}
    
    	p, err := fetchProfiles(src, o)
    	if err != nil {
    		return err
    	}
    
    	if cmd != nil {
    		return generateReport(p, cmd, currentConfig(), o)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	} else {
    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    // parseFlags sets the profile and counterStmt globals and performs validations.
    func parseFlags() error {
    	profile = *htmlOut
    	if *funcOut != "" {
    		if profile != "" {
    			return fmt.Errorf("too many options")
    		}
    		profile = *funcOut
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top