Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,558 for build2 (0.06 sec)

  1. tensorflow/c/eager/BUILD

    A. Unique TensorFlower <******@****.***> 1744666944 -0700
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Mon Apr 14 23:08:27 UTC 2025
    - 33.3K bytes
    - Viewed (0)
  2. build-logic/build.gradle.kts

            if (jvmArgs.size > 1) {
                throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
                    "which may cause two daemons to be spawned on CI and in IDEA. " +
                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    
    fun readProperties(propertiesFile: File) = java.util.Properties().apply {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Mar 14 02:17:00 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. models.BUILD

    package(default_visibility = ["//visibility:public"])
    
    licenses(["notice"])  # Apache 2.0
    
    filegroup(
        name = "model_files",
        srcs = glob(
            [
                "**/*",
            ],
            exclude = [
                "**/BUILD",
                "**/WORKSPACE",
                "**/LICENSE",
                "**/*.zip",
            ],
        ),
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Jan 10 22:25:53 UTC 2017
    - 328 bytes
    - Viewed (0)
  4. okhttp/build.gradle.kts

      from("src/commonJvmAndroid/kotlinTemplates")
      into(kotlinTemplatesOutput)
    
      filteringCharset = Charsets.UTF_8.toString()
    
      expand(
        // Build & use okhttp3/internal/-InternalVersion.kt
        "projectVersion" to project.version,
      )
    }
    
    // Build & use okhttp3/internal/idn/IdnaMappingTableInstance.kt
    val generateIdnaMappingTableConfiguration: Configuration by configurations.creating
    dependencies {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. ci/official/requirements_updater/BUILD.bazel

    compile_pip_requirements(
        name = "requirements",
        srcs = [
            "nvidia-requirements.txt",
            "requirements.in",
            ":nvidia_constraints",
        ],
        extra_args = [
            "--allow-unsafe",
            "--build-isolation",
            "--rebuild",
            "-c $(location :nvidia_constraints)",
        ],
        generate_hashes = True,
        requirements_txt = REQUIREMENTS,
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Thu Sep 18 19:30:45 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. BUILD

    A. Unique TensorFlower <******@****.***> 1741123505 -0800
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Mar 04 22:39:12 UTC 2025
    - 136 bytes
    - Viewed (0)
  7. build-logic/cleanup/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that cleans up after executing tests"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Jun 16 06:11:03 UTC 2025
    - 311 bytes
    - Viewed (0)
  8. build-logic-commons/build-platform/build.gradle.kts

    val javaParserVersion = "3.18.0"
    // Note: this currently still contains 3/4 logic as we will temporarily have Groovy 3 for the build itself until we move to a Gradle built with Groovy 4
    // It can be removed or changed to 4/5 logic (if necessary) at that point.
    val groovyVersion = GroovySystem.getVersion()
    val isGroovy4 = VersionNumber.parse(groovyVersion).major >= 4
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:16:30 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  9. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	bin=$(basename ${dir})
    	go build -C ${dir} -o ${PWD}/${bin}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 133 bytes
    - Viewed (0)
  10. build-logic/buildquality/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure quality checks (incubating report, CodeNarc, et al)"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(projects.cleanup)
        implementation(projects.documentation)
        implementation(projects.integrationTesting)
        implementation(projects.jvm)
        implementation(projects.performanceTesting)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 24 13:46:12 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top