Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,387 for logic (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    ├── settings.gradle
    ├── subproject-one
    │   └── build.gradle
    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    == Use `buildSrc` to abstract imperative logic
    
    Complex build logic is usually a good candidate for being encapsulated either as custom task or binary plugin.
    Custom task and plugin implementations should not live in the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    }
    
    dependencies {
        implementation(project(':some-logic'))  // dependency on some-logic
    }
    ----
    =====
    ====
    
    If we run `:app:build` again, we see the Java code of `some-logic` is also compiled by Gradle automatically:
    
    [source,text]
    ----
    $./gradlew :app:build
    
    > Task :app:processResources NO-SOURCE
    > Task :app:processTestResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/registry/apiserverinternal/storageversion/strategy.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // storageVersionStrategy implements verification logic for StorageVersion.
    type storageVersionStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating StorageVersion objects.
    var Strategy = storageVersionStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicChangesIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = fixtureSpec.fixtureForProjectDir(file('build-logic'))
            fixture.setup()
            settingsFile << """
                pluginManagement {
                    includeBuild 'build-logic'
                }
            """
            buildFile << """
                plugins { id('$fixture.pluginId') }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    This page explains how to author a toolchain resolver plugin.
    For details on how toolchain auto-provisioning interacts with these plugins, see <<toolchains.adoc#sub:download_repositories,Toolchains>>.
    
    == Provide a download URI
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-do/kotlin/settings.gradle.kts

    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)
  8. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/tests/logicDuringConfigurationPhase.out

    * What went wrong:
    A problem occurred configuring root project 'logic-during-configuration-dont'.
    > Could not create task ':printArtifactNames'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 215 bytes
    - Viewed (0)
  9. pkg/registry/networking/servicecidr/strategy.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // serviceCIDRStrategy implements verification logic for ServiceCIDR allocators.
    type serviceCIDRStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication ServiceCIDR objects.
    var Strategy = serviceCIDRStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    
    == Step 1. Understanding Plugins
    Plugins are the primary method to organize build logic and reuse build logic within a project.
    
    Plugins are also used to distribute custom tasks as packaged code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top