Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Dcl (0.15 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

                }
            """
    
            file("lib/build.gradle.dcl") << """
                library {
                    name = "my-lib"
                }
            """
            file("app/build.gradle.dcl") << """
                application {
                    name = "my-app"
                }
            """
            file("util/build.gradle.dcl") << """
                utility {
                    name = "my-util"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

                    }
                }
            """
    
            file("settings.gradle.dcl") << """
                pluginManagement {
                    includeBuild("build-logic")
                }
    
                plugins {
                    id("com.example.restricted.ecosystem")
                }
            """
    
            file("build.gradle.dcl") << """
                restricted {
                    access {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("build.gradle.dcl") << defineDeclarativeDSLBuildScript()
            file("settings.gradle") << defineSettings()
    
            expect: "the build fails"
            fails("dependencies", "--configuration", "api")
            failure.assertHasCause("Failed to interpret the declarative DSL file '${testDirectory.file("build.gradle.dcl").path}'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	Cost int32 // heuristic cost of inlining this function
    
    	// Copy of Func.Dcl for use during inlining. This copy is needed
    	// because the function's Dcl may change from later compiler
    	// transformations. This field is also populated when a function
    	// from another package is imported and inlined.
    	Dcl     []*Name
    	HaveDcl bool // whether we've loaded Dcl
    
    	// Function properties, encoded as a string (these are used for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    // up the pre-inlining DCL list for the function and create a map that
    // supports lookup of pre-inline dcl index, based on variable
    // position/name. NB: the recipe for computing variable pos/file/line
    // needs to be kept in sync with the similar code in gc.createSimpleVars
    // and related functions.
    func makePreinlineDclMap(fnsym *obj.LSym) map[varPos]int {
    	dcl := preInliningDcls(fnsym)
    	m := make(map[varPos]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/dsl/GradleDsl.groovy

     */
    package org.gradle.test.fixtures.dsl
    
    import groovy.transform.CompileStatic
    
    @CompileStatic
    enum GradleDsl {
    
        GROOVY(".gradle"),
        KOTLIN(".gradle.kts"),
        DECLARATIVE(".gradle.dcl");
    
        private final String fileExtension;
    
        GradleDsl(String fileExtension) {
            this.fileExtension = fileExtension;
        }
    
        String fileNameFor(String fileNameWithoutExtension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:49:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptingLanguages.java

                Arrays.asList(
                    scriptingLanguage(".gradle", null),
                    scriptingLanguage(".gradle.kts", "org.gradle.kotlin.dsl.provider.KotlinScriptPluginFactory"),
                    scriptingLanguage(".gradle.dcl", "org.gradle.internal.declarativedsl.provider.DeclarativeDslScriptPluginFactory")
                )
            );
    
        public static List<ScriptingLanguage> all() {
            return ALL;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:49:16 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/closure.go

    	// Create new function type with parameters prepended, and
    	// then update type and declarations.
    	typ = types.NewSignature(nil, append(params, typ.Params()...), typ.Results())
    	f.SetType(typ)
    	clofn.Dcl = append(decls, clofn.Dcl...)
    
    	// Rewrite call.
    	n.Fun = f
    	n.Args.Prepend(closureArgs(clo)...)
    
    	// Update the call expression's type. We need to do this
    	// because typecheck gave it the result type of the OCLOSURE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    	list := block.List
    	var dcl *ir.Decl
    	if len(list) == 3 && list[0].Op() == ir.ODCL {
    		dcl = list[0].(*ir.Decl)
    		list = list[1:]
    	}
    	if len(list) != 2 ||
    		list[0].Op() != ir.OAS2 ||
    		list[1].Op() != ir.OGOTO ||
    		list[1].(*ir.BranchStmt).Label != label {
    		return false
    	}
    	as2body := list[0].(*ir.AssignListStmt)
    	if dcl == nil {
    		ainit := as2body.Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/fmt.go

    		// Bypass reflection and just print what we want.
    		n := n.(*Func)
    		fmt.Fprintf(w, "%+v", n.Op())
    		dumpNodeHeader(w, n)
    		fn := n
    		if len(fn.Dcl) > 0 {
    			indent(w, depth)
    			fmt.Fprintf(w, "%+v-Dcl", n.Op())
    			for _, dcl := range n.Dcl {
    				dumpNode(w, dcl, depth+1)
    			}
    		}
    		if len(fn.ClosureVars) > 0 {
    			indent(w, depth)
    			fmt.Fprintf(w, "%+v-ClosureVars", n.Op())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top