Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,485 for logic (0.05 sec)

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/50596.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50596
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 217 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-do/groovy/settings.gradle

    rootProject.name = 'logic-during-configuration-do'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  7. 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)
  8. build-logic/dependency-modules/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 276 bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    5. **Return type **of original call
    6. **The receiver** of original call
    7. **Parameters** of original call
    8. **Logic** with call interception logic or logic that translates the new type to the old type
    
    This JavaCompileInterceptorsDeclaration will then generate interceptors in **org.gradle.internal.classpath.generated** package.
    
    For Java:
    ```java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/pluginProject/groovy/settings.gradle

    // tag::include-subprojects[]
    include("app")
    include("data-model")
    //include("database-logic")
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 162 bytes
    - Viewed (0)
Back to top