Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __parent__ (0.2 sec)

  1. 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)
  2. 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)
Back to top