Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,195 for bkts (0.08 sec)

  1. ci/official/utilities/code_check_full.bats

    add them to //tensorflow/tools/pip_package/BUILD. Otherwise, add the no_pip tag
    to the test, or change code_check_full.bats in the SIG Build repository. That's
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/organizingGradleProjects/configureProjectUsingScript/kotlin/build.gradle.kts

    apply(from = "other.gradle.kts")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/settings.gradle.kts

    rootProject.name = "project-evaluate-events"
    include("project-a", "project-b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 144 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/multiproject/customLayout/kotlin/settings.gradle.kts

    println(rootProject.name)
    println(project(":project-a").name)
    // end::lookup-project[]
    
    // tag::change-project[]
    project(":project-a").projectDir = file("custom/my-project-a")
    project(":project-a").buildFileName = "project-a.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/build.gradle.kts

    val buildProfile: String? by project  // <1>
    
    apply(from = "profile-${buildProfile ?: "default"}.gradle.kts")  // <2>
    
    tasks.register("greeting") {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        val message = project.extra["message"]
        doLast {
            println(message)  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 390 bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     */
    
    plugins {
        id("org.gradle.kotlin-dsl.ktlint-convention")
    }
    
    tasks {
        runKtlintCheckOverKotlinScripts {
            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
        tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 01 11:07:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/build.gradle.kts

                }
            }
        }
    }
    
    // Apply the plugin
    apply<GreetingPlugin>()
    // end::no-script-plugin[]
    
    // tag::script-plugin[]
    apply(from = "other.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 407 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    include("app")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 680 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/initScripts/multiVersionCacheRetention/kotlin/gradleUserHome/init.d/cache-settings.gradle.kts

    if (GradleVersion.current() >= GradleVersion.version("8.0")) {
        apply(from = "gradle8/cache-settings.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 119 bytes
    - Viewed (0)
  10. build-logic/settings.gradle.kts

                }
            }
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    apply(from = "../gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    // Utilities for updating the build itself which are not part of the usual build process
    include("build-update-utils")
    
    // Collection of plugins for the root build to configure lifecycle, reporting and IDE integration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top