Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for addToGroup (0.2 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            PBXProject project = new PBXProject(projectPath);
    
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getSources(), "Sources");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getHeaders(), "Headers");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getTests(), "Tests");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getRoot());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/ops.h

    #include "tensorflow/core/lib/hash/hash.h"
    #include "tensorflow/core/lib/strings/strcat.h"
    
    namespace tensorflow {
    
    /// @defgroup core Core Tensorflow API
    
    class Output;
    
    /// @addtogroup core
    /// @{
    
    /// Represents a node in the computation graph.
    class Operation {
     public:
      Operation() : node_(nullptr) {}
      explicit Operation(Node* n);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope.h

    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/lib/gtl/array_slice.h"
    
    namespace tensorflow {
    
    class Graph;
    class GraphDef;
    class NodeBuilder;
    struct CompositeOpScopes;
    
    /// @addtogroup core
    /// @{
    
    /// A `Scope` object represents a set of related TensorFlow ops that have the
    /// same properties such as a common name prefix.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     */
    
    /** @file
     * Basic CUnit include file for user and system code.
     * Defines macros for assertions for use in user test cases.
     * Basic system macro definitions also appear here.
     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUNIT_H_SEEN
    #define CUNIT_CUNIT_H_SEEN
    
    #include <string.h>
    #include <math.h>
    
    /** CUnit version number. */
    #define CU_VERSION "2.1-2"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  initialization function returns an error.  This allows clients to
     *  perform actions associated with these events such as output formatting
     *  and reporting.
     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_TESTRUN_H_SEEN
    #define CUNIT_TESTRUN_H_SEEN
    
    #include "CUnit.h"
    #include "CUError.h"
    #include "TestDB.h"
    #include <stdio.h>
    
    #ifdef __cplusplus
    extern "C" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  in a test registry.  This module provides functions and
     *  typedef's to support the creation, registration, and manipulation
     *  of test cases, suites, and the registry.
     */
    /** @addtogroup Framework
     *  @{
     */
    
    #ifndef CUNIT_TESTDB_H_SEEN
    #define CUNIT_TESTDB_H_SEEN
    
    #include <setjmp.h>   /* jmp_buf */
    
    #include "CUnit.h"
    #include "CUError.h"
    
    #ifdef __cplusplus
    extern "C" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top