Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getScriptSource (0.38 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/exception/DefaultExceptionAnalyser.java

            if (actualException instanceof ScriptCompilationException) {
                ScriptCompilationException scriptCompilationException = (ScriptCompilationException) actualException;
                source = scriptCompilationException.getScriptSource().getLongDisplayName().getCapitalizedDisplayName();
                lineNumber = scriptCompilationException.getLineNumber();
            }
    
            if (source == null) {
                for (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:10:04 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScript.java

                FileLookup fileLookup = services.get(FileLookup.class);
                FileCollectionFactory fileCollectionFactory = services.get(FileCollectionFactory.class);
                File sourceFile = getScriptSource().getResource().getLocation().getFile();
                if (sourceFile != null) {
                    FileResolver resolver = fileLookup.getFileResolver(sourceFile.getParentFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            NEW(pluginRequestCollectorType)
            DUP()
            ALOAD(Vars.ScriptHost)
            INVOKEVIRTUAL(
                KotlinScriptHost::class.internalName,
                "getScriptSource",
                "()Lorg/gradle/groovy/scripts/ScriptSource;"
            )
            INVOKESPECIAL(
                pluginRequestCollectorType,
                "<init>",
                "(Lorg/gradle/groovy/scripts/ScriptSource;)V"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top