content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport Foundation\n\n// declare our empty protocol, and conformance, for typing\npublic protocol JSValue {}\nextension String: JSValue {}\nextension Bool: JSValue {}\nextensi...
dataset_sample\swift\tauri-apps_tauri\crates\tauri\mobile\ios-api\Sources\Tauri\JSTypes.swift
JSTypes.swift
Swift
3,614
0.95
0.065041
0.083333
react-lib
654
2023-08-21T11:38:58.045543
MIT
false
a507207bb030a90c7501cb17b8711729
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport os.log\nimport UIKit\n\n/// Wrapper class for os_log function\npublic class Logger {\n private static var _enabled = false\n public static var enabled: Bool {\n g...
dataset_sample\swift\tauri-apps_tauri\crates\tauri\mobile\ios-api\Sources\Tauri\Logger.swift
Logger.swift
Swift
1,563
0.95
0.172414
0.25
node-utils
111
2024-12-11T00:14:26.820853
BSD-3-Clause
false
f637b92f3047fbf591f08ea248be1db0
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport Foundation\nimport SwiftRs\nimport UIKit\nimport WebKit\nimport os.log\n\nclass PluginHandle {\n var instance: Plugin\n var loaded = false\n\n init(plugin: Plugin) ...
dataset_sample\swift\tauri-apps_tauri\crates\tauri\mobile\ios-api\Sources\Tauri\Tauri.swift
Tauri.swift
Swift
3,982
0.95
0.089552
0.057851
python-kit
252
2024-04-07T22:20:15.741448
MIT
false
cc076177a6b974ca731edb3f72cc6564
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport UIKit\n\npublic class UIUtils {\n public static func centerPopover(rootViewController: UIViewController?, popoverController: UIViewController) {\n if let vie...
dataset_sample\swift\tauri-apps_tauri\crates\tauri\mobile\ios-api\Sources\Tauri\UiUtils.swift
UiUtils.swift
Swift
742
0.95
0.133333
0.230769
python-kit
533
2023-10-24T21:09:22.461575
GPL-3.0
false
530eca83be47789d1c8dd701cdf44a8c
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport WebKit\nimport os.log\n\nstruct RegisterListenerArgs: Decodable {\n let event: String\n let handler: Channel\n}\n\nstruct RemoveListenerArgs: Decodable {\n let even...
dataset_sample\swift\tauri-apps_tauri\crates\tauri\mobile\ios-api\Sources\Tauri\Plugin\Plugin.swift
Plugin.swift
Swift
1,991
0.95
0.135802
0.047619
react-lib
247
2024-05-10T12:48:54.703182
Apache-2.0
false
ebea977cc622d6145c1306a33543911f
// swift-tools-version:5.3\n// The swift-tools-version declares the minimum version of Swift required to build this package.\n\nimport PackageDescription\n\nlet package = Package(\n name: "tauri-plugin-{{ plugin_name }}",\n platforms: [\n .macOS(.v10_13),\n .iOS(.v13),\n ],\n products: [\n ...
dataset_sample\swift\tauri-apps_tauri\crates\tauri-cli\templates\plugin\ios-spm\Package.swift
Package.swift
Swift
1,101
0.95
0
0.166667
awesome-app
804
2024-08-13T03:56:10.766789
GPL-3.0
false
89d64ce46b1b2bd607f5fe8f77147b31
// swift-tools-version:5.3\n// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n\nimport PackageDescription\n\nlet package = Package(\n name: "tauri-plugin-sample",\n platforms: [\n .macOS(.v10_13),\n .iOS(.v...
dataset_sample\swift\tauri-apps_tauri\examples\api\src-tauri\tauri-plugin-sample\ios\Package.swift
Package.swift
Swift
1,201
0.95
0
0.242424
node-utils
448
2024-04-24T14:25:45.537211
Apache-2.0
false
a6734d4f390f348698ba35e9e2aec5bd
// swift-tools-version:6.0\n// The swift-tools-version declares the minimum version of Swift required to build this package.\n\nimport PackageDescription\n\nlet package = Package(\n name: "server",\n platforms: [\n .macOS("10.15")\n ],\n dependencies: [\n // Dependencies declare other packages...
dataset_sample\swift\the-benchmarker_web-frameworks\flying-fox\Package.swift
Package.swift
Swift
1,322
0.95
0.1
0.285714
node-utils
249
2025-05-09T05:37:36.471589
BSD-3-Clause
false
69fd5dbea08de5a9e5a4a0713a9e7c98
import FlyingFox\n\n@main\nstruct Server {\n static func main() async throws {\n let server = HTTPServer(port: 3000)\n\n await server.appendRoute("GET /") { _ in\n return HTTPResponse(statusCode: .ok)\n }\n\n await server.appendRoute("GET /user/:id") { request in\n l...
dataset_sample\swift\the-benchmarker_web-frameworks\flying-fox\Sources\server\Server.swift
Server.swift
Swift
601
0.85
0.043478
0
node-utils
476
2025-05-05T12:58:16.813577
Apache-2.0
false
25d7b7310af8476ad73b26587f8c4b71
// swift-tools-version:5.10\n// The swift-tools-version declares the minimum version of Swift required to build this package.\n\nimport PackageDescription\n\nlet package = Package(\n name: "server",\n platforms: [.macOS(.v14)], // This is for development on macOS\n dependencies: [\n .package(url: "https...
dataset_sample\swift\the-benchmarker_web-frameworks\hummingbird-framework\Package.swift
Package.swift
Swift
1,062
0.95
0.153846
0.208333
react-lib
155
2023-10-29T02:19:30.942723
MIT
false
dd9c37e851b5a0b89c86c440448fed38
import Hummingbird\n\n@main\nstruct Server {\n static func main() async throws {\n let env = Environment()\n let serverHostName = env.get("SERVER_HOSTNAME") ?? "127.0.0.1"\n let serverPort = env.get("SERVER_PORT", as: Int.self) ?? 8080\n\n let router = Router()\n router.get("/") { ...
dataset_sample\swift\the-benchmarker_web-frameworks\hummingbird-framework\Sources\server\Server.swift
Server.swift
Swift
748
0.85
0.033333
0
awesome-app
516
2024-03-10T02:51:00.829037
Apache-2.0
false
d5e7c6a358c580a2c842b9c601b5770e
// swift-tools-version:5.1\n\nimport PackageDescription\n\nlet package = Package(\n name: "server",\n dependencies: [\n .package(url: "https://github.com/Kitura/Kitura", .upToNextMinor(from: "3.0.1"))\n ],\n targets: [\n .target(\n name: "server", \n dependencies: ["Kitur...
dataset_sample\swift\the-benchmarker_web-frameworks\kitura\Package.swift
Package.swift
Swift
788
0.95
0.136364
0.2
react-lib
901
2023-10-25T04:13:01.351346
MIT
false
c729a16f6465db1c20c590a7bb71f09c
import Kitura\n\nlet router = Router()\n\nrouter.get("/") { _, res, next in\n try res.send("")\n next()\n}\n\n/**\n In this case, the path /:id(\\d+) specifies that only digits should be matched.\n This path will be matched for /123, but not / or /abc.\n */\nrouter.get("/user/:id(\\d+)") { req, res, next in\n ...
dataset_sample\swift\the-benchmarker_web-frameworks\kitura\Sources\server\main.swift
main.swift
Swift
523
0.95
0.153846
0.095238
react-lib
395
2025-05-02T17:22:35.470922
BSD-3-Clause
false
956af5d680fd53b9750b58185d0d212b
// swift-tools-version:5.0\n\nimport PackageDescription\n\nlet package = Package(\n name: "MyServer",\n dependencies: [\n .package(url: "https://github.com/httpswift/swifter.git", .upToNextMinor(from: "1.5.0"))\n ],\n targets: [\n .target(\n name: "server", \n dependencie...
dataset_sample\swift\the-benchmarker_web-frameworks\swifter-framework\Package.swift
Package.swift
Swift
816
0.95
0.136364
0.2
python-kit
903
2024-05-16T21:23:02.914462
Apache-2.0
false
3ce1a5f9b8d97387b0a9120753b8bb8b
import Swifter\nimport Dispatch\n\nlet server = HttpServer()\n\nserver.GET["/"] = { _ in\n return HttpResponse.ok(.text(""))\n}\n\nserver.GET["/user/:id"] = { request in\n let userId = request.params[":id"] ?? ""\n return HttpResponse.ok(.text("\(userId)"))\n}\n\nserver.POST["/user"] = { _ in\n return HttpR...
dataset_sample\swift\the-benchmarker_web-frameworks\swifter-framework\Sources\server\main.swift
main.swift
Swift
598
0.85
0.111111
0
react-lib
280
2023-08-16T21:32:02.803700
GPL-3.0
false
29303302b1318373cbe955d602157538
// swift-tools-version:5.2\n// The swift-tools-version declares the minimum version of Swift required to build this package.\n\nimport PackageDescription\n\nlet package = Package(\n name: "server",\n platforms: [\n .macOS("10.15")\n ],\n dependencies: [\n // Dependencies declare other packages...
dataset_sample\swift\the-benchmarker_web-frameworks\vapor-framework\Package.swift
Package.swift
Swift
1,313
0.95
0.096774
0.285714
vue-tools
149
2024-07-03T20:43:25.995213
GPL-3.0
false
812341a5557e9d4a71c9721476aad1b6
import Vapor\n\nvar env = Environment(name: Environment.get("VAPOR_ENV") ?? "development")\ntry LoggingSystem.bootstrap(from: &env)\nlet app = Application()\ndefer { app.shutdown() }\napp.middleware = .init()\n\napp.logger.logLevel = .critical\n\napp.get { _ in\n Response()\n}\n\napp.get("user", ":userID") { req in\...
dataset_sample\swift\the-benchmarker_web-frameworks\vapor-framework\Sources\server\main.swift
main.swift
Swift
721
0.85
0.088235
0
vue-tools
835
2025-06-22T03:05:23.012518
GPL-3.0
false
9a4b9f893be741a81ab602bc36e7ff13
//\n// AppDelegate.swift\n// DylibExample\n//\n// Created by Nathan Horrigan on 15/08/2021.\n//\n\nimport UIKit\n\n@main\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n\n\n func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any...
dataset_sample\swift\wasmerio_wasmer\tests\integration\ios\DylibExample\DylibExample\AppDelegate.swift
AppDelegate.swift
Swift
1,357
0.95
0.083333
0.52
node-utils
69
2023-12-19T14:40:19.515372
MIT
true
60567ea09ff40b95868c152e2fd250a6
//\n// SceneDelegate.swift\n// DylibExample\n//\n// Created by Nathan Horrigan on 15/08/2021.\n//\n\nimport UIKit\n\nclass SceneDelegate: UIResponder, UIWindowSceneDelegate {\n\n var window: UIWindow?\n\n\n func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.C...
dataset_sample\swift\wasmerio_wasmer\tests\integration\ios\DylibExample\DylibExample\SceneDelegate.swift
SceneDelegate.swift
Swift
2,300
0.95
0.019231
0.564103
vue-tools
954
2024-07-08T02:02:09.899359
Apache-2.0
true
21ab9933c1d9a87a7ca8b5c14c6e5d26
//\n// ViewController.swift\n// DylibExample\n//\n// Created by Nathan Horrigan on 15/08/2021.\n//\n\nimport UIKit\n\nclass ViewController: UIViewController {\n @IBOutlet weak var label: UILabel!\n \n override func viewDidLoad() {\n super.viewDidLoad()\n let sum = calculate_sum(1, 3)\n ...
dataset_sample\swift\wasmerio_wasmer\tests\integration\ios\DylibExample\DylibExample\ViewController.swift
ViewController.swift
Swift
354
0.95
0.055556
0.4
vue-tools
33
2025-03-28T03:35:21.395677
Apache-2.0
true
cc66953888c9cf05b80ef5ee41e16463
// swift-tools-version:5.3\nimport PackageDescription\n\nlet package = Package(\n name: "TreeSitterCmake",\n platforms: [.macOS(.v10_13), .iOS(.v11)],\n products: [\n .library(name: "TreeSitterCmake", targets: ["TreeSitterCmake"]),\n ],\n dependencies: [],\n targets: [\n .target(name: "T...
dataset_sample\swift\Wilfred_difftastic\vendored_parsers\tree-sitter-cmake\Package.swift
Package.swift
Swift
1,527
0.95
0.020833
0.042553
node-utils
366
2024-10-29T02:24:28.021204
BSD-3-Clause
false
abd5eeb4f030109b4d1231a505b3b00b
// swift-tools-version:5.3\n\nimport PackageDescription\n\nlet package = Package(\n name: "TreeSitterElm",\n platforms: [.macOS(.v10_13), .iOS(.v11)],\n products: [\n .library(name: "TreeSitterElm", targets: ["TreeSitterElm"]),\n ],\n dependencies: [],\n targets: [\n .target(name: "TreeS...
dataset_sample\swift\Wilfred_difftastic\vendored_parsers\tree-sitter-elm\Package.swift
Package.swift
Swift
1,263
0.95
0
0.02439
react-lib
38
2023-11-22T03:26:01.858853
Apache-2.0
false
762db482d073a011cc40cf88367d66df
// swift-tools-version:5.3\nimport PackageDescription\n\nlet package = Package(\n name: "TreeSitterLatex",\n platforms: [.macOS(.v10_13), .iOS(.v11)],\n products: [\n .library(name: "TreeSitterLatex", targets: ["TreeSitterLatex"]),\n ],\n dependencies: [],\n targets: [\n .target(name: "T...
dataset_sample\swift\Wilfred_difftastic\vendored_parsers\tree-sitter-latex\Package.swift
Package.swift
Swift
1,480
0.95
0
0.021277
node-utils
992
2024-12-24T07:22:10.682461
Apache-2.0
false
b7431cbdb2f44968ef948c9617988692
// swift-tools-version:5.3\n\nimport PackageDescription\n\nlet package = Package(\n name: "TreeSitterPerl",\n platforms: [.macOS(.v10_13), .iOS(.v11)],\n products: [\n .library(name: "TreeSitterPerl", targets: ["TreeSitterPerl"]),\n ],\n dependencies: [],\n targets: [\n .target(name: "Tr...
dataset_sample\swift\Wilfred_difftastic\vendored_parsers\tree-sitter-perl\Package.swift
Package.swift
Swift
1,022
0.95
0
0.030303
awesome-app
960
2024-12-08T01:26:26.542928
MIT
false
1ec84b02dbf5ef69a480788cbd072ec4
// swift-tools-version:5.3\nimport PackageDescription\n\nlet package = Package(\n name: "TreeSitterSmali",\n platforms: [.macOS(.v10_13), .iOS(.v11)],\n products: [\n .library(name: "TreeSitterSmali", targets: ["TreeSitterSmali"]),\n ],\n dependencies: [],\n targets: [\n .target(name: "T...
dataset_sample\swift\Wilfred_difftastic\vendored_parsers\tree-sitter-smali\Package.swift
Package.swift
Swift
1,095
0.95
0
0.027778
node-utils
248
2023-09-07T07:37:46.116540
BSD-3-Clause
false
0c14f54af4706c39e25eeefa708ba4cd
//\n// Generated file. Do not edit.\n//\n\nimport FlutterMacOS\nimport Foundation\n\nimport desktop_drop\nimport device_info_plus\nimport hotkey_manager_macos\nimport macos_window_utils\nimport path_provider_foundation\nimport protocol_handler_macos\nimport syncfusion_pdfviewer_macos\nimport url_launcher_macos\n\nfunc...
dataset_sample\swift\Wox-launcher_Wox\wox.ui.flutter\wox\macos\Flutter\GeneratedPluginRegistrant.swift
GeneratedPluginRegistrant.swift
Swift
1,153
0.95
0
0.130435
node-utils
786
2025-04-07T06:01:56.879678
MIT
false
5523ea73c21a847b17265901d54dba11
import Cocoa\nimport FlutterMacOS\n\n@main\nclass AppDelegate: FlutterAppDelegate {\n // Store the previous active application\n private var previousActiveApp: NSRunningApplication?\n // Flutter method channel for window events\n private var windowEventChannel: FlutterMethodChannel?\n \n private func log(_ messag...
dataset_sample\swift\Wox-launcher_Wox\wox.ui.flutter\wox\macos\Runner\AppDelegate.swift
AppDelegate.swift
Swift
9,007
0.95
0.094828
0.102041
vue-tools
925
2025-02-19T04:06:43.580056
MIT
false
b1826526e50333a57f2ba1dc6a55470e
import Cocoa\nimport FlutterMacOS\n\nclass MainFlutterWindow: NSPanel {\n var isReadyToShow: Bool = false\n \n override func awakeFromNib() {\n let flutterViewController = FlutterViewController()\n let windowFrame = self.frame\n self.contentViewController = flutterViewController\n self.setFrame(windowFra...
dataset_sample\swift\Wox-launcher_Wox\wox.ui.flutter\wox\macos\Runner\MainFlutterWindow.swift
MainFlutterWindow.swift
Swift
624
0.85
0.083333
0
python-kit
605
2024-06-28T20:21:12.461154
BSD-3-Clause
false
7c353baf1b192d5af95596b32a254d9c
name: 'Bug Report'\ndescription: 'Report an Bug'\ntitle: '[Bug] '\nassignees: wanghe-fit2cloud\nbody:\n - type: markdown\n attributes:\n value: "## Contact Information"\n - type: input\n validations:\n required: false\n attributes:\n label: "Contact Information"\n description: "The ways t...
dataset_sample\yaml\1Panel-dev_1Panel\.github\ISSUE_TEMPLATE\1_bug_report.yml
1_bug_report.yml
YAML
1,602
0.95
0
0
python-kit
184
2024-02-09T23:29:22.350345
GPL-3.0
false
fa41ca8a70e7650f76d537d8a1f11130
name: 'Feature Request'\ndescription: 'Suggest an idea'\ntitle: '[Feature] '\nassignees: wanghe-fit2cloud\nbody:\n - type: markdown\n attributes:\n value: "## Environment Information"\n - type: input\n validations:\n required: true\n attributes:\n label: "1Panel Version"\n description: "L...
dataset_sample\yaml\1Panel-dev_1Panel\.github\ISSUE_TEMPLATE\2_feature_request.yml
2_feature_request.yml
YAML
925
0.95
0.035714
0
python-kit
110
2024-05-10T00:14:24.796151
GPL-3.0
false
1cdcbdea9efa0a57076950312f1ad2ad
blank_issues_enabled: false\ncontact_links:\n - name: Questions & Discussions\n url: https://github.com/1Panel-dev/1Panel/discussions\n about: Raise questions about the installation, deployment, use and other aspects of the project.\n
dataset_sample\yaml\1Panel-dev_1Panel\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
236
0.8
0
0
vue-tools
559
2023-08-08T18:29:10.974856
BSD-3-Clause
false
368e7829051db83e00ce2d48fe32294b
name: General PR Handling for 1Panel\non: pull_request\npermissions:\n pull-requests: write\njobs:\n generic_handler:\n name: Add Labels to PR\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n - uses: actions-ecosystem/action-add-labels@v1\n with:\n github_token: ${{...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\add-labels-for-pr.yml
add-labels-for-pr.yml
YAML
373
0.7
0.071429
0
vue-tools
19
2025-06-20T21:15:35.937987
BSD-3-Clause
false
1d0b355a24172d7f612788103a84bae8
name: Create Release And Upload assets\non:\n push:\n tags:\n - 'v*'\njobs:\n create-release:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout Code\n uses: actions/checkout@v4\n - name: Setup Node\n uses: actions/setup-node@v4\n with:\n node-version: '20.2'\n ...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\build-publish-to-oss.yml
build-publish-to-oss.yml
YAML
1,510
0.8
0.021277
0
vue-tools
814
2023-11-14T11:26:29.420717
GPL-3.0
false
311f7918c261caa8d3798fb5a815e7f8
name: Create Release And Upload Cloudflare R2\non:\n push:\n tags:\n - 'v*'\njobs:\n create-release:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout Code\n uses: actions/checkout@v4\n - name: Setup Node\n uses: actions/setup-node@v4\n with:\n node-version: '2...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\build-publish-to-r2.yml
build-publish-to-r2.yml
YAML
1,337
0.8
0.022222
0
react-lib
198
2024-10-02T07:45:22.241575
MIT
false
82b393d31f39905b42e593d0e6cbbb03
name: Issue Translator\non: \n issue_comment: \n types: [created]\n issues: \n types: [opened]\njobs:\n build:\n runs-on: ubuntu-latest\n steps:\n - uses: usthe/issues-translate-action@v2.7\n with:\n IS_MODIFY_TITLE: true\n BOT_GITHUB_TOKEN: ${{ secrets.ISSUE_TRANSLATOR_TOKE...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\issue-translator.yml
issue-translator.yml
YAML
313
0.7
0
0
node-utils
58
2024-05-25T09:57:16.003491
Apache-2.0
false
ab245600862f3878a65ba2a209b2d64c
name: LLM Code Review\npermissions:\n contents: read\n pull-requests: write\non:\n pull_request:\n types: [opened, reopened, synchronize]\njobs:\n llm-code-review:\n runs-on: ubuntu-latest\n steps:\n - uses: fit2cloud/LLM-CodeReview-Action@main\n env:\n GITHUB_TOKEN: ${{ secrets.FIT2CL...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\llm-code-review.yml
llm-code-review.yml
YAML
974
0.8
0.04
0.04
vue-tools
678
2025-03-02T16:40:54.736940
GPL-3.0
false
3ec73085127ec012a8df280ac341a1ee
name: SonarCloud Scan\non:\n push:\n branches:\n - dev\n pull_request:\n types: [opened, synchronize, reopened]\njobs:\n sonarcloud:\n name: SonarCloud\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n with:\n fetch-depth: 0\n - name: SonarCloud Scan\n ...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\sonarcloud-scan.yml
sonarcloud-scan.yml
YAML
473
0.7
0
0
vue-tools
581
2024-10-03T05:30:21.906870
Apache-2.0
false
67a56b5664bc720b8fcc797953ab672c
name: Synchronize to Gitee\non: [push]\njobs:\n repo-sync:\n runs-on: ubuntu-latest\n steps:\n - name: Mirror the Github organization repos to Gitee.\n uses: Yikun/hub-mirror-action@master\n with:\n src: 'github/1Panel-dev'\n dst: 'gitee/fit2cloud-feizhiyun'\n dst_ke...
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\sync2gitee.yml
sync2gitee.yml
YAML
455
0.7
0
0
node-utils
907
2024-05-31T15:28:37.158502
BSD-3-Clause
false
faec7d151cd177e9215779ea3bc49a16
name: Typos Check\non: pull_request\njobs:\n run:\n name: Spell Check with Typos\n runs-on: ubuntu-latest\n steps:\n - name: Checkout Actions Repository\n uses: actions/checkout@v2\n - name: Check spelling\n uses: crate-ci/typos@master\n
dataset_sample\yaml\1Panel-dev_1Panel\.github\workflows\tyops-check.yml
tyops-check.yml
YAML
252
0.7
0
0
awesome-app
219
2025-05-27T20:04:22.126735
Apache-2.0
false
775de25bee9ea28e02cd9edd07bbee52
ErrInvalidParams: "Ralat parameter permintaan: {{ .detail }}"\nErrTokenParse: "Ralat penjanaan token: {{ .detail }}"\nErrInitialPassword: "Ralat kata laluan awal"\nErrInternalServer: "Ralat dalaman perkhidmatan: {{ .detail }}"\nErrRecordExist: "Rekod sudah wujud"\nErrRecordNotFound: "Rekod tidak dijumpai"\nErrStructTra...
dataset_sample\yaml\1Panel-dev_1Panel\backend\i18n\lang\ms.yml
ms.yml
YAML
17,350
0.95
0
0.072727
python-kit
121
2025-04-04T07:14:14.965835
Apache-2.0
false
8838d94fb4afc1f95d997ee0b6d44fe9
additionalProperties:\n key: # The application's key, limited to English, used to create a folder in Linux\n name: # Application name\n tags:\n - Tool # Application tags, multiple tags are allowed. Refer to the tag list below\n shortDescZh: # Application description in Chinese, no more than 30 characters\n...
dataset_sample\yaml\1Panel-dev_1Panel\cmd\server\app\app_config.yml
app_config.yml
YAML
730
0.8
0
0
node-utils
234
2025-05-24T14:11:00.516021
BSD-3-Clause
false
d17162551ffa52bb915909237951b65a
additionalProperties:\n formFields:\n - default: 8080\n edit: true\n envKey: PANEL_APP_PORT_HTTP\n labelEn: Port\n labelZh: 端口\n required: true\n rule: paramPort\n type: number\n
dataset_sample\yaml\1Panel-dev_1Panel\cmd\server\app\app_param.yml
app_param.yml
YAML
211
0.85
0
0
python-kit
451
2024-01-13T02:27:28.795747
BSD-3-Clause
false
c3a6f72b48c6c6ebd03cf68dc68c043d
services:\n mcp-server:\n image: supercorp/supergateway:latest\n container_name: ${CONTAINER_NAME}\n restart: unless-stopped\n ports:\n - "${HOST_IP}:${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"\n command: [\n "--stdio", "${COMMAND}",\n "--port", "${PANEL_APP_PORT_HTTP}",\n "--base...
dataset_sample\yaml\1Panel-dev_1Panel\cmd\server\mcp\compose.yml
compose.yml
YAML
500
0.7
0
0
vue-tools
230
2024-06-24T00:39:24.685959
MIT
false
407fbbaf7e60258b994b5345d6950c17
codecov:\n branch: dev\n require_ci_to_pass: yes\n allow_coverage_offsets: true\n status:\n project:\n default:\n threshold: 1%\n
dataset_sample\yaml\abpframework_abp\codecov.yml
codecov.yml
YAML
140
0.85
0
0
react-lib
794
2025-05-27T09:46:22.293800
BSD-3-Clause
false
a875a12d50c98daa2716baed5ec61ddc
ui-angular:\n - npm/ng-packs/*\n - npm/ng-packs/**/*\n - npm/ng-packs/**/**/*\n - npm/ng-packs/**/**/**/*\n - npm/ng-packs/**/**/**/**/*\n - npm/ng-packs/**/**/**/**/**/*\n - templates/app/angular/*\n - templates/app/angular/**/*\n - templates/app/angular/**/**/*\n - templates/app/angular/**/**/**/*\n - temp...
dataset_sample\yaml\abpframework_abp\.github\labeler.yml
labeler.yml
YAML
443
0.8
0
0
react-lib
334
2024-12-25T09:07:44.138646
MIT
false
cb64f16a92be41346471453707f419dd
# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app\n\n# Number of days of inactivity before a closed issue or pull request is locked\ndaysUntilLock: 30\n\n# Skip issues and pull requests created before a given timestamp. Timestamp must\n# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to dis...
dataset_sample\yaml\abpframework_abp\.github\lock.yml
lock.yml
YAML
1,153
0.8
0.108108
0.678571
react-lib
40
2024-11-20T08:58:30.653119
BSD-3-Clause
false
a9bec34f3213c79adb1a4ca1118dc566
# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 60\n# Number of days of inactivity before a stale issue is closed\ndaysUntilClose: 7\n# Set to true to ignore issues in a milestone (defaults to false)\nexemptMilestones: true\n# Label to use when marking an issue as stale\nstaleLabel: inacti...
dataset_sample\yaml\abpframework_abp\.github\stale.yml
stale.yml
YAML
677
0.8
0.142857
0.4
node-utils
587
2023-12-26T00:56:14.934518
BSD-3-Clause
false
23c88501cbb144c4e5e6bad1ea91a5da
name: 🐞 Bug Report\ndescription: Create a report to help us improve\nlabels: [bug]\nbody:\n - type: markdown\n attributes:\n value: |\n We welcome bug reports! This template will help us gather the information we need to start the triage process.\n \n Please keep in mind that the GitHub i...
dataset_sample\yaml\abpframework_abp\.github\ISSUE_TEMPLATE\01_bug_report.yml
01_bug_report.yml
YAML
4,871
0.95
0.040541
0.006803
python-kit
601
2025-05-13T06:14:15.217351
GPL-3.0
false
ab1c54ea3e596340b55290f10e352cf7
name: 💡 Feature request\ndescription: Suggest an idea for this project\nlabels: [feature-request]\nbody:\n- type: checkboxes\n attributes:\n label: Is there an existing issue for this?\n description: Please search to see if an issue already exists for the feature you are requesting. (https://github.com/abpframe...
dataset_sample\yaml\abpframework_abp\.github\ISSUE_TEMPLATE\02_feature_request.yml
02_feature_request.yml
YAML
1,258
0.95
0.117647
0
vue-tools
227
2024-06-21T00:01:11.475488
MIT
false
fa4b2f1ad161b003ee0577c9c0c0d682
name: 🤠 ABP Studio\ndescription: Create a report to help us improve the ABP Studio\nlabels: [studio]\nbody:\n - type: markdown\n attributes:\n value: |\n We welcome bug reports! This template will help us gather the information we need to start the triage process.\n \n Please keep in mind...
dataset_sample\yaml\abpframework_abp\.github\ISSUE_TEMPLATE\03_studio.yml
03_studio.yml
YAML
3,503
0.95
0.042553
0.075269
vue-tools
410
2024-11-14T22:44:26.851350
BSD-3-Clause
false
2cf70c47dd7a67ce9dbe79b8de94c139
name: 💎 Article request\ndescription: Article suggestion you want to be published on community.abp.io\nlabels: [community-article-request]\nbody:\n - type: checkboxes\n id: searched\n attributes:\n label: Is there an existing article or article request for this?\n description: Please search to see if ...
dataset_sample\yaml\abpframework_abp\.github\ISSUE_TEMPLATE\04_article_request.yml
04_article_request.yml
YAML
936
0.95
0.1
0
vue-tools
432
2025-03-17T11:13:16.478614
BSD-3-Clause
false
bde2ad0eee1e5b7f83bb8564e2cb70e8
blank_issues_enabled: false\ncontact_links:\n - name: Issue with ABP Commercial\n url: https://abp.io/support/questions\n about: Please open ABP Commercial related issues at https://abp.io/support/questions.\n - name: Ask a question (community support)\n url: https://stackoverflow.com/questions/tagged/abp\...
dataset_sample\yaml\abpframework_abp\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
383
0.8
0
0
vue-tools
451
2025-06-09T00:39:24.023215
GPL-3.0
false
f44346f5ad06f15a89d407f3035c25c6
name: 'Angular'\non:\n pull_request:\n paths:\n - 'npm/ng-packs/**/*.ts'\n - 'npm/ng-packs/**/*.html'\n - 'npm/ng-packs/*.json'\n - '!npm/ng-packs/scripts/**'\n - '!npm/ng-packs/packages/schematics/**'\n branches:\n - 'rel-*'\n - 'dev'\n types:\n - opened\n - synch...
dataset_sample\yaml\abpframework_abp\.github\workflows\angular.yml
angular.yml
YAML
1,441
0.8
0.018519
0
node-utils
746
2024-05-02T16:48:37.564752
Apache-2.0
false
16da87412564f3e758ae33495906a05e
name: Merge branch dev with rel-9.2\non:\n push:\n branches:\n - rel-9.2\npermissions:\n contents: read\n\njobs:\n merge-dev-with-rel-9-2:\n permissions:\n contents: write # for peter-evans/create-pull-request to create branch\n pull-requests: write # for peter-evans/create-pull-request to cre...
dataset_sample\yaml\abpframework_abp\.github\workflows\auto-pr.yml
auto-pr.yml
YAML
1,304
0.8
0.052632
0
react-lib
311
2023-10-31T19:39:04.460358
GPL-3.0
false
2b84c2b440f20c62e4a4369701800927
name: cancel-workflow\non: [push]\npermissions:\n contents: read\n\njobs:\n cancel:\n permissions:\n actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows\n name: 'Cancel Previous Runs'\n runs-on: ubuntu-latest\n timeout-minutes: 3\n steps:\n - uses: styfle/canc...
dataset_sample\yaml\abpframework_abp\.github\workflows\cancel-workflow.yml
cancel-workflow.yml
YAML
443
0.8
0.058824
0
react-lib
568
2025-02-01T18:31:15.236983
MIT
false
34806255d2f189bbd745191261d8ee20
# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\nname: "CodeQL"\n\non:\n push:\n branches: [dev, rel-*]\n paths:\n ...
dataset_sample\yaml\abpframework_abp\.github\workflows\codeql-analysis.yml
codeql-analysis.yml
YAML
3,304
0.8
0.085106
0.353659
vue-tools
954
2024-08-16T02:48:13.833400
GPL-3.0
false
41c56030d154877148d0b43a5477938d
name: Compress Images\non:\n pull_request:\n paths:\n - "**.jpg"\n - "**.jpeg"\n - "**.png"\n - "**.webp"\n - "**.gif"\n types:\n - opened\n - synchronize\n - reopened\n - ready_for_review\njobs:\n build:\n if: github.event.pull_request.head.repo.full_name == gith...
dataset_sample\yaml\abpframework_abp\.github\workflows\image-compression.yml
image-compression.yml
YAML
629
0.7
0.037037
0
vue-tools
818
2025-06-24T11:08:19.825774
Apache-2.0
false
8d700b1ae0e034bef3ab237e2ad1f96e
name: Pull request labeler\non:\n schedule:\n - cron: '0 12 */1 * *'\npermissions:\n contents: read\njobs:\n labeler:\n permissions:\n pull-requests: write\n runs-on: ubuntu-latest\n steps:\n - uses: paulfantom/periodic-labeler@master\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TO...
dataset_sample\yaml\abpframework_abp\.github\workflows\labeler.yml
labeler.yml
YAML
367
0.7
0
0
react-lib
371
2025-02-06T16:44:00.062564
BSD-3-Clause
false
71c180f3249cbc5392d200caf2fc52c2
name: Create Release\n\non:\n workflow_dispatch:\n inputs:\n tag_name:\n description: 'Tag Name' \n required: true\n prerelease:\n description: 'Pre-release?' \n required: true\n branchName:\n description: 'Branch Name' \n required: true\n\njobs:\...
dataset_sample\yaml\abpframework_abp\.github\workflows\publish-release.yml
publish-release.yml
YAML
1,156
0.95
0
0.025641
awesome-app
366
2023-09-02T21:00:16.923967
GPL-3.0
false
17d9b159435a61904a77baf60d3db2a5
name: Update Latest Versions\n\non:\n release:\n types:\n - published\n \npermissions:\n contents: write\n pull-requests: write\n\njobs:\n update-versions:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout repository\n uses: actions/checkout@v2\n\n - name: Set up Python\n ...
dataset_sample\yaml\abpframework_abp\.github\workflows\update-versions.yml
update-versions.yml
YAML
696
0.7
0
0
python-kit
80
2023-08-05T14:02:24.728640
MIT
false
b2113cf402aa501f9bbeb7d6935e54cf
trigger:\n tags:\n include:\n - "*.*.*"\n\nresources:\n repositories:\n - repository: devops\n type: github\n endpoint: github.com_skoc10\n name: volosoft/devops\n ref: master\n\nvariables:\n # Container registry service connection established during pipeline creation\n dockerRegistry...
dataset_sample\yaml\abpframework_abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\azure-pipelines.yml
azure-pipelines.yml
YAML
2,237
0.8
0
0.061538
awesome-app
222
2023-12-09T06:20:37.159624
BSD-3-Clause
true
322f354ab2051b8d5784e0e4bb19b868
--- \nversion: "3.4"\nservices:\n bootstrap-taghelpers: \n build: \n context: .\n dockerfile: Dockerfile\n image: "${REGISTRY:-}abpio-bootstrap-taghelpers:${TAG:-latest}"\n\n
dataset_sample\yaml\abpframework_abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\docker-compose.yml
docker-compose.yml
YAML
182
0.7
0
0
react-lib
182
2025-03-02T16:53:23.873955
Apache-2.0
true
6fa60f4dc2b1f63e1027f06d5b6e346a
version: '3.4'\n\nservices:\n migrations:\n build:\n context: ../../\n dockerfile: templates/service/database/Dockerfile\n depends_on:\n - sqlserver\n environment:\n - IdentityServer_DB=CmsKit_Identity\n - CmsKit_DB=CmsKit_ModuleDb\n - SA_PASSWORD=yourStrong(!)Password\n
dataset_sample\yaml\abpframework_abp\modules\cms-kit\docker-compose.migrations.yml
docker-compose.migrations.yml
YAML
298
0.7
0
0
vue-tools
394
2024-11-10T21:20:08.030397
BSD-3-Clause
false
8cd6b6c9dc14043105737ff4a3d513a3
version: '3.4'\n\nservices:\n sqlserver:\n environment:\n - SA_PASSWORD=yourStrong(!)Password\n - ACCEPT_EULA=Y\n ports:\n - "51599:1433"\n\n identity-server:\n environment:\n - ASPNETCORE_URLS=http://0.0.0.0:80\n - ConnectionStrings__Default=Server=sqlserver;Database=CmsKit_Identity...
dataset_sample\yaml\abpframework_abp\modules\cms-kit\docker-compose.override.yml
docker-compose.override.yml
YAML
1,621
0.8
0
0
vue-tools
427
2025-06-30T01:33:59.096916
GPL-3.0
false
371026dca0981d439dbf7c4d0ccf4807
version: '3.4'\n\nservices:\n sqlserver:\n image: mcr.microsoft.com/mssql/server\n volumes:\n - dbdata:/var/opt/mssql\n \n identity-server:\n build:\n context: ../../\n dockerfile: templates/service/host/IdentityServerHost/Dockerfile\n depends_on:\n - sqlserver \n \n cms-kit:\n...
dataset_sample\yaml\abpframework_abp\modules\cms-kit\docker-compose.yml
docker-compose.yml
YAML
483
0.7
0
0
vue-tools
389
2023-11-30T19:33:49.089260
MIT
false
4681e060184724157997ec71da9d1809
version: '3.4'\n\nservices:\n volo-docs-migrator:\n image: 'volosoft/volo-docs-migrator:${TAG:-latest}'\n build:\n context: ../../\n dockerfile: modules/docs/app/VoloDocs.Migrator/Dockerfile\n environment:\n - ConnectionString=Server=sqlserver;Database=VoloDocs;Trusted_Connection=True;User=sa;P...
dataset_sample\yaml\abpframework_abp\modules\docs\docker-compose.migrate.yml
docker-compose.migrate.yml
YAML
401
0.7
0
0
react-lib
960
2025-01-03T03:51:13.996354
MIT
false
0dcfd2426af2de831115c8c30cb2ec53
version: '3.4'\n\nservices:\n sqlserver:\n environment:\n - SA_PASSWORD=yourStrong(!)Password\n - ACCEPT_EULA=Y\n ports:\n - "1433:1433"\n\n volo-docs:\n environment:\n - ConnectionString=Server=sqlserver;Database=VoloDocs;Trusted_Connection=True;User=sa;Password=yourStrong(!)Password;Int...
dataset_sample\yaml\abpframework_abp\modules\docs\docker-compose.override.yml
docker-compose.override.yml
YAML
421
0.7
0
0
python-kit
821
2024-07-24T00:27:12.879012
MIT
false
6be685447eb865a33ef36010c7a7743b
version: '3.4'\n\nservices:\n sqlserver:\n image: mcr.microsoft.com/mssql/server\n volumes:\n - dbdata:/var/opt/mssql\n\n volo-docs:\n image: 'volosoft/volo-docs:${TAG:-latest}'\n build:\n context: ../../\n dockerfile: modules/docs/app/VoloDocs.Web/Dockerfile\n depends_on: \n - sqls...
dataset_sample\yaml\abpframework_abp\modules\docs\docker-compose.yml
docker-compose.yml
YAML
331
0.7
0
0
python-kit
90
2025-02-17T06:35:35.720180
MIT
false
4a573efdc21aac5917da094a951333f9
version: '3.9'\n\nservices:\n verdaccio:\n image: verdaccio/verdaccio:4.0\n container_name: 'verdaccio'\n networks:\n - docker_network\n environment:\n - VERDACCIO_PORT=4873\n ports:\n - '4873:4873'\n expose:\n - '4873/tcp'\n publish:\n build:\n context: ./publish-package...
dataset_sample\yaml\abpframework_abp\npm\verdaccio-containers\docker-compose.yml
docker-compose.yml
YAML
754
0.7
0
0
python-kit
910
2024-10-01T22:54:58.404120
MIT
false
15909c76e65594b549693ee098353a5b
version: '3.4'\n\nservices:\n migrations:\n build:\n context: ../../\n dockerfile: templates/service/database/Dockerfile\n depends_on:\n - sqlserver\n environment:\n - IdentityServer_DB=MyProjectName_Identity\n - MyProjectName_DB=MyProjectName_ModuleDb\n - SA_PASSWORD=yourStrong(...
dataset_sample\yaml\abpframework_abp\templates\module\aspnet-core\docker-compose.migrations.yml
docker-compose.migrations.yml
YAML
319
0.7
0
0
node-utils
342
2024-06-23T16:46:23.003085
MIT
false
8a19b097258f99c7d296a4c76f4faf7e
version: '3.4'\n\nservices:\n sqlserver:\n environment:\n - SA_PASSWORD=yourStrong(!)Password\n - ACCEPT_EULA=Y\n ports:\n - "51599:1433"\n\n identity-server:\n environment:\n - ASPNETCORE_URLS=http://0.0.0.0:80\n - ConnectionStrings__Default=Server=sqlserver;Database=MyProjectName_I...
dataset_sample\yaml\abpframework_abp\templates\module\aspnet-core\docker-compose.override.yml
docker-compose.override.yml
YAML
1,678
0.8
0
0
node-utils
797
2024-06-01T02:01:18.634992
Apache-2.0
false
b8e9c7571c8e660e4bb6972d643bfba8
version: '3.4'\n\nservices:\n sqlserver:\n image: mcr.microsoft.com/mssql/server\n volumes:\n - dbdata:/var/opt/mssql\n \n identity-server:\n build:\n context: ../../\n dockerfile: templates/service/host/IdentityServerHost/Dockerfile\n depends_on:\n - sqlserver \n \n my-project...
dataset_sample\yaml\abpframework_abp\templates\module\aspnet-core\docker-compose.yml
docker-compose.yml
YAML
507
0.7
0
0
python-kit
443
2024-05-31T21:46:48.031782
GPL-3.0
false
7cbeb6021bd4bd6711a8507413737e90
name: Bug report\ndescription: File a bug report related to Akaunting\nbody:\n - type: markdown\n attributes:\n value: |\n Thanks for taking the time to fill out this bug report!\n - type: input\n id: akaunting\n attributes:\n label: Akaunting version\n description: "Please provide the ...
dataset_sample\yaml\akaunting_akaunting\.github\ISSUE_TEMPLATE\bug.yml
bug.yml
YAML
1,723
0.85
0.031746
0
python-kit
764
2024-02-06T07:46:01.129690
BSD-3-Clause
false
f94400948812ce5e94b26bdb61c9f854
blank_issues_enabled: false\ncontact_links:\n - name: Feature request\n url: https://akaunting.com/forum\n about: 'For ideas or feature requests, start a new discussion'\n - name: Support, help, and other\n url: https://akaunting.com/support\n about: 'This repository is only for reporting bugs'\n - name:...
dataset_sample\yaml\akaunting_akaunting\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
466
0.8
0.090909
0
vue-tools
113
2025-01-14T22:57:49.344879
BSD-3-Clause
false
44d5d29bed6683eb6a4dda7129abcc74
name: Translations\n\non:\n schedule:\n - cron: '0 0 * * *'\n workflow_dispatch:\n\njobs:\n sync:\n name: Sync\n\n runs-on: ubuntu-latest\n\n steps:\n\n - name: Checkout\n uses: actions/checkout@v4\n\n - name: Sync with Crowdin\n uses: crowdin/github-action@master\n with:\n up...
dataset_sample\yaml\akaunting_akaunting\.github\workflows\translations.yml
translations.yml
YAML
980
0.8
0
0
react-lib
388
2025-01-18T15:03:17.314506
Apache-2.0
false
15ea5b9ff3ab1412a6bb25a8fc8f535e
# These are supported funding model platforms\n\ncustom: ['https://amethyst.rs/donate']\nopen_collective: amethyst\n
dataset_sample\yaml\amethyst_amethyst\.github\FUNDING.yml
FUNDING.yml
YAML
112
0.8
0
0.333333
react-lib
77
2024-11-18T11:11:54.055738
GPL-3.0
false
5edbd03b88464487c50058616301eb6a
# Number of days of inactivity before an Issue or Pull Request becomes stale\ndaysUntilStale: 180\n\n# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.\n# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.\ndaysUnti...
dataset_sample\yaml\amethyst_amethyst\.github\stale.yml
stale.yml
YAML
1,860
0.8
0.071429
0.690476
react-lib
544
2024-02-04T09:47:03.086171
GPL-3.0
false
8b811e2d5b9dc88046bad27719474bf9
name: CI\n\non:\n push:\n branches:\n - main\n # bors needs CI to trigger for pushes to its staging/trying branches\n - staging\n - trying\n pull_request:\n\nenv:\n RUSTFLAGS: -Cdebuginfo=0\n CARGO_TERM_COLOR: always\n CARGO_INCREMENTAL: 0\n RUST_BACKTRACE: 1\n\njobs:\n tests:\n name: T...
dataset_sample\yaml\amethyst_amethyst\.github\workflows\ci.yml
ci.yml
YAML
2,750
0.8
0.152941
0.044118
vue-tools
618
2024-03-29T16:24:05.155258
BSD-3-Clause
false
402dca28a0507d5b340aa333337cbdf9
name: cargo-deny\n\non: [pull_request]\n\nenv:\n CARGO_TERM_COLOR: always\n\njobs:\n cargo-deny:\n runs-on: ubuntu-latest\n strategy:\n matrix:\n checks:\n - advisories\n - bans licenses sources\n\n # Prevent sudden announcement of a new advisory from failing ci:\n continue-o...
dataset_sample\yaml\amethyst_amethyst\.github\workflows\deny.yml
deny.yml
YAML
495
0.8
0
0.052632
vue-tools
417
2025-01-08T23:28:36.165548
BSD-3-Clause
false
dbc80ba077da74e0b17ca3fca790cd06
####################################################################################\n####################################################################################\n# Angular Code Ownership #\n##############################################################...
dataset_sample\yaml\angular_angular\.pullapprove.yml
.pullapprove.yml
YAML
20,213
0.95
0.053265
0.298913
vue-tools
470
2023-11-27T12:08:59.956709
BSD-3-Clause
false
49e2bfff14b68bded45998a27ba564cc
# This configuration file was automatically generated by Gitpod.\n# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)\n# and commit this file to your remote git repository to share the goodness with others.\nimage: gitpod/workspace-dotnet\ntasks:\n - init: |\n npm install\n comman...
dataset_sample\yaml\ant-design-blazor_ant-design-blazor\.gitpod.yml
.gitpod.yml
YAML
603
0.8
0
0.15
react-lib
576
2024-10-21T03:08:07.559500
Apache-2.0
false
ff262e62e3668f307092aafbd8d16565
coverage:\n status:\n patch:\n default:\n informational: true\n project:\n default:\n informational: true\n\ncomment:\n require_changes: false\n require_head: false\n require_base: false\n layout: "condensed_header, diff, files"\n hide_project_coverage: false\n behavior: default\n\n...
dataset_sample\yaml\antirez_redis\codecov.yml
codecov.yml
YAML
339
0.85
0
0
node-utils
336
2024-10-19T02:17:51.108604
BSD-3-Clause
false
f4f996e10e325b199d5268b85cae72db
# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-upd...
dataset_sample\yaml\antirez_redis\.github\dependabot.yml
dependabot.yml
YAML
526
0.8
0.133333
0.285714
react-lib
619
2025-04-06T19:47:22.982115
GPL-3.0
false
adbea082db7b10cc83cd292ca49e368e
name: CI\n\non: [push, pull_request]\n\njobs:\n\n test-ubuntu-latest:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - name: make\n # Fail build if there are warnings\n # build with TLS just for compilation coverage\n run: make REDIS_CFLAGS='-Werror' BUILD_TLS=yes\n - n...
dataset_sample\yaml\antirez_redis\.github\workflows\ci.yml
ci.yml
YAML
3,147
0.95
0.058824
0.032609
python-kit
877
2025-04-17T06:37:34.522996
GPL-3.0
false
9c10cce3f02375446acaf61a48b88d83
name: "Codecov"\n\n# Enabling on each push is to display the coverage changes in every PR, \n# where each PR needs to be compared against the coverage of the head commit\non: [push, pull_request]\n\njobs:\n code-coverage:\n runs-on: ubuntu-22.04\n\n steps:\n - name: Checkout repository\n uses: actions/ch...
dataset_sample\yaml\antirez_redis\.github\workflows\codecov.yml
codecov.yml
YAML
595
0.8
0
0.105263
react-lib
84
2024-06-08T05:52:38.594674
GPL-3.0
false
4b59b45b48ad8e603d7d3ad4fb64b63d
name: "CodeQL"\n\non:\n pull_request:\n schedule:\n # run weekly new vulnerability was added to the database\n - cron: '0 0 * * 0'\n\njobs:\n analyze:\n name: Analyze\n runs-on: ubuntu-latest\n if: github.event_name != 'schedule' || github.repository == 'redis/redis'\n\n strategy:\n fail-fast:...
dataset_sample\yaml\antirez_redis\.github\workflows\codeql-analysis.yml
codeql-analysis.yml
YAML
706
0.8
0.030303
0.038462
node-utils
251
2025-04-06T09:19:18.163481
BSD-3-Clause
false
55568cb9cdf5a14fb2063c79ac997d74
# Creates and uploads a Coverity build on a schedule\nname: Coverity Scan\non:\n schedule:\n # Run once daily, since below 500k LOC can have 21 builds per week, per https://scan.coverity.com/faq#frequency\n - cron: '0 0 * * *'\n # Support manual execution\n workflow_dispatch:\njobs:\n coverity:\n if: github.re...
dataset_sample\yaml\antirez_redis\.github\workflows\coverity.yml
coverity.yml
YAML
1,322
0.8
0.03125
0.09375
vue-tools
590
2023-08-06T02:35:42.714639
GPL-3.0
false
8bd1b2c586074ba35d495f427d9281c4
name: Daily\n\non:\n pull_request:\n branches:\n # any PR to a release branch.\n - '[0-9].[0-9]'\n schedule:\n - cron: '0 0 * * *'\n workflow_dispatch:\n inputs:\n skipjobs:\n description: 'jobs to skip (delete the ones you wanna keep, do not leave empty)'\n default: 'valgrind,s...
dataset_sample\yaml\antirez_redis\.github\workflows\daily.yml
daily.yml
YAML
56,945
0.75
0.129645
0.00085
node-utils
88
2023-12-31T09:05:50.641562
Apache-2.0
false
b42d4bf3553cf543b04655cab0146382
name: External Server Tests\n\non:\n pull_request:\n push:\n schedule:\n - cron: '0 0 * * *'\n\njobs:\n test-external-standalone:\n runs-on: ubuntu-latest\n if: github.event_name != 'schedule' || github.repository == 'redis/redis'\n timeout-minutes: 14400\n steps:\n - uses: actions/checkou...
dataset_sample\yaml\antirez_redis\.github\workflows\external.yml
external.yml
YAML
2,737
0.7
0.082353
0
react-lib
527
2024-05-25T06:09:20.484041
Apache-2.0
false
020317daca0fb9e8a4b323d927de4419
name: Reply-schemas linter\n\non:\n push:\n paths:\n - 'src/commands/*.json'\n pull_request:\n paths:\n - 'src/commands/*.json'\n\njobs:\n reply-schemas-linter:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - name: Setup nodejs\n uses: actions/setup-node@v4\...
dataset_sample\yaml\antirez_redis\.github\workflows\reply-schemas-linter.yml
reply-schemas-linter.yml
YAML
435
0.8
0
0
python-kit
815
2023-08-08T21:51:07.554603
BSD-3-Clause
false
61daca375315b34142c42809f417a66c
# A CI action that using codespell to check spell.\n# .github/.codespellrc is a config file.\n# .github/wordlist.txt is a list of words that will ignore word checks.\n# More details please check the following link:\n# https://github.com/codespell-project/codespell\nname: Spellcheck\n\non:\n push:\n pull_request:\n\nj...
dataset_sample\yaml\antirez_redis\.github\workflows\spell-check.yml
spell-check.yml
YAML
857
0.95
0
0.192308
awesome-app
586
2024-08-24T10:19:19.493547
BSD-3-Clause
false
87a65031e6f988998fc1788b63a2a44e
language: c\ncompiler:\n - gcc\n - clang\n\nos:\n - linux\n - osx\n\ndist: bionic\n\nbranches:\n only:\n - staging\n - trying\n - master\n - /^release\/.*$/\n\ninstall:\n - if [ "$TRAVIS_COMPILER" != "mingw" ]; then\n wget https://github.com/redis/redis/archive/6.0.6.tar.gz;\n tar -xzv...
dataset_sample\yaml\antirez_redis\deps\hiredis\.travis.yml
.travis.yml
YAML
3,242
0.8
0.064
0.017391
awesome-app
534
2025-01-21T20:28:40.633377
GPL-3.0
false
6fd309bd0f8c44fc48c850c9abd3763a
# Appveyor configuration file for CI build of hiredis on Windows (under Cygwin)\nenvironment:\n matrix:\n - CYG_BASH: C:\cygwin64\bin\bash\n CC: gcc\n - CYG_BASH: C:\cygwin\bin\bash\n CC: gcc\n CFLAGS: -m32\n CXXFLAGS: -m32\n LDFLAGS: -m32\n\nclone_depth: 1\...
dataset_sample\yaml\antirez_redis\deps\hiredis\appveyor.yml
appveyor.yml
YAML
743
0.8
0.083333
0.15
python-kit
131
2024-08-15T17:11:43.721984
GPL-3.0
false
b59a03092677a1a9eb23e9a2a512c339
name: Build and test\non: [push, pull_request]\n\njobs:\n ubuntu:\n name: Ubuntu\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n\n - name: Install dependencies\n run: |\n curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-arch...
dataset_sample\yaml\antirez_redis\deps\hiredis\.github\workflows\build.yml
build.yml
YAML
5,131
0.8
0
0.034014
awesome-app
834
2025-02-18T17:04:43.215694
Apache-2.0
false
df7a1415bc54cb20d7a7fcce6d68c69b
version: '{build}'\n\nenvironment:\n matrix:\n - MSYSTEM: MINGW64\n CPU: x86_64\n MSVC: amd64\n CONFIG_FLAGS: --enable-debug\n - MSYSTEM: MINGW64\n CPU: x86_64\n CONFIG_FLAGS: --enable-debug\n - MSYSTEM: MINGW32\n CPU: i686\n MSVC: x86\n CONFIG_FLAGS: --enable-debug\n - MSYSTEM: MINGW32\n ...
dataset_sample\yaml\antirez_redis\deps\jemalloc\.appveyor.yml
.appveyor.yml
YAML
936
0.7
0.04878
0
vue-tools
269
2023-11-01T13:12:54.817928
BSD-3-Clause
false
0a826b2304a14ba00e7f89b725054312
env:\n CIRRUS_CLONE_DEPTH: 1\n ARCH: amd64\n\ntask:\n matrix:\n env:\n DEBUG_CONFIG: --enable-debug\n env:\n DEBUG_CONFIG: --disable-debug\n matrix:\n - env:\n PROF_CONFIG: --enable-prof\n - env:\n PROF_CONFIG: --disable-prof\n matrix:\n - name: 64-bit\n env:\n ...
dataset_sample\yaml\antirez_redis\deps\jemalloc\.cirrus.yml
.cirrus.yml
YAML
1,213
0.8
0
0.066667
python-kit
516
2023-12-30T03:23:55.957887
Apache-2.0
false
ac7615a80ea4c3ad7c08f90aa1b8295b
# This config file is generated by ./scripts/gen_travis.py.\n# Do not edit by hand.\n\n# We use 'minimal', because 'generic' makes Windows VMs hang at startup. Also\n# the software provided by 'generic' is simply not needed for our tests.\n# Differences are explained here:\n# https://docs.travis-ci.com/user/languages/m...
dataset_sample\yaml\antirez_redis\deps\jemalloc\.travis.yml
.travis.yml
YAML
21,404
0.8
0.009685
0.022167
awesome-app
384
2024-12-17T17:00:38.424126
GPL-3.0
false
296b4a094c005455ffb1fccdaf2de253
# Number of labels to fetch (optional). Defaults to 20\nnumLabels: 40\n# These labels will not be used even if the issue contains them (optional). \n# Pass a blank array if no labels are to be excluded.\n# excludeLabels: []\nexcludeLabels:\n - "wont fix"\n - "help wanted"\n - "duplicated"\n - "more info needed"\n ...
dataset_sample\yaml\aonez_Keka\.github\labeler.yml
labeler.yml
YAML
327
0.8
0.272727
0.363636
awesome-app
931
2025-05-16T09:17:54.715235
Apache-2.0
false
3309a85ba5332efa12cd49ad90188d9e
# Configuration for move-issues - https://github.com/dessant/move-issues\n\n# Delete the command comment when it contains no other content\ndeleteCommand: true\n\n# Close the source issue after moving\ncloseSourceIssue: true\n\n# Lock the source issue after moving\nlockSourceIssue: true\n\n# Mention issue and comment a...
dataset_sample\yaml\aonez_Keka\.github\move.yml
move.yml
YAML
537
0.8
0.083333
0.705882
python-kit
586
2025-06-16T06:45:58.959363
GPL-3.0
false
7a3752086a1dde443b9c43b4cf1752a1
# Configuration for probot-no-response - https://github.com/probot/no-response\n\n# Number of days of inactivity before an Issue is closed for lack of response\ndaysUntilClose: 7\n# Label requiring a response\nresponseRequiredLabel: "more info needed"\n# Comment to post when closing an Issue for lack of response. Set t...
dataset_sample\yaml\aonez_Keka\.github\no-response.yml
no-response.yml
YAML
699
0.8
0.384615
0.333333
node-utils
9
2025-01-01T18:16:50.297411
GPL-3.0
false
7294a8d2fd419d69d2e4020f24744452