Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,388 for logic (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/bestPractices/conditionalLogic-do/groovy/settings.gradle

    rootProject.name = 'conditional-logic-do'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/bestPractices/conditionalLogic-do/kotlin/settings.gradle.kts

    rootProject.name = "conditional-logic-do"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/kotlin/settings.gradle.kts

    rootProject.name = "logic-during-configuration-dont"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 53 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyMetaClassHelper.java

    /**
     * Injects the logic for Groovy calls instrumentation into the Groovy metaclasses.
     */
    @NonNullApi
    public class InstrumentedGroovyMetaClassHelper {
        /**
         * Should be invoked on an object that a Groovy Closure can dispatch the calls to. Injects the call interception logic into the metaclass of that object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/settings.gradle

    dependencyResolutionManagement {
        repositories {
            gradlePluginPortal()
            google()
        }
    }
    includeBuild('../platforms')
    
    rootProject.name = 'build-logic'
    include('commons')
    include('java-library')
    include('kotlin-library')
    include('android-application')
    include('spring-boot-application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 334 bytes
    - Viewed (0)
Back to top