Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for __parent__ (0.15 sec)

  1. tensorflow/cc/experimental/libtf/object.cc

    #include "tensorflow/cc/experimental/libtf/object.h"
    
    #include <type_traits>
    
    namespace tf {
    namespace libtf {
    
    const String& Object::ParentKey() {
      static const String* key = new String("__parent__");
      return *key;
    }
    
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 22:48:48 UTC 2021
    - 961 bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/object.h

      friend tensorflow::StatusOr<T> Cast(Handle handle);
    };
    
    /// @brief The `Object` class modeled after Python "objects".
    ///
    /// An `Object` uses a TaggedValue dictionary to store its attributes. The
    /// "__parent__" attribute is reserved.
    class Object : public Handle {
     public:
      /// Constructs a handle that acts as an object.
      Object() : Handle(TaggedValue::Dict()) {}
      /// Retrieves the key of the object's parent.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // as parentheses for the purpose of this analysis.
                is KtContainerNode ->
                    // !!!!CAUTION!!!! Not `parentUse(parent.parent, _parent_)`
                    // Here we assume the parent (e.g. If condition) statement
                    // ignores the ContainerNode when accessing child
                    doesParentUseChild(parent.parent, child)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(note.templateContent){this._processAnnotations(note.templateContent._notes);var pp=note.templateContent._parentProps=this._discoverTemplateParentProps(note.templateContent._notes);var bindings=[];for(var prop in pp){var name='_parent_'+prop;bindings.push({index:note.index,kind:'property',name:name,propertyName:name,parts:[{mode:'{',model:prop,value:prop}]});}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top