Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 208 for litfiles (0.28 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

                configs, minusConfigs, false, NullGradleApiSourcesResolver.INSTANCE, classpath.getTestConfigurations().getOrElse(Collections.emptySet())).visit(visitor);
            return visitor.getFiles();
        }
    
        public void enhance(Classpath classpath) {
            for (ClasspathEntry entry : classpath.getEntries()) {
                if (entry instanceof AbstractClasspathEntry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecMainClassIntegrationTest.groovy

                    def resolveMainClassName() {
                        // Find first root package class with a name that ends with `Main`
                        def rootPackageFiles = classpath.files.collectMany { it.isDirectory() ? it.listFiles().toList() : [] }
                        def mainClassFile = rootPackageFiles.find { it.name.endsWith 'Main.class' }
                        mainClassFile.name.with {
                            take(length() - '.class'.length())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    }
    
    func runPkgCover(t *testing.T, outdir string, tag string, incfg string, mode string, infiles []string, errExpected bool) ([]string, string, string) {
    	// Write the pkgcfg file.
    	outcfg := filepath.Join(outdir, "outcfg.txt")
    
    	// Form up the arguments and run the tool.
    	outfiles, outfilelist := writeOutFileList(t, infiles, outdir, tag)
    	args := []string{"-pkgcfg", incfg, "-mode=" + mode, "-var=var" + tag, "-outfilelist", outfilelist}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        public static Collection<File> listFiles(File directory, String[] extensions, boolean recursive) {
            return FileUtils.listFiles(directory, extensions, recursive);
        }
    
        public static List<String> toPaths(Collection<File> files) {
            List<String> paths = new ArrayList<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputsInternal.java

        /**
         * Returns the resolved dependency graph as a reference to the root component.
         */
        Provider<ResolvedComponentResult> getRootComponent();
    
        @Override
        FileCollectionInternal getFiles();
    
        @Override
        ArtifactCollectionInternal getArtifacts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalConfigurationGraphResolveMetadata.java

        /**
         * Returns the files attached to this configuration, if any. These should be represented as dependencies, but are currently represented as files as a migration step.
         */
        Set<LocalFileDependencyMetadata> getFiles();
    
        /**
         * Calculates the set of artifacts for this configuration.
         *
         * <p>Note that this may be expensive, and should be called only when required.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfiguration.java

            return visitor.files;
        }
    
        @Override
        @Deprecated
        public Set<File> getFiles(Spec<? super Dependency> dependencySpec) {
            DeprecationLogger.deprecateMethod(LenientConfiguration.class, "getFiles(Spec)")
                .withAdvice("Use a lenient ArtifactView with a componentFilter instead.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

            if (shouldRemoveContentsOf(file, handling)) {
                File[] contents = file.listFiles();
    
                // Something else may have removed it
                if (contents == null) {
                    return false;
                }
    
                boolean attemptedToDeleteAnything = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/internal/UnusedVersionsCacheCleanup.java

                    asFileFilter(new NonReservedFileFilter(singleton(baseDir))));
                File[] result = baseDir.getParentFile().listFiles(combinedFilter);
                return result == null ? Collections.<File>emptySet() : Arrays.asList(result);
            });
            this.cacheNamePattern = cacheNamePattern;
            this.cacheVersionMapping = cacheVersionMapping;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/UnpackingVisitor.java

                return;
            }
    
            if (element instanceof Task) {
                visitor.accept((FileCollectionInternal) ((Task) element).getOutputs().getFiles());
            } else if (element instanceof TaskOutputs) {
                visitor.accept((FileCollectionInternal) ((TaskOutputs) element).getFiles());
            } else if (DeferredUtil.isNestableDeferred(element)) {
                Object deferredResult = DeferredUtil.unpackNestableDeferred(element);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top