Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getScriptSource (0.33 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)
Back to top