Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,129 for esbuild (0.21 sec)

  1. common/scripts/report_build_info.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    if BUILD_GIT_REVISION=$(git rev-parse HEAD 2> /dev/null); then
      if [[ -z "${IGNORE_DIRTY_TREE}" ]] && [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
        BUILD_GIT_REVISION=${BUILD_GIT_REVISION}"-dirty"
      fi
    else
      BUILD_GIT_REVISION=unknown
    fi
    
    # Check for local changes
    tree_status="Clean"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/build.gradle.kts

    plugins {
        id("java-library")
    }
    description = "Provides a custom CodeNarc rule used by the Gradle build"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    group = "gradlebuild"
    
    dependencies {
        api(platform(project(":build-platform")))
        compileOnly(localGroovy())
        compileOnly("org.codenarc:CodeNarc") {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

    A. Unique TensorFlower <******@****.***> 1711560469 +0000
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 987 bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/BUILD

    wcn <******@****.***> 1668698241 -0800
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Thu Nov 17 15:20:54 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/BUILD

    A. Unique TensorFlower <******@****.***> 1712002291 -0700
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. BUILD

    Christian Sigg <******@****.***> 1610996512 -0800
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Jan 18 19:07:07 GMT 2021
    - 95 bytes
    - Viewed (0)
  7. build-logic/build-init-samples/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate samples using internal build init APIs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("org.gradle.guides:gradle-guides-plugin")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm") {
            because("This is a transitive dependency of 'gradle-guides-plugin' not declared there")
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 442 bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/build.gradle.kts

    description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        compileOnly("com.gradle:develocity-gradle-plugin:3.17.2")
    
        api(platform(project(":build-platform")))
    
        implementation(project(":basics"))
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 977 bytes
    - Viewed (0)
  9. tensorflow/c/eager/BUILD

        "tf_cc_test",
        "tf_copts",
        "tf_cuda_cc_test",
        "tf_cuda_library",
    )
    load("//tensorflow:tensorflow.default.bzl", "cc_header_only_library", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  10. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
Back to top