Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 202 for light (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.Future;
    
    import static java.util.Optional.empty;
    import static org.gradle.internal.Either.left;
    import static org.gradle.internal.Either.right;
    import static org.gradle.internal.UncheckedException.unchecked;
    
    public class DefaultCachedClasspathTransformer implements CachedClasspathTransformer, Closeable {
    
        private final PersistentCache cache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

            private void sortElementsByDepth() {
                Collections.sort(elements, new Comparator<T>() {
    
                    @Override
                    public int compare(T left, T right) {
                        return Ints.compare(getDepth(left), getDepth(right));
                    }
    
                    private int getDepth(T element) {
                        int depth = 0;
                        T parent = element;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

                Class<?> propertyType = interceptedPropertyType(
                    original,
                    Optional.ofNullable(getterCallerAndInterceptor).map(Pair::right).orElse(null),
                    Optional.ofNullable(setterCallerAndInterceptor).map(Pair::right).orElse(null)
                );
                if (propertyType != null) {
                    return new InterceptedMetaProperty(name,
                        propertyType, original,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    === Known issues
    
    Also see <<java_plugin.adoc#sec:incremental_compilation_known_issues,Known issues for incremental Java compilation>>.
    
    * Changes to resources won't trigger a recompilation, this might result in some incorrectness — for example https://mrhaki.blogspot.com/2013/01/groovy-goodness-adding-extra-methods.html[Extension Modules].
    
    [[sec:groovy_cross_compilation]]
    == Compiling and testing for Java 6 or Java 7
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    However, Gradle still supports compiling, testing, generating Javadocs and executing applications for Java 6 and Java 7.
    Java 5 and below are not supported.
    
    NOTE: If using Java 10+, leveraging the `release` flag might be an easier solution, see above.
    
    To use Java 6 or Java 7, the following tasks need to be configured:
    
    * `JavaCompile` task to fork and use the correct Java home
    * `Javadoc` task to use the correct `javadoc` executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

        @VisibleForTesting
        static final String HELP_FAILED_DELETE_CHILDREN = "Failed to delete some children. This might happen because a process has files open or has its working directory set in the target directory.";
        @VisibleForTesting
        static final String HELP_NEW_CHILDREN = "New files were found. This might happen because a process is still writing to the target directory.";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

    
    private
    inline fun <L, R, T> either(
        crossinline left: Parser<L>,
        crossinline right: Parser<R>,
        crossinline l: (L) -> T,
        crossinline r: (R) -> T,
    ): Parser<T> = {
        val mark = currentPosition
        when (val lr = left()) {
            is ParserResult.Failure -> {
                restore(mark)
                right().map(r)
            }
    
            is ParserResult.Success -> {
                lr.map(l)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         *
         * <p>The wrapper downloads a certain distribution only once and caches it. If your distribution base is the
         * project, you might submit the distribution to your version control system. That way no download is necessary at
         * all. This might be in particular interesting, if you provide a custom gradle snapshot to the wrapper, because you
         * don't need to provide a download server then.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

            if (e instanceof SocketException || (e instanceof SSLException && e.getMessage().contains("readHandshakeRecord"))) {
                return new HttpRequestException("Got socket exception during request. It might be caused by SSL misconfiguration", e);
            }
    
            if (!(e instanceof SSLHandshakeException)) {
                return e;
            }
    
            SSLHandshakeException sslException = (SSLHandshakeException) e;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

        def "handles different target gradle versions concurrently"() {
            given:
            def last = new ReleasedVersionDistributions().getMostRecentRelease()
            // When adding support for a new JDK version, the previous release might not work with it yet.
            Assume.assumeTrue(last.worksWith(Jvm.current()))
            assert dist != last
            println "Combination of versions used: current - $dist, last - $last"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top