Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,008 for xdefine (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    //  number, y is the minor version number, and z is the patch level if not 0.
    //  This is used by <config/auto_link.hpp> to select which library version to link to.
    
    #define BOOST_LIB_VERSION "1_55"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/aot/benchmark_main.template

    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    #include "{{TFCOMPILE_HEADER}}"  // NOLINT(whitespace/braces)
    // clang-format on
    
    #include "tensorflow/compiler/aot/benchmark.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/image_format/internal_api.cc

    #include "tensorflow/tools/proto_splitter/cc/max_size.h"
    // TODO(b/291933687), TODO(b/291001524)
    #if !defined(PLATFORM_WINDOWS) && !defined(__APPLE__)
    #include "tensorflow/tools/proto_splitter/cc/saved_model_splitter.h"
    #include "tensorflow/tools/proto_splitter/merge.h"
    #endif
    #define IS_OSS false
    namespace tensorflow {
    namespace image_format {
    
    absl::Status ReadSavedModel(const std::string& file_prefix,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (ServiceCIDRList) SwaggerDoc() map[string]string {
    	return map_ServiceCIDRList
    }
    
    var map_ServiceCIDRSpec = map[string]string{
    	"":      "ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/asm/internal/lex/lex.go

    	return Token{ScanToken: token, text: text}
    }
    
    func (l Token) String() string {
    	return l.text
    }
    
    // A Macro represents the definition of a #defined macro.
    type Macro struct {
    	name   string   // The #define name.
    	args   []string // Formal arguments.
    	tokens []Token  // Body of macro.
    }
    
    // Tokenize turns a string into a list of Tokens; used to parse the -D flag and in tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_unified_experimental_internal.h

    // Implementation detail for the unified execution APIs for Eager and tracing
    // backends (graph/MLIR).
    //
    // This defines a set of abstract classes that are intended to provide the
    // functionality of the opaque C types exposed in the public APIs defined in the
    // `c_api_unified_experimental.h` header.
    // =============================================================================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 13 22:20:40 UTC 2020
    - 5.2K bytes
    - Viewed (0)
Back to top