Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 316 for defs (0.06 sec)

  1. tensorflow/cc/experimental/base/public/BUILD

    )
    
    cc_library(
        name = "runtime",
        hdrs = [
            "runtime.h",
        ],
        deps = [
            ":status",
            "//tensorflow/c/eager:c_api",
            "//tensorflow/c/eager:c_api_experimental",
        ],
    )
    
    cc_library(
        name = "runtime_builder",
        hdrs = [
            "runtime_builder.h",
        ],
        deps = [
            ":runtime",
            ":status",
            "//tensorflow/c/eager:c_api",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/image/png/testdata/pngsuite/basn0g16.sng

    0600 0f00 1800 2100 2a00 3300 3c00 4500 4e00 5700 6000 6900 7200 7b00 8400 8d00 9600 9f00 a800 b100 ba00 c300 cc00 d500 de00 e700 f000 f900 f9ff deff c3ff a8ff 
    0800 1100 1a00 2300 2c00 3500 3e00 4700 5000 5900 6200 6b00 7400 7d00 8600 8f00 9800 a100 aa00 b300 bc00 c500 ce00 d700 e000 e900 f200 fb00 f3ff d8ff bdff a2ff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "sparsecore_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "sparsecore_passes",
        hdrs = [
            "sparsecore_passes.h",
        ],
        textual_hdrs = [
            "sparsecore_passes.h.inc",
        ],
        deps = [
            ":embedding_pipelining",
            ":embedding_program_key",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_multirepo.txt

    # initial standalone module should use no downloaded modules
    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_test_files.txt

    # package in the same directory.
    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/defs_openbsd_amd64.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
    - 3.1K bytes
    - Viewed (0)
  9. src/runtime/defs_netbsd_amd64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_netbsd.go defs_netbsd_amd64.go >defs_netbsd_amd64.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <machine/mcontext.h>
    */
    import "C"
    
    const (
    	REG_RDI    = C._REG_RDI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. cni/pkg/ipset/ipset.go

    func NewIPSet(name string, v6 bool, deps NetlinkIpsetDeps) (IPSet, error) {
    	var err error
    	set := IPSet{
    		V4Name: fmt.Sprintf(V4Name, name),
    		Deps:   deps,
    		Prefix: name,
    	}
    	err = deps.ipsetIPHashCreate(set.V4Name, false)
    	if v6 {
    		set.V6Name = fmt.Sprintf(V6Name, name)
    		v6err := deps.ipsetIPHashCreate(set.V6Name, true)
    		err = errors.Join(err, v6err)
    	}
    	return set, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top