Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for targetFiles (0.44 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            val targetModules = computeTargetModules(mainFirFile.llFirModuleData.ktModule)
            val (targetFiles, dependencyFiles) = filesToCompile.partition { firResolveSession.getModule(it) in targetModules }
            require(targetFiles.isNotEmpty())
    
            val jvmIrDeserializer = JvmIrDeserializerImpl()
            val diagnosticReporter = DiagnosticReporterFactory.createPendingReporter()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/OnDemandFileAccess.java

    public class OnDemandFileAccess extends AbstractFileAccess {
        private final String displayName;
        private final FileLockManager manager;
        private final File targetFile;
    
        public OnDemandFileAccess(File targetFile, String displayName, FileLockManager manager) {
            this.targetFile = targetFile;
            this.displayName = displayName;
            this.manager = manager;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

                    lock.writeLock().unlock();
                }
            });
        }
    
        private void storeInsideLock(HashCode key, File sourceFile) {
            File targetFile = getCacheEntryFile(key);
            try {
                Files.move(sourceFile.toPath(), targetFile.toPath(), StandardCopyOption.ATOMIC_MOVE);
            } catch (FileAlreadyExistsException ignore) {
                // We already have the file in the build cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

            // Descriptor-based shortening is implemented on the IDE plugin side.
            val ktFilePointer = SmartPointerManager.createPointer(file)
    
            return object : ShortenCommand {
                override val targetFile: SmartPsiElementPointer<KtFile> get() = ktFilePointer
                override val importsToAdd: Set<FqName> get() = emptySet()
                override val starImportsToAdd: Set<FqName> get() = emptySet()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

                distributionUrl,
                true,
                WrapperDefaults.NETWORK_TIMEOUT
            );
        }
    
        private static String getRelativePath(File baseDir, File targetFile) {
            return baseDir.toPath().relativize(targetFile.toPath()).toString();
        }
    
        private UserInputHandler getEffectiveInputHandler() {
            if (getUseDefaults().get()) {
                return new NonInteractiveUserInputHandler();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

     */
    public data class ThisLabelToShortenInfo(
        val labelToShorten: SmartPsiElementPointer<KtThisExpression>,
    )
    
    public interface ShortenCommand {
        public val targetFile: SmartPsiElementPointer<KtFile>
        public val importsToAdd: Set<FqName>
        public val starImportsToAdd: Set<FqName>
        public val listOfTypeToShortenInfo: List<TypeToShortenInfo>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

                        public FileVisitResult visitFile(Path sourceFile, BasicFileAttributes attributes) throws IOException {
                            Path targetFile = targetDir.resolve(sourceDir.relativize(sourceFile));
                            Files.copy(sourceFile, targetFile, COPY_ATTRIBUTES, REPLACE_EXISTING);
    
                            return FileVisitResult.CONTINUE;
                        }
    
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        private fun addKDocQualifierToShorten(kDocName: KDocName) {
            kDocQualifiersToShorten.add(ShortenKDocQualifier(kDocName))
        }
    }
    
    private class ShortenCommandImpl(
        override val targetFile: SmartPsiElementPointer<KtFile>,
        override val importsToAdd: Set<FqName>,
        override val starImportsToAdd: Set<FqName>,
        override val listOfTypeToShortenInfo: List<TypeToShortenInfo>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top