Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // destructor, as:
    //
    //   1. You cannot safely throw from a destructor.  This is a problem
    //      as in some cases Google Test is used where exceptions are enabled, and
    //      we may want to implement ASSERT_* using exceptions where they are
    //      available.
    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					next = st.demangleType(false)
    				} else {
    					if len(st.str) < 2 {
    						st.fail("expected destructor type")
    					}
    					if last == nil {
    						st.fail("destructor before name is seen")
    					}
    					st.advance(2)
    					next = &Destructor{Name: getLast(last)}
    					if len(st.str) > 0 && st.str[0] == 'B' {
    						next = st.taggedName(next)
    					}
    				}
    			case 'S':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // destructor, as:
    //
    //   1. You cannot safely throw from a destructor.  This is a problem
    //      as in some cases Google Test is used where exceptions are enabled, and
    //      we may want to implement ASSERT_* using exceptions where they are
    //      available.
    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// won't be registered anymore is if this function gets called by core
      /// TensorFlow and the `TF_Filesystem*` object is destroyed. However, due to
      /// registration being done in a static instance of `Env`, the destructor of
      /// `FileSystem` is never called (see
      /// https://github.com/tensorflow/tensorflow/issues/27535). In turn, this
      /// function will never be called. There are plans to refactor registration
      /// and fix this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top