Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,387 for logic (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

    class GradleLifecycleIntegrationTest extends AbstractIntegrationSpec {
    
        def withSettingsPluginInBuildLogic() {
            settingsFile '''
                pluginManagement {
                    includeBuild 'build-logic'
                }
                plugins {
                    id 'my-settings-plugin'
                }
                dsl {
                    parameter = "42"
                }
            '''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/fix-concurrency.yaml

        The new logic will use the `ProxyConfig.Concurrency` setting (which can be configured mesh wide or per-pod), if set,
        and otherwise set concurrency based on the CPU limit allocated to the container
        For example, a limit of 2500m would set concurrency to 3.
        
        Prior to this release, sidecars followed this logic, but sometimes incorrectly determined the CPU limit.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ConfigurationReportModel.java

      *
      * The intended use is that this data model can be populated with the complete information of a project prior to any
      * report logic running.  This enables the reporting logic to remain completely independent of the actual project classes.
     */
    public final class ConfigurationReportModel {
        private final String projectName;
        private final List<ReportConfiguration> allConfigs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:38:11 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/build.gradle.kts

    plugins {
        id("gradlebuild.kotlin-shared-runtime")
    }
    
    description = "Provides Kotlin DSL code that is shared between build-logic and runtime"
    
    dependencies {
        compileOnly(platform("gradlebuild:build-platform"))
        compileOnly(kotlin("stdlib"))
        compileOnly("org.ow2.asm:asm-tree")
        compileOnly("com.google.code.findbugs:jsr305")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 344 bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    .github/                                    @gradle/bt-developer-productivity @gradle/bt-support # This might need to be more finegrained in the future
    /build-logic/                               @gradle/bt-developer-productivity
    /build-logic-commons/                       @gradle/bt-developer-productivity
    /build-logic-settings/                      @gradle/bt-developer-productivity
    /build.gradle*                              @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    We want to apply a set of code quality checking rules to both types of projects and configure some aspects specific to each type.
    
    
    == Organizing build logic
    
    The use case can be modelled by layering three separate plugins:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── convention-plugins
    │   ├── build.gradle.kts
    │   ├── settings.gradle.kts
    │   ├── src
    │   │   ├── main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    We want to apply a set of code quality checking rules to both types of projects and configure some aspects specific to each type.
    
    
    == Organizing build logic
    
    The use case can be modelled by layering three separate plugins:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── convention-plugins
    │   ├── build.gradle.kts
    │   ├── settings.gradle.kts
    │   ├── src
    │   │   ├── main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    Please be aware that these options disable the validation that makes execution parallel- and caching-safe when isolated projects is enabled,
    so you may see some unexpected behaviour when using them.
    
    == Build logic constraints
    
    Isolated projects prevents build logic from accessing the state of another project. This includes:
    
    * Using most methods on the `Project` type. A small number of methods that return immutable information about the project are allowed:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    == Organizing build logic
    
    From the use case above, we have identified that we have two types of projects - generic Java projects and public libraries.
    We can model this use case by layering two separate plugins that each define the type of project that applies them:
    
    ====
    [.multi-language-sample]
    =====
    .Build logic layout
    [source, kotlin]
    ----
    ├── buildSrc
    │   ├── build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top