Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 845 for logic (0.07 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. build-logic/integration-testing/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to create and configure integration, cross-version and distribution tests"
    
    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 06 17:21:17 UTC 2024
    - 675 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/pluginProject/groovy/database-logic/build.gradle

    }
    
    tasks.test {
        useJUnitPlatform()
    }
    
    kotlin {
        jvmToolchain {
            languageVersion.set(JavaLanguageVersion.of(11))
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 347 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

        }
    
        def 'lifecycle actions preserve user code application context for plugins'() {
            given:
            groovyFile "build-logic/build.gradle", '''
                plugins {
                    id 'groovy-gradle-plugin'
                }
            '''
            groovyFile "build-logic/src/main/groovy/my-settings-plugin.settings.gradle", """
                gradle.lifecycle.beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildInputsChangesIntegrationTest.groovy

                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = new BuildLogicChangeFixture(file('build-logic'))
            fixture.setup()
            fixture.buildFile << """
    
                interface Params : $ValueSourceParameters.name {
                    val value: Property<String>
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top