id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
18,399
addcommanddialog.h
hluk_CopyQ/src/gui/addcommanddialog.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ADDCOMMANDDIALOG_H #define ADDCOMMANDDIALOG_H #include "common/command.h" #include <QDialog> #include <QtContainerFwd> namespace Ui { class AddCommandDialog; } class QSortFilterProxyModel; class AddCommandDialog final : public QDialog { Q_OBJECT public: ...
751
C++
.h
26
26.038462
97
0.792426
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,400
commandwidget.h
hluk_CopyQ/src/gui/commandwidget.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef COMMANDWIDGET_H #define COMMANDWIDGET_H #include <QWidget> namespace Ui { class CommandWidget; } class QComboBox; struct Command; /** Widget (set of widgets) for creating or modifying Command object. */ class CommandWidget final : public QWidget { Q_OBJECT ...
1,385
C++
.h
44
27.545455
72
0.74924
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,401
pixelratio.h
hluk_CopyQ/src/gui/pixelratio.h
#ifndef PIXEL_RATIO_H #define PIXEL_RATIO_H #include <QPaintDevice> static qreal pixelRatio(QPaintDevice *pd) { return pd->devicePixelRatioF(); } #endif // PIXEL_RATIO_H
177
C++
.h
8
20.25
41
0.777108
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,402
actiondialog.h
hluk_CopyQ/src/gui/actiondialog.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ACTIONDIALOG_H #define ACTIONDIALOG_H #include <QDialog> #include <QModelIndex> #include <QPersistentModelIndex> #include <QRegularExpression> #include <QVariantMap> class QAbstractButton; struct Command; namespace Ui { class ActionDialog; } /** Dialog class...
1,974
C++
.h
56
31.267857
104
0.746709
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,403
commanddialog.h
hluk_CopyQ/src/gui/commanddialog.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef COMMANDDIALOG_H #define COMMANDDIALOG_H #include "common/command.h" #include "common/commandstore.h" #include <QDialog> namespace Ui { class CommandDialog; } class QAbstractButton; class CommandDialog final : public QDialog { Q_OBJECT friend class Comm...
2,056
C++
.h
58
30.896552
73
0.771805
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,404
tabicons.h
hluk_CopyQ/src/gui/tabicons.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef TABICONS_H #define TABICONS_H #include <QtContainerFwd> class QIcon; class QComboBox; class QString; class QWidget; /** Return list of saved tabs (ordered by "tabs" option if possible). */ QList<QString> savedTabs(); QString getIconNameForTabName(const QString &t...
644
C++
.h
17
36.294118
72
0.815235
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,405
notificationdaemon.h
hluk_CopyQ/src/gui/notificationdaemon.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef NOTIFICATIONDAEMON_H #define NOTIFICATIONDAEMON_H #include "gui/notificationbutton.h" #include <QColor> #include <QList> #include <QObject> #include <QVariantMap> #include <QTimer> class Notification; class QPixmap; class QPoint; class QWidget; class Notificatio...
2,129
C++
.h
65
28
94
0.745588
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,406
pluginwidget.h
hluk_CopyQ/src/gui/pluginwidget.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef PLUGINWIDGET_H #define PLUGINWIDGET_H #include "item/itemwidget.h" #include <QWidget> class QSettings; namespace Ui { class PluginWidget; } class PluginWidget final : public QWidget { Q_OBJECT public: explicit PluginWidget(const ItemLoaderPtr &loader, ...
524
C++
.h
21
22.333333
82
0.762677
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,407
tabpropertieswidget.h
hluk_CopyQ/src/gui/tabpropertieswidget.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef TABPROPERTIESWIDGET_H #define TABPROPERTIESWIDGET_H #include <QWidget> namespace Ui { class TabPropertiesWidget; } class TabPropertiesWidget : public QWidget { Q_OBJECT public: explicit TabPropertiesWidget(QWidget *parent = nullptr); ~TabPropertiesWi...
736
C++
.h
25
26.32
60
0.789174
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,408
screen.h
hluk_CopyQ/src/gui/screen.h
#ifndef SCREEN_H #define SCREEN_H class QPoint; class QRect; class QWidget; int screenCount(); int screenNumberAt(const QPoint &pos); QRect screenGeometry(int i); QRect screenAvailableGeometry(const QWidget &w); #endif // SCREEN_H
237
C++
.h
10
22.1
48
0.81448
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,409
commandsyntaxhighlighter.h
hluk_CopyQ/src/gui/commandsyntaxhighlighter.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef COMMANDSYNTAXHIGHLIGHTER_H #define COMMANDSYNTAXHIGHLIGHTER_H #include <QtContainerFwd> class QPlainTextEdit; class QTextEdit; QList<QString> scriptableKeywords(); QList<QString> scriptableProperties(); QList<QString> scriptableFunctions(); /// Constructors and f...
579
C++
.h
14
39.928571
86
0.853309
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,410
configurationmanager.h
hluk_CopyQ/src/gui/configurationmanager.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CONFIGURATIONMANAGER_H #define CONFIGURATIONMANAGER_H #include "item/itemwidget.h" #include <QDialog> #include <QHash> #include <memory> namespace Ui { class ConfigTabGeneral; class ConfigTabHistory; class ConfigTabLayout; class ConfigTabNotifica...
3,726
C++
.h
96
34.78125
95
0.761481
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,411
menuitems.h
hluk_CopyQ/src/gui/menuitems.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef MENUITEMS_H #define MENUITEMS_H #include <QList> #include <QKeySequence> #include <QString> #include <QSettings> #include <array> namespace Actions { enum Id { File_New, File_Import, File_Export, File_Preferences, File_Commands, File_ShowC...
1,608
C++
.h
74
17.459459
64
0.718338
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,412
commandedit.h
hluk_CopyQ/src/gui/commandedit.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef COMMANDEDIT_H #define COMMANDEDIT_H #include <QWidget> namespace Ui { class CommandEdit; } class CommandEdit final : public QWidget { Q_OBJECT public: explicit CommandEdit(QWidget *parent = nullptr); ~CommandEdit(); void setCommand(const QString...
625
C++
.h
25
21.76
52
0.751701
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,413
clipboardspy.h
hluk_CopyQ/src/gui/clipboardspy.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CLIPBOARDSPY_H #define CLIPBOARDSPY_H #include "common/clipboardmode.h" #include "platform/platformnativeinterface.h" #include <QObject> class ClipboardSpy final : public QObject { Q_OBJECT public: explicit ClipboardSpy(ClipboardMode mode, const QByteArra...
762
C++
.h
26
25.846154
71
0.756906
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,414
clipboardbrowsershared.h
hluk_CopyQ/src/gui/clipboardbrowsershared.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CLIPBOARDBROWSERSHARED_H #define CLIPBOARDBROWSERSHARED_H #include "common/navigationstyle.h" #include "gui/menuitems.h" #include "gui/theme.h" #include <QString> #include <memory> class ActionHandler; class ItemFactory; class NotificationDaemon; struct Clipboar...
1,140
C++
.h
35
29.085714
74
0.775956
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,415
icon_list.h
hluk_CopyQ/src/gui/icon_list.h
// This file is generated with "update_icon_font.py" from FontAwesome's metadata. struct Icon { unsigned short unicode; bool isBrand; const char *searchTerms; }; constexpr Icon iconList[] = { {0x30, false, "0|Digit Zero|nada|none|zero|zilch"}, {0x31, false, "1|Digit One|one"}, {0x32, false, "2|Digit Two|t...
135,044
C++
.h
1,895
70.246966
306
0.776602
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,416
mainwindow.h
hluk_CopyQ/src/gui/mainwindow.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef MAINWINDOW_H #define MAINWINDOW_H #include "common/clipboardmode.h" #include "common/command.h" #include "common/navigationstyle.h" #include "gui/clipboardbrowsershared.h" #include "gui/menuitems.h" #include "item/persistentdisplayitem.h" #include "platform/platfo...
21,223
C++
.h
514
36.101167
125
0.731647
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,417
actionhandler.h
hluk_CopyQ/src/gui/actionhandler.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ACTIONHANDLER_H #define ACTIONHANDLER_H #include <QObject> #include <QSet> class Action; class NotificationDaemon; class ActionTableModel; class ActionHandler final : public QObject { Q_OBJECT public: explicit ActionHandler(NotificationDaemon *notificatio...
1,253
C++
.h
35
31.942857
90
0.75624
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,418
selectiondata.h
hluk_CopyQ/src/gui/selectiondata.h
// SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include <QModelIndexList> #include <QVariantMap> #include <QtContainerFwd> class ClipboardBrowser; void addSelectionData( QVariantMap *result, const QList<QPersistentModelIndex> &selectedIndexes); void addSelectionData( QVariantMap *...
671
C++
.h
18
32.833333
85
0.777434
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,419
configtabappearance.h
hluk_CopyQ/src/gui/configtabappearance.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CONFIGTABAPPEARANCE_H #define CONFIGTABAPPEARANCE_H #include "gui/theme.h" #include <QWidget> #include <QTimer> namespace Ui { class ConfigTabAppearance; } class ItemDelegate; class ItemFactory; class Option; class QAbstractScrollArea; class QSettings; class Co...
1,890
C++
.h
58
28.62069
64
0.767146
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,420
filtercompleter.h
hluk_CopyQ/src/gui/filtercompleter.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef FILTERCOMPLETER_H #define FILTERCOMPLETER_H #include <QCompleter> #include <QStringList> class QLineEdit; class FilterCompleter final : public QCompleter { Q_OBJECT Q_PROPERTY(QStringList history READ history WRITE setHistory) public: static void inst...
891
C++
.h
28
28.321429
65
0.776084
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,421
notificationbutton.h
hluk_CopyQ/src/gui/notificationbutton.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef NOTIFICATIONBUTTON_H #define NOTIFICATIONBUTTON_H #include <QByteArray> #include <QList> #include <QMetaType> #include <QString> struct NotificationButton { QString name; QString script; QByteArray data; }; Q_DECLARE_METATYPE(NotificationButton) usin...
403
C++
.h
16
23.0625
54
0.811024
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,422
configtabtabs.h
hluk_CopyQ/src/gui/configtabtabs.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CONFIGTABTABS_H #define CONFIGTABTABS_H #include <QWidget> class ItemOrderList; class QSettings; class ConfigTabTabs final : public QWidget { Q_OBJECT public: explicit ConfigTabTabs(QWidget *parent = nullptr); void saveTabs(QSettings *settings); pri...
383
C++
.h
16
21.5
54
0.783333
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,423
clipboarddialog.h
hluk_CopyQ/src/gui/clipboarddialog.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef CLIPBOARDDIALOG_H #define CLIPBOARDDIALOG_H #include <QDialog> #include <QPersistentModelIndex> #include <QPointer> #include <QVariantMap> #include <QTimer> #include "platform/platformnativeinterface.h" class QBuffer; class QListWidgetItem; class QMovie; namespa...
1,519
C++
.h
50
26.42
119
0.756384
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,424
actionhandlerdialog.h
hluk_CopyQ/src/gui/actionhandlerdialog.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ACTIONHANDLERDIALOG_H #define ACTIONHANDLERDIALOG_H #include <QDialog> class ActionHandler; class QAbstractItemModel; namespace Ui { class ActionHandlerDialog; } class ActionHandlerDialog final : public QDialog { public: explicit ActionHandlerDialog(ActionHa...
504
C++
.h
18
25.944444
117
0.820459
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,425
traymenu.h
hluk_CopyQ/src/gui/traymenu.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef TRAYMENU_H #define TRAYMENU_H #include "common/navigationstyle.h" #include <QMenu> #include <QPointer> #include <QTimer> class QAction; class QModelIndex; class TrayMenu final : public QMenu { Q_OBJECT public: explicit TrayMenu(QWidget *parent = nullptr)...
2,609
C++
.h
67
34.41791
90
0.759363
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,426
notificationnative.h
hluk_CopyQ/src/gui/notificationnative/notificationnative.h
// SPDX-License-Identifier: GPL-3.0-or-later #pragma once class Notification; class QColor; class QObject; Notification *createNotificationNative(const QColor &iconColor, QObject *parent);
192
C++
.h
6
30.5
81
0.830601
hluk/CopyQ
8,577
439
420
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,427
common_auth.cpp
s3fs-fuse_s3fs-fuse/src/common_auth.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
1,737
C++
.cpp
53
30
82
0.644391
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,428
s3fs_xml.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_xml.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
16,949
C++
.cpp
436
31.130734
198
0.574833
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,429
test_curl_util.cpp
s3fs-fuse_s3fs-fuse/src/test_curl_util.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2020 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
5,247
C++
.cpp
149
31.416107
109
0.640945
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
18,430
s3fs_help.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_help.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
35,222
C++
.cpp
668
47.992515
96
0.608829
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,431
fdcache_pseudofd.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_pseudofd.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,927
C++
.cpp
91
29.054945
82
0.632884
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,432
test_page_list.cpp
s3fs-fuse_s3fs-fuse/src/test_page_list.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2021 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
2,550
C++
.cpp
66
36.045455
103
0.724808
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
18,433
mpu_util.cpp
s3fs-fuse_s3fs-fuse/src/mpu_util.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
5,281
C++
.cpp
137
31.49635
147
0.553366
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,435
fdcache_untreated.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_untreated.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
8,463
C++
.cpp
225
29.866667
160
0.582664
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,437
s3fs_threadreqs.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_threadreqs.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
27,662
C++
.cpp
647
37.102009
288
0.647253
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,438
sighandlers.cpp
s3fs-fuse_s3fs-fuse/src/sighandlers.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
6,376
C++
.cpp
216
24.949074
142
0.620369
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,439
s3fs_util.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_util.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
14,681
C++
.cpp
487
24.057495
118
0.535502
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,440
addhead.cpp
s3fs-fuse_s3fs-fuse/src/addhead.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
7,189
C++
.cpp
217
26.345622
126
0.532786
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,441
s3fs_global.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_global.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
1,627
C++
.cpp
43
36.325581
82
0.63038
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
18,443
fdcache_entity.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_entity.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
97,109
C++
.cpp
2,370
32.48481
283
0.587878
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,445
cache.cpp
s3fs-fuse_s3fs-fuse/src/cache.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
25,790
C++
.cpp
774
26.293282
167
0.570608
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,446
s3fs.cpp
s3fs-fuse_s3fs-fuse/src/s3fs.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
206,546
C++
.cpp
5,076
32.196217
310
0.574936
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,447
gnutls_auth.cpp
s3fs-fuse_s3fs-fuse/src/gnutls_auth.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
11,350
C++
.cpp
330
29.484848
145
0.584033
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,449
test_string_util.cpp
s3fs-fuse_s3fs-fuse/src/test_string_util.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2014 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
9,093
C++
.cpp
177
47.316384
145
0.642849
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,450
string_util.cpp
s3fs-fuse_s3fs-fuse/src/string_util.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
21,146
C++
.cpp
615
27.982114
175
0.533848
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,451
metaheader.cpp
s3fs-fuse_s3fs-fuse/src/metaheader.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
11,267
C++
.cpp
313
28.191693
123
0.554722
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,452
s3fs_cred.cpp
s3fs-fuse_s3fs-fuse/src/s3fs_cred.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
50,366
C++
.cpp
1,407
29.404407
262
0.606092
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,453
fdcache_stat.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_stat.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
8,024
C++
.cpp
256
26.382813
165
0.604961
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
18,454
curl_multi.cpp
s3fs-fuse_s3fs-fuse/src/curl_multi.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
13,209
C++
.cpp
342
29.850877
261
0.588006
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,455
fdcache_fdinfo.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_fdinfo.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
42,906
C++
.cpp
972
35.658436
374
0.606013
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,456
openssl_auth.cpp
s3fs-fuse_s3fs-fuse/src/openssl_auth.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
11,827
C++
.cpp
328
31.29878
169
0.596382
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,457
threadpoolman.cpp
s3fs-fuse_s3fs-fuse/src/threadpoolman.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
6,943
C++
.cpp
220
26.477273
127
0.635412
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,458
curl.cpp
s3fs-fuse_s3fs-fuse/src/curl.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
159,487
C++
.cpp
4,005
31.982022
290
0.595462
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,459
fdcache_auto.cpp
s3fs-fuse_s3fs-fuse/src/fdcache_auto.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,309
C++
.cpp
110
26.409091
195
0.659441
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,460
syncfiller.cpp
s3fs-fuse_s3fs-fuse/src/syncfiller.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,244
C++
.cpp
66
30.666667
99
0.647465
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,461
fdcache.cpp
s3fs-fuse_s3fs-fuse/src/fdcache.cpp
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
36,959
C++
.cpp
951
31.460568
285
0.577354
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,462
mknod_test.cc
s3fs-fuse_s3fs-fuse/test/mknod_test.cc
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2021 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
6,207
C++
.cc
170
31.088235
113
0.572472
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,463
junk_data.cc
s3fs-fuse_s3fs-fuse/test/junk_data.cc
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2021 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
1,586
C++
.cc
46
31.434783
82
0.677734
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,464
cr_filename.cc
s3fs-fuse_s3fs-fuse/test/cr_filename.cc
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2021 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
2,307
C++
.cc
69
29.971014
82
0.67713
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,465
truncate_read_file.cc
s3fs-fuse_s3fs-fuse/test/truncate_read_file.cc
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2021 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
2,558
C++
.cc
73
31.369863
106
0.667609
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,466
write_multiblock.cc
s3fs-fuse_s3fs-fuse/test/write_multiblock.cc
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
8,037
C++
.cc
227
28.264317
143
0.526857
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
18,467
fdcache_fdinfo.h
s3fs-fuse_s3fs-fuse/src/fdcache_fdinfo.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
5,354
C++
.h
98
49.153061
287
0.662149
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,468
mpu_util.h
s3fs-fuse_s3fs-fuse/src/mpu_util.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,106
C++
.h
57
35.052632
82
0.587255
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,469
s3fs_xml.h
s3fs-fuse_s3fs-fuse/src/s3fs_xml.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,335
C++
.h
50
45.16
199
0.724077
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,470
fdcache_entity.h
s3fs-fuse_s3fs-fuse/src/fdcache_entity.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
13,265
C++
.h
225
50.751111
182
0.661287
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,471
s3fs_cred.h
s3fs-fuse_s3fs-fuse/src/s3fs_cred.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
8,284
C++
.h
162
44.302469
155
0.661264
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,472
fdcache_pseudofd.h
s3fs-fuse_s3fs-fuse/src/fdcache_pseudofd.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,222
C++
.h
61
32.967213
82
0.652862
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,473
fdcache_auto.h
s3fs-fuse_s3fs-fuse/src/fdcache_auto.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,352
C++
.h
62
34.967742
198
0.695614
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,474
fdcache_page.h
s3fs-fuse_s3fs-fuse/src/fdcache_page.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
4,952
C++
.h
120
36.55
177
0.633832
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,475
metaheader.h
s3fs-fuse_s3fs-fuse/src/metaheader.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,695
C++
.h
66
39.166667
113
0.664506
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,476
s3objlist.h
s3fs-fuse_s3fs-fuse/src/s3objlist.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,014
C++
.h
70
39.357143
101
0.64405
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,477
curl_util.h
s3fs-fuse_s3fs-fuse/src/curl_util.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,211
C++
.h
50
42.7
114
0.719461
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,478
psemaphore.h
s3fs-fuse_s3fs-fuse/src/psemaphore.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,112
C++
.h
99
25.383838
94
0.591653
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,479
s3fs_util.h
s3fs-fuse_s3fs-fuse/src/s3fs_util.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,733
C++
.h
102
34.205882
103
0.679036
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,480
sighandlers.h
s3fs-fuse_s3fs-fuse/src/sighandlers.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,312
C++
.h
65
30.984615
82
0.671005
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,481
curl.h
s3fs-fuse_s3fs-fuse/src/curl.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
22,499
C++
.h
385
51.14026
289
0.656704
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,482
s3fs_auth.h
s3fs-fuse_s3fs-fuse/src/s3fs_auth.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,300
C++
.h
58
38.224138
146
0.699329
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,483
cache.h
s3fs-fuse_s3fs-fuse/src/cache.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
8,054
C++
.h
188
36.840426
131
0.622066
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,484
s3fs_help.h
s3fs-fuse_s3fs-fuse/src/s3fs_help.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
1,300
C++
.h
37
33.540541
82
0.664019
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,485
fdcache_untreated.h
s3fs-fuse_s3fs-fuse/src/fdcache_untreated.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,617
C++
.h
62
37.903226
179
0.675984
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,486
s3fs_threadreqs.h
s3fs-fuse_s3fs-fuse/src/s3fs_threadreqs.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
6,318
C++
.h
185
31.935135
143
0.639843
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,487
types.h
s3fs-fuse_s3fs-fuse/src/types.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
10,045
C++
.h
321
26.847352
256
0.570661
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,488
s3fs_extcred.h
s3fs-fuse_s3fs-fuse/src/s3fs_extcred.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Takeshi Nakatani <ggtakec@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of ...
5,740
C++
.h
131
42.580153
170
0.63456
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,489
string_util.h
s3fs-fuse_s3fs-fuse/src/string_util.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
4,953
C++
.h
129
36.573643
119
0.637687
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,490
common.h
s3fs-fuse_s3fs-fuse/src/common.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,022
C++
.h
77
37.441558
82
0.624104
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,491
s3fs.h
s3fs-fuse_s3fs-fuse/src/s3fs.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,280
C++
.h
64
33.171875
82
0.721141
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,492
addhead.h
s3fs-fuse_s3fs-fuse/src/addhead.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,054
C++
.h
82
33.243902
108
0.652909
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,493
threadpoolman.h
s3fs-fuse_s3fs-fuse/src/threadpoolman.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,199
C++
.h
90
31.933333
103
0.661708
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,494
curl_multi.h
s3fs-fuse_s3fs-fuse/src/curl_multi.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
3,618
C++
.h
83
39.144578
118
0.684569
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,495
test_util.h
s3fs-fuse_s3fs-fuse/src/test_util.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2014 Andrew Gaul <andrew@gaul.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Lic...
3,955
C++
.h
94
38.595745
152
0.601871
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,496
fdcache.h
s3fs-fuse_s3fs-fuse/src/fdcache.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
6,185
C++
.h
120
46.291667
185
0.694265
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,497
fdcache_stat.h
s3fs-fuse_s3fs-fuse/src/fdcache_stat.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,260
C++
.h
60
33.333333
111
0.673516
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,498
syncfiller.h
s3fs-fuse_s3fs-fuse/src/syncfiller.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
2,055
C++
.h
59
31.627119
84
0.667505
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,499
s3fs_logger.h
s3fs-fuse_s3fs-fuse/src/s3fs_logger.h
/* * s3fs - FUSE-based file system backed by Amazon S3 * * Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the Li...
11,011
C++
.h
237
38.481013
243
0.522626
s3fs-fuse/s3fs-fuse
8,508
1,013
270
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
18,500
crypto-openssl-10.cpp
AGWA_git-crypt/crypto-openssl-10.cpp
/* * Copyright 2012, 2014 Andrew Ayer * * This file is part of git-crypt. * * git-crypt is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later ...
3,430
C++
.cpp
102
31.813725
91
0.737764
AGWA/git-crypt
8,224
478
134
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
18,501
coprocess-unix.cpp
AGWA_git-crypt/coprocess-unix.cpp
/* * Copyright 2015 Andrew Ayer * * This file is part of git-crypt. * * git-crypt is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later versio...
4,775
C++
.cpp
173
25.427746
93
0.686424
AGWA/git-crypt
8,224
478
134
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
18,502
key.cpp
AGWA_git-crypt/key.cpp
/* * Copyright 2014 Andrew Ayer * * This file is part of git-crypt. * * git-crypt is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later versio...
8,331
C++
.cpp
306
24.660131
91
0.669919
AGWA/git-crypt
8,224
478
134
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
18,503
util.cpp
AGWA_git-crypt/util.cpp
/* * Copyright 2012, 2014 Andrew Ayer * * This file is part of git-crypt. * * git-crypt is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later ...
4,077
C++
.cpp
136
27.955882
120
0.695153
AGWA/git-crypt
8,224
478
134
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false