This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import logging | |
from contextlib import asynccontextmanager | |
from dataclasses import dataclass | |
from functools import wraps | |
from typing import AsyncIterator, Union, Iterable, Callable | |
from ddtrace import tracer | |
from google.api_core.exceptions import Aborted | |
from google.api_core.retry import AsyncRetry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
#include <QtTest/QtTest> | |
class A | |
{ | |
public: | |
A() {} | |
A(float) : i(0x30) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include ( ../../../../settings.pro ) | |
QT += xml sql network | |
contains(QT_VERSION, ^4\\.[0-9]\\..*) { | |
CONFIG += qtestlib | |
} | |
contains(QT_VERSION, ^5\\.[0-9]\\..*) { | |
QT += testlib | |
} |