Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 814 for defUse (0.55 sec)

  1. src/cmd/go/internal/work/gccgo.go

    	if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    		defs = append(defs, "-ffile-prefix-map="+base.Cwd()+"=.")
    		defs = append(defs, "-ffile-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	} else if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		defs = append(defs, "-fdebug-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	}
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    CreateInfeedsOpsXlaAdjustLayoutPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_INFEEDSOPSXLAADJUSTLAYOUT
    #define GEN_PASS_DECL_LEGALIZETF
    #define GEN_PASS_DECL_LEGALIZETFCOLLECTIVE
    #define GEN_PASS_DECL_LEGALIZETFMODULEPASS
    #define GEN_PASS_DECL_LEGALIZETFTYPESPASS
    #define GEN_PASS_DECL_TFXLADEVICESPECIFICTRANSFORMS
    #define GEN_PASS_DECL_VERIFYTFXLALEGALIZATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    
    #ifndef TFLITE_ABORT
    #define TFLITE_ABORT abort()
    #endif
    
    #ifndef TFLITE_ASSERT_FALSE
    #if defined(NDEBUG)
    #define TFLITE_ASSERT_FALSE (static_cast<void>(0))
    #else
    #define TFLITE_ASSERT_FALSE TFLITE_ABORT
    #endif
    #endif
    
    #ifndef TFLITE_DCHECK
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUShardingIdentificationPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_MARKOPSFOROUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUCLUSTERFORMATIONPASS
    #define GEN_PASS_DECL_TPUEXTRACTHEADTAILOUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUEXTRACTOUTSIDECOMPILATIONPASS
    #define GEN_PASS_DECL_TPUSHARDINGIDENTIFICATIONPASS
    #define GEN_PASS_DECL_VERIFYCLUSTERINGPASS
    #define GEN_PASS_DECL_XLACLUSTERFORMATIONPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

    // The DenseToSparse Pass.
    //
    namespace mlir {
    namespace TFL {
    
    namespace {
    
    #define GEN_PASS_DEF_DENSETOSPARSEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // If sparsity level is below this threshold, keep the tensor in dense format.
    constexpr float kMinSparsityLevel = 0.3;
    // Heuristic to check if a block configuration is correct for float constants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/openapi-webhooks.md

    This is normally called a **webhook**.
    
    ## Webhooks steps
    
    The process normally is that **you define** in your code what is the message that you will send, the **body of the request**.
    
    You also define in some way at which **moments** your app will send those requests or events.
    
    And **your users** define in some way (for example in a web dashboard somewhere) the **URL** where your app should send those requests.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. test/alias2.go

    func (A1) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A2) m() {} // ERROR "invalid receiver type"
    func (A3) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A4) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    
    type B1 = struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

        // Define a named domain object set to hold Person objects
        NamedDomainObjectSet<Person> people = project.objects.namedDomainObjectSet(Person)
    
        // Add a person to the set
        void addPerson(String name) {
            people.create(name)
        }
    }
    // end::ndos[]
    
    // tag::ndol[]
    
    abstract class MyPluginExtensionNamedDomainObjectList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        private val people: NamedDomainObjectList<Person> = project.objects.namedDomainObjectList(Person::class)
    
        // Add a person to the container
        fun addPerson(name: String) {
            people.plus(name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectContainer {
        // Define a named domain object container to hold Person objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      %0 = "tfl.pseudo_sparse_const"() {compressed_data = dense<[1.0, 2.0, 0.5, 0.25, -1.0, -2.0, -0.5, -0.25]> : tensor<8xf16>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top