Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 206 for light (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Automated Testing :: Automated testing includes unit, integration, and functional testing.
    
    image::testing-pyramid.png[float=right]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            when (fileCollection) {
                is SubtractingFileCollection -> {
                    // TODO - when left and right are both static then we should serialize the current contents of the collection
                    elements.add(SubtractingFileCollectionSpec(fileCollection.left, fileCollection.right))
                    false
                }
    
                is FilteredFileCollection -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         * @param right The set on the “right” side of the comparison.
         * @param compareBy Provides the value to compare entries from either side by
         * @param <T> The type of the entry objects
         * @return A representation of the difference
         */
        public static <T> SetDiff<T> diffSetsBy(Set<? extends T> left, Set<? extends T> right, InternalTransformer<?, T> compareBy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top