Skip to content

Commit

Permalink
latest changes update
Browse files Browse the repository at this point in the history
  • Loading branch information
PrasanthV454 committed Feb 5, 2023
1 parent af9b012 commit c164e25
Show file tree
Hide file tree
Showing 374 changed files with 26,902 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
config.h
config.log*
config.cache
Makefile.config
rdkafka*.pc
*~
\#*
*.o
*.so
*.so.?
*.dylib
*.a
*.d
librdkafka*.lds
core
vgcore.*
*dSYM/
*.offset
SOURCES
gmon.out
*.gz
*.tgz
*.bz2
*.deb
*.rpm
staging-docs
tmp
stats*.json
test_report*.json
cov-int
gdbrun*.gdb
TAGS
vcpkg_installed
.git
build
examples
debian
.vscode
20 changes: 20 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}
96 changes: 96 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"files.associations": {
"__availability": "c",
"__bit_reference": "c",
"__config": "c",
"__debug": "c",
"__hash_table": "c",
"__locale": "c",
"__string": "c",
"__threading_support": "c",
"__tree": "c",
"__tuple": "c",
"algorithm": "c",
"array": "c",
"atomic": "c",
"chrono": "c",
"cmath": "c",
"compare": "c",
"concepts": "c",
"ctime": "c",
"deque": "c",
"exception": "c",
"__memory": "c",
"functional": "c",
"memory_resource": "c",
"filesystem": "c",
"fstream": "c",
"iterator": "c",
"list": "c",
"locale": "c",
"map": "c",
"memory": "c",
"numbers": "c",
"numeric": "c",
"optional": "c",
"queue": "c",
"random": "c",
"semaphore": "c",
"set": "c",
"stack": "c",
"string": "c",
"thread": "c",
"tuple": "c",
"type_traits": "c",
"typeinfo": "c",
"unordered_map": "c",
"unordered_set": "c",
"utility": "c",
"variant": "c",
"vector": "c",
"bit": "c",
"*.tcc": "c",
"bitset": "c",
"cassert": "c",
"ccomplex": "c",
"cctype": "c",
"cerrno": "c",
"cfloat": "c",
"climits": "c",
"clocale": "c",
"codecvt": "c",
"complex": "c",
"condition_variable": "c",
"csignal": "c",
"cstdarg": "c",
"cstddef": "c",
"cstdint": "c",
"cstdio": "c",
"cstdlib": "c",
"cstring": "c",
"ctgmath": "c",
"cwchar": "c",
"cwctype": "c",
"ratio": "c",
"string_view": "c",
"system_error": "c",
"initializer_list": "c",
"iomanip": "c",
"ios": "c",
"iosfwd": "c",
"iostream": "c",
"istream": "c",
"limits": "c",
"mutex": "c",
"new": "c",
"ostream": "c",
"sstream": "c",
"stdexcept": "c",
"stop_token": "c",
"streambuf": "c",
"cinttypes": "c",
"cstdbool": "c",
"version": "c",
"*.inc": "c"
}
}
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.8-slim-buster

RUN apt-get update
RUN apt-get install -y tzdata ca-certificates git valgrind build-essential curl vim
RUN git clone https://github.com/confluentinc/librdkafka
RUN pip3 install trivup
RUN pip3 install jsoncomment

ENTRYPOINT ["/bin/sh"]
1 change: 1 addition & 0 deletions build/.cmake/api/v1/query/client-vscode/query.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]}

0 comments on commit c164e25

Please sign in to comment.