Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maybeBackupClassFile (1.6 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationClassBackupService.java

            this.classBackupDir = spec.getClassBackupDir();
            this.shouldBackupFiles = classBackupDir != null;
            this.result = result;
            this.uniqueIndex = new AtomicLong();
        }
    
        public void maybeBackupClassFile(String classFqName) {
            // Classes to compile are stashed before the compilation, so there is nothing to backup
            if (shouldBackupFiles && !classesToCompile.contains(classFqName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkTools.java

                return DirectInstantiator.instantiate(incrementalCompileTaskClass, task,
                    (Function<File, Optional<String>>) compilationSourceDirs::relativize,
                    (Consumer<String>) classBackupService::maybeBackupClassFile,
                    (Consumer<Map<String, Set<String>>>) sourceToClassMapping::putAll,
                    (BiConsumer<String, String>) constantsAnalysisResult::addPublicDependent,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                result.getSourceClassesMapping().computeIfAbsent(relativePath, key -> new HashSet<>()).add(classFqName);
                compilationClassBackupService.maybeBackupClassFile(classFqName);
                Iterator<InnerClassNode> iterator = classNode.getInnerClasses();
                while (iterator.hasNext()) {
                    inspectClassNode(sourceUnit, iterator.next());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top