Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for destructors (0.17 sec)

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

    // You can safely put linked_ptr<> in a vector<>.
    // Other uses may not be as good.
    //
    // Note: If you use an incomplete type with linked_ptr<>, the class
    // *containing* linked_ptr<> must have a constructor and destructor (even
    // if they do nothing!).
    //
    // Bill Gibbons suggested we use something like this.
    //
    // Thread Safety:
    //   Unlike other linked_ptr implementations, in this implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);
    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    // TestPartResultArray contains exactly one failure that has the given
    // type and contains the given substring.  If that's not the case, a
    // non-fatal failure will be generated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);
    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    // TestPartResultArray contains exactly one failure that has the given
    // type and contains the given substring.  If that's not the case, a
    // non-fatal failure will be generated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //
    // For example;
    //
    //   testing::Message foo;
    //   foo << 1 << " != " << 2;
    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    // Message is not intended to be inherited from.  In particular, its
    // destructor is not virtual.
    //
    // Note that stringstream behaves differently in gcc and in MSVC.  You
    // can stream a NULL char pointer to it in the former, but not in the
    // latter (it causes an access violation if you do).  The Message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //
    // For example;
    //
    //   testing::Message foo;
    //   foo << 1 << " != " << 2;
    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    // Message is not intended to be inherited from.  In particular, its
    // destructor is not virtual.
    //
    // Note that stringstream behaves differently in gcc and in MSVC.  You
    // can stream a NULL char pointer to it in the former, but not in the
    // latter (it causes an access violation if you do).  The Message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/runtime/tracebuf.go

    // a new traceWriter. This allows for chaining together calls in a fluent-style
    // API. This is partly stylistic, and very slightly for performance, since
    // the compiler can destructure this value and pass it between calls as
    // just regular arguments. However, this style is not load-bearing, and
    // we can change it if it's deemed too error-prone.
    type traceWriter struct {
    	traceLocker
    	*traceBuf
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

              TF_EXPECT_OK(
                  ReadCache(&cache, "a", i * block_size, block_size, &out));
              std::vector<char> x(block_size, 'x');
              EXPECT_EQ(out, x);
            }));
      }
      // The `threads` destructor blocks until the threads can be joined, once their
      // respective reads finish (which happens once they are all concurrently being
      // executed, or 10 seconds have passed).
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin_arm64.s

    	MOVD	8(R0), R1	// arg 2 sig
    	MOVD	0(R0), R0	// arg 1 thread
    	BL	libc_pthread_kill(SB)
    	RET
    
    TEXT runtime·pthread_key_create_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 destructor
    	MOVD	0(R0), R0	// arg 1 *key
    	BL	libc_pthread_key_create(SB)
    	RET
    
    TEXT runtime·pthread_setspecific_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 value
    	MOVD	0(R0), R0	// arg 1 key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // to register a thread-exit-time destructor.
    // We are here setting the thread-specific value of the pthread key, to enable the destructor.
    // So that the pthread_key_destructor would dropm while the C thread is exiting.
    //
    // And the saved g will be used in pthread_key_destructor,
    // since the g stored in the TLS by Go might be cleared in some platforms,
    // before the destructor invoked, so, we restore g by the stored g, before dropm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top