Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for composition (2.25 sec)

  1. architecture/build-state-model.md

    The project state is managed by the `ProjectState` class.
    It is created for each project in the build definition, once per build execution and is discarded at the end of the execution.
    
    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the elements.
    Not every module contributes to every element.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. architecture/runtimes.md

    Most source code targets the daemon and the remaining code either targets a single runtime, for example the Gradle client, or is shared across multiple runtimes.
    
    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                left.calculateExecutionTimeValue(visitor);
                right.calculateExecutionTimeValue(visitor);
            }
        }
    
        /**
         * A plus collector that either produces a composition of both of its left and right sides,
         * or Value.present() with empty content (if left or right side are missing).
         */
        private static class AbsentIgnoringPlusCollector<T> extends AbstractPlusCollector<T> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                left.calculateExecutionTimeValue(visitor);
                right.calculateExecutionTimeValue(visitor);
            }
        }
    
        /**
         * A plus collector that either produces a composition of both of its left and right sides,
         * or Value.present() with empty content (if left or right side are missing).
         */
        private static class AbsentIgnoringPlusCollector<K, V> extends AbstractPlusCollector<K, V> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top