Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,057 for defUse (0.16 sec)

  1. src/runtime/time_windows.h

    // Must read hi1, then lo, then hi2. The snapshot is valid if hi1 == hi2.
    // Or, on 64-bit, just read lo:hi1 all at once atomically.
    #define _INTERRUPT_TIME 0x7ffe0008
    #define _SYSTEM_TIME 0x7ffe0014
    #define time_lo 0
    #define time_hi1 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 03 18:37:22 UTC 2021
    - 753 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/customizedLayout/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
    }
    
    // tag::define-main[]
    sourceSets {
        main {
            java {
                setSrcDirs(listOf("src/java"))
            }
            resources {
                setSrcDirs(listOf("src/resources"))
            }
        }
    // end::define-main[]
        test {
            java {
                srcDir("test/java")
            }
            resources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 527 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/customTask/groovy/build.gradle

    // tag::add-action[]
    // tag::define-task[]
    abstract class GreetingTask extends DefaultTask {
    // end::define-task[]
        @TaskAction
        def greet() {
            println 'hello from GreetingTask'
        }
    // tag::define-task[]
    }
    // end::define-task[]
    
    // Create a task using the task type
    tasks.register('hello', GreetingTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_arm64.s

    #include "cgo/abi_arm64.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		3
    
    #define SYS_exit			1
    #define SYS_read			3
    #define SYS_write			4
    #define SYS_open			5
    #define SYS_close			6
    #define SYS_getpid			20
    #define SYS_kill			37
    #define SYS_munmap			73
    #define SYS_madvise			75
    #define SYS_fcntl			92
    #define SYS_mmap			197
    #define SYS___sysctl			202
    #define SYS___sigaltstack14		281
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_386.s

    #include "go_tls.h"
    #include "textflag.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		3
    
    #define SYS_exit			1
    #define SYS_read			3
    #define SYS_write			4
    #define SYS_open			5
    #define SYS_close			6
    #define SYS_getpid			20
    #define SYS_kill			37
    #define SYS_munmap			73
    #define SYS_madvise			75
    #define SYS_fcntl			92
    #define SYS_mmap			197
    #define SYS___sysctl			202
    #define SYS___sigaltstack14		281
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      /** c-allocate with memory tracking. */
      #define CU_CALLOC(x, y)         CU_calloc((x), (y), __LINE__, __FILE__)
      /** m-allocate with memory tracking. */
      #define CU_MALLOC(x)            CU_malloc((x), __LINE__, __FILE__)
      /** Free with memory tracking. */
      #define CU_FREE(x)              CU_free((x), __LINE__, __FILE__)
      /** Reallocate with memory tracking. */
      #define CU_REALLOC(x, y)        CU_realloc((x), (y), __LINE__, __FILE__)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h

    // lowered from the quantized graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizeIntGraphPass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_CONVERTTFQUANTOPSTOMHLO
    #define GEN_PASS_DECL_CONVERTTFQUANTTYPES
    #define GEN_PASS_DECL_VERIFYQUANTLEGALIZATION
    #define GEN_PASS_DECL_OPTIMIZEINTGRAPH
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h.inc"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit_intl.h

     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUNIT_INTL_H_SEEN
    #define CUNIT_CUNIT_INTL_H_SEEN
    
    /* activate these when source preparation is complete
    #include <libintl.h>
    #ifndef _
    #  define _(String) gettext (String)
    #endif
    #ifndef gettext_noop
    #  define gettext_noop(String) String
    #endif
    #ifndef N_
    #  define N_(String) gettext_noop (String)
    #endif
    */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/go_tls.h

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #ifdef GOARCH_arm
    #define LR R14
    #endif
    
    #ifdef GOARCH_amd64
    #define	get_tls(r)	MOVQ TLS, r
    #define	g(r)	0(r)(TLS*1)
    #endif
    
    #ifdef GOARCH_386
    #define	get_tls(r)	MOVL TLS, r
    #define	g(r)	0(r)(TLS*1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 10 22:38:38 UTC 2019
    - 366 bytes
    - Viewed (0)
  10. src/html/template/clone_test.go

    	t3 := Must(t0.Clone())
    	Must(t3.Parse(`{{define "lhs"}} <style> {{end}}`))
    	Must(t3.Parse(`{{define "rhs"}} </style> {{end}}`))
    
    	// Complete t0.
    	Must(t0.Parse(`{{define "lhs"}} ( {{end}}`))
    	Must(t0.Parse(`{{define "rhs"}} ) {{end}}`))
    
    	// Clone t0 as t4. Redefining the "lhs" template should not fail.
    	t4 := Must(t0.Clone())
    	if _, err := t4.Parse(`{{define "lhs"}} OK {{end}}`); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top