Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 912 for xdefine (0.14 sec)

  1. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

        }
    
        def "cannot query instant that has not been defined in test thread"() {
            when:
            instant.unknown
    
            then:
            IllegalStateException e = thrown()
            e.message == "Instant 'unknown' has not been defined by any test thread."
        }
    
        def "cannot query operation that has not been defined in test thread"() {
            when:
            operation.unknown
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/coverage.go

    func (s allSubtags) Tags() []Tag {
    	return nil
    }
    
    // coverage is used by NewCoverage which is used as a convenient way for
    // creating Coverage implementations for partially defined data. Very often a
    // package will only need to define a subset of slices. coverage provides a
    // convenient way to do this. Moreover, packages using NewCoverage, instead of
    // their own implementation, will not break if later new slice types are added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/cgo/libcgo.h

     *   CGO_CFLAGS="-fsanitize=thread" CGO_LDFLAGS="-fsanitize=thread" go install
     */
    #undef CGO_TSAN
    #if defined(__has_feature)
    # if __has_feature(thread_sanitizer)
    #  define CGO_TSAN
    # endif
    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    // These must match the definitions in yesTsanProlog in cmd/cgo/out.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. src/crypto/internal/boring/build-goboring.sh

    #include <cassert>
    #include "goboringcrypto0.h"
    #include "goboringcrypto1.h"
    #define check_size(t) if(sizeof(t) != sizeof(GO_ ## t)) {printf("sizeof(" #t ")=%d, but sizeof(GO_" #t ")=%d\n", (int)sizeof(t), (int)sizeof(GO_ ## t)); ret=1;}
    #define check_func(f) { auto x = f; x = _goboringcrypto_ ## f ; }
    #define check_value(n, v) if(n != v) {printf(#n "=%d, but goboringcrypto.h defines it as %d\n", (int)n, (int)v); ret=1;}
    int main() {
    int ret = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

            noExceptionThrown()
            assertHasConfigureSuccessfulLogging()
    
            where:
            description                                        | configuration
            "build logic does not define any additional tasks" | ""
            "build logic defines default tasks"                | "defaultTasks = ['broken']"
            "build logic injects tasks into start param"       | "gradle.startParameter.taskNames = ['broken']"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    include("sub-project-b")
    include("sub-project-c")
    ----
    <1> Define the project name.
    <2> Add subprojects.
    =====
    
    [.multi-language-sample]
    =====
    .settings.gradle
    [source,groovy]
    ----
    rootProject.name = 'root-project'   // <1>
    
    include('sub-project-a')            // <2>
    include('sub-project-b')
    include('sub-project-c')
    ----
    <1> Define the project name.
    <2> Add subprojects.
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    include('sub-project-b')
    include('sub-project-c')
    ----
    <1> Define the location of plugins.
    <2> Apply settings plugins.
    <3> Define the root project name.
    <4> Define dependency resolution strategies.
    <5> Add subprojects to the build.
    =====
    ====
    
    === 1. Define the location of plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_stack_unix.c

    #ifndef _GNU_SOURCE // pthread_getattr_np
    #define _GNU_SOURCE
    #endif
    
    #include <pthread.h>
    #include "libcgo.h"
    
    void
    x_cgo_getstackbound(uintptr bounds[2])
    {
    	pthread_attr_t attr;
    	void *addr;
    	size_t size;
    
    	// Needed before pthread_getattr_np, too, since before glibc 2.32
    	// it did not call pthread_attr_init in all cases (see #65625).
    	pthread_attr_init(&attr);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    Many plugins start as a script plugin coded in a build script.
    This offers an easy way to rapidly prototype and experiment when building a plugin.
    Let's take a look at an example:
    
    .build.gradle.kts
    [source,kotlin]
    ----
    // Define a task
    abstract class CreateFileTask : DefaultTask() {                                     // <1>
        @get:Input
        abstract val fileText: Property<String>                                         // <2>
    
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top