Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 214 for litfiles (0.14 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

        }
    
        private Set<String> getChangedFileNames(boolean qualified = false) {
            // Get all of the files that do not have a zero last modified timestamp
            return getFiles(qualified) { it.lastModified() > 0 }
        }
    
        private Set<String> getFiles(boolean qualified = false, Predicate<File> criteria) {
            // Get all of the files that do not have a zero last modified timestamp
            def changed = new HashSet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/FindGradleJars.groovy

        @Override
        void transform(TransformOutputs outputs) {
            File baselineJarsDirectory = artifact.get().asFile
            if (baselineJarsDirectory.name == 'gradle-jars') {
                baselineJarsDirectory.listFiles().each {
                    outputs.file(it)
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            when:
            succeeds('test', 'jacocoTestReport')
    
            then:
            file(REPORTING_BASE).listFiles().collect { it.name } as Set == ["jacoco", "tests"] as Set
            file(REPORT_HTML_DEFAULT_PATH).exists()
            file("${REPORTING_BASE}/jacoco/test").listFiles().collect { it.name } == ["html"]
            file("${REPORTING_BASE}/jacoco/test/html/org.gradle/Class1.java.html").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

        /**
         * Returns successfully resolved files. Ignores dependencies or files that cannot be resolved.
         *
         * @return resolved dependencies files
         * @since 3.3
         */
        Set<File> getFiles();
    
        /**
         * Returns successfully resolved files. Ignores dependencies or files that cannot be resolved.
         *
         * @param dependencySpec dependency spec
         * @return resolved dependencies files
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ResourceUtil.java

                return new File[0];
            }
            final File libDir = new File(libPath);
            if (!libDir.exists()) {
                return new File[0];
            }
            return libDir.listFiles((file, name) -> name.startsWith(namePrefix));
        }
    
        public static File[] getPluginJarFiles(final String namePrefix) {
            return getPluginJarFiles((file, name) -> name.startsWith(namePrefix));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

    import org.junit.Rule
    
    import static org.gradle.test.fixtures.server.http.HttpServer.SupportedHash.*
    import static org.gradle.util.internal.GFileUtils.deleteDirectory
    import static org.gradle.util.internal.GFileUtils.listFiles
    
    class ConfigurationCacheIvyPublishIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Rule
        public final HttpServer server = new HttpServer().tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            final List<File> fileList = new ArrayList<>(
                    FileUtils.listFiles(new File(baseDir, "images"), fessConfig.getSupportedUploadedMediaExtentionsAsArray(), true));
            fileList.addAll(FileUtils.listFiles(new File(baseDir, "css"), fessConfig.getSupportedUploadedCssExtentionsAsArray(), true));
            fileList.addAll(FileUtils.listFiles(new File(baseDir, "js"), fessConfig.getSupportedUploadedJsExtentionsAsArray(), true));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvePOMIntegrationTest.groovy

                    artifactFiles.from {
                        configurations.getByName("compileClasspath").getResolvedConfiguration()
                            .getLenientConfiguration()
                            .getFiles()
                    }
                }
            """
    
            expect:
            succeeds "resolve"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

            extension.getClasspath().from(runtimeClasspath);
            extension.getSourceRoots().from(sourcesPath.getIncoming().artifactView(v -> v.lenient(true)).getFiles());
            extension.getDocumentedSource().from(sourcesPath.getIncoming().artifactView(v -> v.lenient(true)).getFiles().getAsFileTree().matching(f -> {
                f.include(PublicApi.INSTANCE.getIncludes());
                // Filter out any non-public APIs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. hack/boilerplate/boilerplate.py

                    files.append(pathname)
    
        files = normalize_files(files)
        outfiles = []
        for pathname in files:
            basename = os.path.basename(pathname)
            extension = file_extension(pathname)
            if extension in extensions or basename in extensions:
                outfiles.append(pathname)
        return outfiles
    
    
    def get_dates():
        years = datetime.datetime.now().year
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top