Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 219 for tzset (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/tasks/DeleteTest.groovy

            when:
            delete.delete("someFile")
            delete.delete(new File("someOtherFile"))
            delete.getTargetFiles()
    
            then:
            delete.getDelete() == WrapUtil.toSet("someFile", new File("someOtherFile"))
            delete.getTargetFiles().getFiles() == getProject().files(delete.getDelete()).getFiles()
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "can follow symlinks"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

    import org.eclipse.sisu.Nullable;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.slf4j.helpers.MessageFormatter;
    
    import static java.util.stream.Collectors.toSet;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultMaven implements Maven {
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final Lookup lookup;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGParallelSuiteIntegrationTest.groovy

        }
    
        private static actualThreadIds(String stdout) {
            String pattern = /.*\d+ - foo \d+ - (\d+)/
            return stdout.readLines().grep(~pattern).collect { (it =~ pattern)[0][1] }.toSet()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

        val rootModuleComponents = rootDependencies.map { (it as ResolvedDependencyResult).selected.id }
        val candidateExternalComponents = (rootModuleComponents + externallyAccessible).filterIsInstance<ModuleComponentIdentifier>().toSet()
        return candidateExternalComponents - locallyAccessible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            def threadRange = 1..100
    
            when:
            def hashes = threadRange.collect {
                supplyAsync({ Hashing.hashString(currentThread().name) }, newFixedThreadPool(threadRange.size()))
            }*.join().toSet()
    
            then:
            hashes.size() == threadRange.size()
        }
    
        def 'null does not collide with other values'() {
            expect:
            def hasher = Hashing.newHasher()
            hasher.putNull()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

            return Stream.concat(openJdkInstallations, jvms)
                .map(javaHome -> InstallationLocation.autoDetected(new File(javaHome), getSourceName()))
                .collect(Collectors.toSet());
        }
    
        private List<String> find(String sdkSubkey, String path, String value) {
            try {
                List<String> versions = getVersions(sdkSubkey);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

            this.teamCityExecutions = teamCityExecutions
            this.crossBuild = crossBuild
            this.fromCache = fromCache
    
            Set<String> teamCityBuildIds = teamCityExecutions.collect { it.teamCityBuildId }.toSet()
            this.currentExecutions = historyExecutions.findAll {
                teamCityBuildIds.contains(it.teamCityBuildId)
            }
            this.historyExecutions = historyExecutions
        }
    
        String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

                    .filter(it -> JDK_PATTERN.matcher(it.getKey()).matches())
                    .map(entry -> InstallationLocation.userDefined(new File(entry.getValue()), "env var " + entry.getKey()))
                    .collect(Collectors.toSet());
            }
        }
    
        /**
         * On CI we pass -Porg.gradle.java.installations.paths=X,Y,Z to the build, then "forward" it
         * as system property to get deterministic results.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

                .filter(sourcePath -> sourcePath.endsWith(".java"))
                .flatMap(sourcePath -> sourceFileClassNameConverter.getClassNames(sourcePath).stream())
                .collect(Collectors.toSet());
            if (!classesWithJavaSource.isEmpty()) {
                // We need to collect just accessible dependents, since it seems
                // private references to classes are not problematic when Groovy compiler loads a class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AggregatingProcessingStrategy.java

            }
            return orig
                .stream()
                .map(ElementUtils::getTopLevelType)
                .map(ElementUtils::getElementName)
                .filter(Objects::nonNull)
                .collect(Collectors.toSet());
        }
    
        @Override
        public void recordGeneratedType(CharSequence name, Element[] originatingElements) {
            result.getGeneratedAggregatingTypes().add(name.toString());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top