Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for interpreter (1.12 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

    import java.io.File
    import java.lang.reflect.InvocationTargetException
    
    
    /**
     * An optimised interpreter for the Kotlin DSL based on the idea of
     * [partial evaluation](https://en.wikipedia.org/wiki/Partial_evaluation).
     *
     * Instead of interpreting a given Kotlin DSL script directly, the interpreter emits a
     * specialized program that captures the optimal execution procedure for the particular
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. src/all.bat

    if x%GOBUILDEXIT%==x1...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:36:22 UTC 2023
    - 543 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                scriptHandler.dependencies,
                "classpath"
            )
        }
    
        private
        val interpreter by lazy {
            Interpreter(InterpreterHost(gradlePropertiesController))
        }
    
        inner class InterpreterHost(
            gradleProperties: GradlePropertiesController,
        ) : Interpreter.Host {
    
            override val compilerOptions: KotlinCompilerOptions =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

    import org.gradle.internal.service.DefaultServiceRegistry
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.kotlin.dsl.execution.CompiledScript
    import org.gradle.kotlin.dsl.execution.Interpreter
    import org.gradle.kotlin.dsl.execution.ProgramId
    import org.gradle.kotlin.dsl.execution.ProgramTarget
    import org.gradle.kotlin.dsl.support.ImplicitImports
    import org.gradle.kotlin.dsl.support.KotlinCompilerOptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/go.go

    		case "cgo_dynamic_linker":
    			if len(f) != 2 {
    				break
    			}
    
    			if *flagInterpreter == "" {
    				if interpreter != "" && interpreter != f[1] {
    					fmt.Fprintf(os.Stderr, "%s: conflict dynlinker: %s and %s\n", os.Args[0], interpreter, f[1])
    					nerrors++
    					return
    				}
    
    				interpreter = f[1]
    			}
    			continue
    
    		case "cgo_ldflag":
    			if len(f) != 2 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

                    tempFolder.createDir("gradle-user-home")
                }
            }
    
            val host = mock<Interpreter.Host> {
    
                on { serviceRegistryFor(any(), any()) } doReturn mockServiceRegistry
    
                on { startCompilerOperation(any()) } doReturn compilerOperation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    					interpreter = thearch.ELF.Androiddynld
    					if interpreter == "" {
    						Exitf("ELF interpreter not set")
    					}
    				} else {
    					interpreter = thearch.ELF.Linuxdynld
    					// If interpreter does not exist, try musl instead.
    					// This lets the same cmd/link binary work on
    					// both glibc-based and musl-based systems.
    					if _, err := os.Stat(interpreter); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/architecture/PackageDependencyRulesTest.kt

                .check(classes)
        }
    
        private
        val classes =
            ClassFileImporter()
                .importPackagesOf(
                    org.gradle.kotlin.dsl.execution.Interpreter::class.java,
                    org.gradle.kotlin.dsl.provider.KotlinScriptClassPathProvider::class.java,
                    org.gradle.kotlin.dsl.support.EmbeddedKotlinProvider::class.java,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Component(providerExecution, "Kotlin DSL Execution", "Partial evaluation interpreter for `.gradle.kts` scripts")
    
                Component(providerClasspath, "Script Source and Classpath", "Script source and classpath calculation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/link/doc.go

    	-E entry
    		Set entry symbol name.
    	-H type
    		Set executable format type.
    		The default format is inferred from GOOS and GOARCH.
    		On Windows, -H windowsgui writes a "GUI binary" instead of a "console binary."
    	-I interpreter
    		Set the ELF dynamic linker to use.
    	-L dir1 -L dir2
    		Search for imported packages in dir1, dir2, etc,
    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-R quantum
    		Set address rounding quantum.
    	-T address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top