Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 368 for defs (0.24 sec)

  1. src/runtime/defs_linux_amd64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_linux.go defs1_linux.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR  = 0x4
    	_EAGAIN = 0xb
    	_ENOMEM = 0xc
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/runtime/defs_openbsd_386.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_openbsd.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x10000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/defs_openbsd_arm.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_openbsd.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x10000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/BUILD

        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
            ":c_api_macros",
            ":tf_shape_internal",
            "//tensorflow/core:framework",
        ],
    )
    
    cc_library(
        name = "tf_shape_internal",
        hdrs = ["tf_shape_internal.h"],
        copts = tf_copts(),
        visibility = ["//tensorflow:internal"],
        deps = [
            ":conversion_macros",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

    )
    
    cc_library(
        name = "types",
        hdrs = ["types.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [],
    )
    
    cc_library(
        name = "component",
        hdrs = ["component.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

    )
    
    cc_library(
        name = "tac-opt_lib",
        testonly = True,
        deps = [
            ":target_aware_conversion",
            "//tensorflow/compiler/mlir:tf_mlir_opt_main",
        ],
        alwayslink = 1,
    )
    
    # Binary with no hardwares linked.
    tf_cc_binary(
        name = "tac-opt",
        testonly = True,
        deps = [
            ":tac-opt_lib",
        ],
    )
    
    # Binary with all backends linked.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/impl/BUILD

    )
    
    cc_library(
        name = "iostream",
        srcs = [
            "iostream.cc",
        ],
        deps = [
            ":none",
            ":string",
            ":tensor_spec",
        ],
    )
    
    tf_cc_test(
        name = "iostream_test",
        size = "small",
        srcs = ["iostream_test.cc"],
        deps = [
            ":iostream",
            ":none",
            ":scalars",
            ":string",
            ":tensor_spec",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/metrics.go

    	sysStats  sysStatsAggregate
    	cpuStats  cpuStatsAggregate
    	gcStats   gcStatsAggregate
    }
    
    // ensure populates statistics aggregates determined by deps if they
    // haven't yet been populated.
    func (a *statAggregate) ensure(deps *statDepSet) {
    	missing := deps.difference(a.ensured)
    	if missing.empty() {
    		return
    	}
    	for i := statDep(0); i < numStatsDeps; i++ {
    		if !missing.has(i) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::file-deps[]
    repositories {
        flatDir {
            name = 'libs dir'
            dir file('libs')  // <1>
        }
    }
    
    dependencies {
        implementation files('libs/our-custom.jar')  // <2>
        implementation ':awesome-framework:2.0'  // <3>
        implementation ':utility-library:1.0'  // <3>
    }
    // end::file-deps[]
    
    // tag::retrieve-deps[]
    tasks.register('retrieveRuntimeDependencies', Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 855 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/BUILD

        deps = [
            ":common_v1",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "shapes_for_arguments",
        srcs = ["shapes_for_arguments.py"],
        deps = [
            ":common",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "control_flow_upgrade_legacy_v1",
        srcs = ["control_flow_upgrade_legacy_v1.py"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 20:57:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top