Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Platform (0.65 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.platform.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("java-platform")
        id("gradlebuild.dependency-modules")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 694 bytes
    - Viewed (0)
  2. architecture/standards/0004-use-a-platform-architecture.md

    #### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    This platform includes the plugin publishing plugin and the plugin portal.
    
    #### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. architecture/platforms.md

    ### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    This platform includes the plugin publishing plugin and the plugin portal.
    
    ### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                    @Model
                    void platforms(Platforms platforms) {
                        platforms.current = platforms.windows
                    }
    
                    @Defaults
                    void platformDefaults(Platforms platforms) {
                        platforms.windows.name = 'windows'
                        platforms.linux.name = 'linux'
                    }
    
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

                    void setOs(Platform platform) {
                        platform.operatingSystem = new OperatingSystem()
                    }
    
                    @Mutate
                    void setOsName(@Path("platform.operatingSystem") OperatingSystem os) {
                      os.name = "foo"
                    }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, @Path("platform.operatingSystem") OperatingSystem os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/NestedManagedTypeIntegrationTest.groovy

                    }
    
                    @Mutate
                    void addPersonTask(ModelMap<Task> tasks, Platform platform) {
                        tasks.create("echo") {
                            it.doLast {
                                println "platform: $platform"
                                println "os: $platform.operatingSystem"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. architecture/standards/0005-introduce-core-ui-architecture-module.md

    # ADR-0004 - Introduce a UI architecture module to the core platform
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle core platform provides many services to the Gradle platforms and builds logic. One such group of services allows logic to interact with the build user, to provide diagnostics, progress information, prompt for questions, and so on. Currently, these services are part of the core platform runtime architecture module.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]platform-native[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]language[/\\]swift[/\\][^/\\]+"/>
    
        <!-- These packages are duplicated in core and war, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. .teamcity/test-buckets.json

    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    					"model-core",
    					"model-groovy",
    					"persistent-cache",
    					"platform-base",
    					"platform-jvm",
    					"plugin-development",
    					"plugin-use",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelRuleIntegrationTest.groovy

                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void platform(Platform platform) {
                    }
    
                    @Mutate
                    void addDependencyOnPlatform(ModelMap<Task> tasks, Platform platform) {
                    }
                }
    
                apply type: RulePlugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top