prompt
stringlengths
77
6.9k
completion
stringlengths
1
3.38k
text
stringlengths
163
9.03k
commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
lang
stringclasses
277 values
<|file_sep|>original/docs/network-plugin.md --- id: network-plugin title: Network --- Use the Network inspector to inspect outgoing network traffic our apps. You can easily browse all requests being made and their responses. The plugin also supports gzipped responses. ![Netowrk plugin](/docs/assets/network.png) ## S...
--- id: network-plugin title: Network --- Use the Network inspector to inspect outgoing network traffic our apps. You can easily browse all requests being made and their responses. The plugin also supports gzipped responses. ![Network plugin](/docs/assets/network.png) ## Setup To use the network plugin, you need to...
<|file_sep|>original/docs/network-plugin.md --- id: network-plugin title: Network --- Use the Network inspector to inspect outgoing network traffic our apps. You can easily browse all requests being made and their responses. The plugin also supports gzipped responses. ![Netowrk plugin](/docs/assets/network.png) ## S...
3af57b1ad9ec7e95d014126d432f77172d137e7e
docs/network-plugin.md
docs/network-plugin.md
Markdown
<|file_sep|>original/src/doc/asciidoc/sponsors.html <a href="https://opencollective.com/webdrivermanager" target="_blank"><img src="https://opencollective.com/webdrivermanager/sponsor.svg?width=890"></a> <|file_sep|>current/src/doc/asciidoc/sponsors.html <a href="https://opencollective.com/webdrivermanager" target="_bl...
<a href="https://opencollective.com/webdrivermanager/sponsor/0/website" target="_blank"><img src="https://opencollective.com/webdrivermanager/sponsor/0/avatar.svg" style="width: 80px; height: 60px; object-fit: cover;"></a> <a href="https://opencollective.com/webdrivermanager/sponsor/1/website" target="_blank"><img src=...
<|file_sep|>original/src/doc/asciidoc/sponsors.html <a href="https://opencollective.com/webdrivermanager" target="_blank"><img src="https://opencollective.com/webdrivermanager/sponsor.svg?width=890"></a> <|file_sep|>current/src/doc/asciidoc/sponsors.html <a href="https://opencollective.com/webdrivermanager" target="_bl...
3e3e0915b57b74fcda1d6e33d03cadb5303221e3
src/doc/asciidoc/sponsors.html
src/doc/asciidoc/sponsors.html
HTML
<|file_sep|>.travis.yml.diff original: env: 'CODECLIMATE_REPO_TOKEN=029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931' updated: env: - 'CODECLIMATE_REPO_TOKEN=029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931' - 'RAILS_ENV=test' <|file_sep|>original/.travis.yml language: ruby rvm: 2.2...
language: ruby rvm: 2.2.3 env: - 'CODECLIMATE_REPO_TOKEN=029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931' - 'RAILS_ENV=test' before_script: - cp config/application.yml.example config/application.yml - cp config/database.yml.example config/database.yml script: 'bundle exec rake db:create travis...
<|file_sep|>.travis.yml.diff original: env: 'CODECLIMATE_REPO_TOKEN=029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931' updated: env: - 'CODECLIMATE_REPO_TOKEN=029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931' - 'RAILS_ENV=test' <|file_sep|>original/.travis.yml language: ruby rvm: 2.2...
63e17f17d3586e55515610f55f86e4b1e1a498b8
.travis.yml
.travis.yml
YAML
<|file_sep|>original/code/powershell/update-externalid-from-ad.ps1 <|file_sep|>current/code/powershell/update-externalid-from-ad.ps1 <|file_sep|>updated/code/powershell/update-externalid-from-ad.ps1
# For all nodes in UpGuard, update the external id by pulling the LDAP DN from AD # You will be prompted for credentials to query AD param ( [string]$ApiKey = '', [string]$SecretKey = '', [string]$Url = 'https://', [string]$DomainController = '', [switch]$Insecure, [switch]$DryRun ) # Ignore S...
<|file_sep|>original/code/powershell/update-externalid-from-ad.ps1 <|file_sep|>current/code/powershell/update-externalid-from-ad.ps1 <|file_sep|>updated/code/powershell/update-externalid-from-ad.ps1 # For all nodes in UpGuard, update the external id by pulling the LDAP DN from AD # You will be prompted for credential...
988f555190d7201d039e9bc53a5ca7bfa97fcb33
code/powershell/update-externalid-from-ad.ps1
code/powershell/update-externalid-from-ad.ps1
PowerShell
<|file_sep|>original/lib/ransack/adapters/active_record/ransack/nodes/condition.rb attr.attr.send( arel_predicate_for_attribute(attr), formatted_values_for_attribute(attr) ) end if predicates.size > 1 case combinator when Constants::AND ...
arel_predicate_for_attribute(attr), formatted_values_for_attribute(attr) ) end if predicates.size > 1 case combinator when Constants::AND Arel::Nodes::Grouping.new(Arel::Nodes::And.new(predicates)) when Constants::OR ...
<|file_sep|>original/lib/ransack/adapters/active_record/ransack/nodes/condition.rb attr.attr.send( arel_predicate_for_attribute(attr), formatted_values_for_attribute(attr) ) end if predicates.size > 1 case combinator when Constants::AND ...
02ac87672efc74a88038cd16f9bc816cfa4d7cda
lib/ransack/adapters/active_record/ransack/nodes/condition.rb
lib/ransack/adapters/active_record/ransack/nodes/condition.rb
Ruby
<|file_sep|>src/Website/Controllers/HomeController.cs.diff original: using System.Web.Mvc; updated: using System; using System.Collections.Generic; <|file_sep|>src/Website/Controllers/HomeController.cs.diff original: updated: using System.Web.Caching; using System.Web.Mvc; <|file_sep|>src/Website/Controllers/HomeCon...
return View(); } public ActionResult Donate() { var contributors = GetContributors(); ViewBag.Contributors = contributors; return View(); } IEnumerable<Contributor> GetContributors() { const string cacheKey = ...
<|file_sep|>src/Website/Controllers/HomeController.cs.diff original: using System.Web.Mvc; updated: using System; using System.Collections.Generic; <|file_sep|>src/Website/Controllers/HomeController.cs.diff original: updated: using System.Web.Caching; using System.Web.Mvc; <|file_sep|>src/Website/Controllers/HomeCon...
75a80105a1fce0e9c2e72da033dd0abfb93b7368
src/Website/Controllers/HomeController.cs
src/Website/Controllers/HomeController.cs
C#
<|file_sep|>original/scripts/spm_integration_step.sh mkdir $PROJECT_NAME cd $PROJECT_NAME swift package init echo "// swift-tools-version:$SWIFT_VERSION import PackageDescription let package = Package( name: \"$PROJECT_NAME\", dependencies: [ .package(url: \"$FRAMEWORK_DIR\", .branch(\"$BRANCH_NAME\"...
mkdir $PROJECT_NAME cd $PROJECT_NAME swift package init echo "// swift-tools-version:$SWIFT_VERSION import PackageDescription let package = Package( name: \"$PROJECT_NAME\", dependencies: [ .package(url: \"$FRAMEWORK_DIR\", .branch(\"$BRANCH_NAME\")), ], targets: [ .target(name: \"$PR...
<|file_sep|>original/scripts/spm_integration_step.sh mkdir $PROJECT_NAME cd $PROJECT_NAME swift package init echo "// swift-tools-version:$SWIFT_VERSION import PackageDescription let package = Package( name: \"$PROJECT_NAME\", dependencies: [ .package(url: \"$FRAMEWORK_DIR\", .branch(\"$BRANCH_NAME\"...
16874192b9014f7d238eb1544c6d7cca06b44d44
scripts/spm_integration_step.sh
scripts/spm_integration_step.sh
Shell
<|file_sep|>original/app/views/groups/organogram.html.haml %div.grid-wrapper.people %h2 People - @group.all_people.each do |person, summary| %div.person .image-background = profile_image_tag person %h4= link_to person, person .role= perso...
%div.inner-block %div.grid-wrapper.people %h2 People - @group.all_people.each do |person, summary| %div.person .image-background = profile_image_tag person %h4= link_to person, person .role= person.role_names .tel= person....
<|file_sep|>original/app/views/groups/organogram.html.haml %div.grid-wrapper.people %h2 People - @group.all_people.each do |person, summary| %div.person .image-background = profile_image_tag person %h4= link_to person, person .role= perso...
fda533af9db8397e36a845df9eb74ebab50dc815
app/views/groups/organogram.html.haml
app/views/groups/organogram.html.haml
Haml
<|file_sep|>original/requirements.txt base58==0.2.3 boto3==1.3.1 botocore==1.4.41 docutils==0.12 futures==3.0.5 hjson==1.5.8 jmespath==0.9.0 lambda-packages==0.7.0 python-dateutil==2.5.3 python-slugify==1.2.0 requests[security]>=2.10.0 six==1.10.0 tqdm==4.8.3 Werkzeug==0.11.10 wheel==0.29.0 wsgi-request-logger==0.4.5 <...
base58==0.2.3 boto3==1.3.1 botocore==1.4.41 docutils==0.12 futures==3.0.5 hjson==1.5.8 jmespath==0.9.0 lambda-packages==0.8.0 python-dateutil==2.5.3 python-slugify==1.2.0 requests[security]>=2.10.0 six==1.10.0 tqdm==4.8.3 Werkzeug==0.11.10 wheel==0.29.0 wsgi-request-logger==0.4.5
<|file_sep|>original/requirements.txt base58==0.2.3 boto3==1.3.1 botocore==1.4.41 docutils==0.12 futures==3.0.5 hjson==1.5.8 jmespath==0.9.0 lambda-packages==0.7.0 python-dateutil==2.5.3 python-slugify==1.2.0 requests[security]>=2.10.0 six==1.10.0 tqdm==4.8.3 Werkzeug==0.11.10 wheel==0.29.0 wsgi-request-logger==0.4.5 <...
0894b75df38222dad9b15ede76507085b2b87b4f
requirements.txt
requirements.txt
Text
<|file_sep|>original/package.json { "name": "ukpd", "version": "0.13.0", "description": "a node module to provide an interface to the UK police data API", "main": "./src/UKPD.js", "engines": { "node": "6.9.1", "npm": "3.10.8" }, "scripts": { "lint": "standard", "mocha": "mocha", "test"...
{ "name": "ukpd", "version": "0.13.0", "description": "a node module to provide an interface to the UK police data API", "main": "./src/UKPD.js", "engines": { "node": "^7.1.0", "npm": "^3.10.9" }, "scripts": { "lint": "standard", "mocha": "mocha", "test": "npm run lint && npm run mocha...
<|file_sep|>original/package.json { "name": "ukpd", "version": "0.13.0", "description": "a node module to provide an interface to the UK police data API", "main": "./src/UKPD.js", "engines": { "node": "6.9.1", "npm": "3.10.8" }, "scripts": { "lint": "standard", "mocha": "mocha", "test"...
79581b9f06610902c875c0a99c90188e0bd042be
package.json
package.json
JSON
<|file_sep|>SGHTTPRequest.podspec.diff original: s.watchos.deployment_target = '2.0' updated: <|file_sep|>SGHTTPRequest.podspec.diff original: updated: sp.ios.deployment_target = '7.0' sp.watchos.deployment_target = '2.0' <|file_sep|>original/SGHTTPRequest.podspec s.license = { :type => "BSD", :fil...
s.author = "SeatGeek" s.source = { :git => "https://github.com/seatgeek/SGHTTPRequest.git", :tag => "1.8.2" } s.requires_arc = true s.dependency "AFNetworking", '~>3.0' s.dependency "MGEvents", '~> 1.1' s.default_subspecs = 'Core', 'UIKit' s.ios.deployment_target = '7.0' s.sub...
<|file_sep|>SGHTTPRequest.podspec.diff original: s.watchos.deployment_target = '2.0' updated: <|file_sep|>SGHTTPRequest.podspec.diff original: updated: sp.ios.deployment_target = '7.0' sp.watchos.deployment_target = '2.0' <|file_sep|>original/SGHTTPRequest.podspec s.license = { :type => "BSD", :fil...
1f75f40008453f3e6d0746ef0b4e06e9ea5477b9
SGHTTPRequest.podspec
SGHTTPRequest.podspec
Ruby
<|file_sep|>original/site2/source/stats.html.haml <|file_sep|>current/site2/source/stats.html.haml <|file_sep|>updated/site2/source/stats.html.haml
- content_for :javascripts do = javascript_include_tag "pages/stats" - content_for :stylesheets do = stylesheet_link_tag "stats" - content_for :secondary_navigation do = link_to "back", "index.html", :id => "stats_back" #stats.content %ul
<|file_sep|>original/site2/source/stats.html.haml <|file_sep|>current/site2/source/stats.html.haml <|file_sep|>updated/site2/source/stats.html.haml - content_for :javascripts do = javascript_include_tag "pages/stats" - content_for :stylesheets do = stylesheet_link_tag "stats" - content_for :secondary_navigation...
53e2c4c59a57512db32a17fba9ab5f28d79b8d31
site2/source/stats.html.haml
site2/source/stats.html.haml
Haml
<|file_sep|>original/app/assets/javascripts/solidus_paypal_braintree/frontend.js // This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically // be included in the compiled file accessible from h...
// This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically // be included in the compiled file accessible from http://example.com/assets/application.js // It's not advisable to add code directl...
<|file_sep|>original/app/assets/javascripts/solidus_paypal_braintree/frontend.js // This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically // be included in the compiled file accessible from h...
2a5c56794ba90d34efff284e4771b5922f70c1e4
app/assets/javascripts/solidus_paypal_braintree/frontend.js
app/assets/javascripts/solidus_paypal_braintree/frontend.js
JavaScript
<|file_sep|>package.json.diff original: "mongodb": "2.0.18" updated: "mongodb": "2.0.22" <|file_sep|>original/package.json "url": "https://github.com/vkarpov15/connect-mongodb-session.git" }, "dependencies": { "mongodb": "2.0.18" }, "devDependencies": { "acquit": "0.0.3", "cookie": "0.1....
"url": "https://github.com/vkarpov15/connect-mongodb-session.git" }, "dependencies": { "mongodb": "2.0.22" }, "devDependencies": { "acquit": "0.0.3", "cookie": "0.1.2", "express": "4.10.4", "express-session": "1.9.2", "istanbul": "0.3.2", "mocha": "2.0.1", "request": "2.48.0"...
<|file_sep|>package.json.diff original: "mongodb": "2.0.18" updated: "mongodb": "2.0.22" <|file_sep|>original/package.json "url": "https://github.com/vkarpov15/connect-mongodb-session.git" }, "dependencies": { "mongodb": "2.0.18" }, "devDependencies": { "acquit": "0.0.3", "cookie": "0.1....
652fffc6a9f6e1bd00132a264d79e5c220fcb1e8
package.json
package.json
JSON
<|file_sep|>original/src/base.cfg versions = versions [versions] monkeycmmi = 0.2 [opt] recipe = plone.recipe.command location = ${buildout:parts-directory}/opt command = mkdir -p ${opt:location} && mkdir -p ${opt:location}/bin && mkdir -p ${opt:location}/man/man1 update-command = ${opt:command} stop-on-error = y...
versions = versions [versions] monkeycmmi = 0.2 [opt] recipe = plone.recipe.command location = ${buildout:parts-directory}/opt command = mkdir -p ${opt:location} && mkdir -p ${opt:location}/bin && mkdir -p ${opt:location}/man/man1 update-command = ${opt:command} stop-on-error = yes [dependencies] dummy-dependenc...
<|file_sep|>original/src/base.cfg versions = versions [versions] monkeycmmi = 0.2 [opt] recipe = plone.recipe.command location = ${buildout:parts-directory}/opt command = mkdir -p ${opt:location} && mkdir -p ${opt:location}/bin && mkdir -p ${opt:location}/man/man1 update-command = ${opt:command} stop-on-error = y...
4b06b77755ebda2a1acfdc5bfe1020945d3f6e4f
src/base.cfg
src/base.cfg
INI
<|file_sep|>parser-typechecker/unison/Version.hs.diff original: gitDescribe = $( fmap (LitE . StringL . unpack) . runIO $ "git" $| ["describe", "--tags", "--always", "--dirty='"] $? pure "unknown" updated: gitDescribe = $( fmap (LitE . StringL . unpack) . runIO $ do -- Outputs date of current commit; E.g. 2...
module Version where import Language.Haskell.TH (runIO) import Language.Haskell.TH.Syntax (Exp(LitE), Lit(StringL)) import Shellmet import Data.Text gitDescribe :: String gitDescribe = $( fmap (LitE . StringL . unpack) . runIO $ do -- Outputs date of current commit; E.g. 2021-08-06 let formatDate d = "(" <> d <>...
<|file_sep|>parser-typechecker/unison/Version.hs.diff original: gitDescribe = $( fmap (LitE . StringL . unpack) . runIO $ "git" $| ["describe", "--tags", "--always", "--dirty='"] $? pure "unknown" updated: gitDescribe = $( fmap (LitE . StringL . unpack) . runIO $ do -- Outputs date of current commit; E.g. 2...
f53f218ce6a349ffad8934fa69d47315eaebb9b7
parser-typechecker/unison/Version.hs
parser-typechecker/unison/Version.hs
Haskell
<|file_sep|>dropsonde_unmarshaller/dropsonde_unmarshaller_suite_test.go.diff original: "time" "github.com/cloudfoundry/dropsonde/emitter/fake" "github.com/cloudfoundry/dropsonde/metric_sender" "github.com/cloudfoundry/dropsonde/metricbatcher" "github.com/cloudfoundry/dropsonde/metrics" updated: <|file_sep|>orig...
package dropsonde_unmarshaller_test import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "testing" ) func TestUnmarshaller(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "Dropsonde Unmarshaller Suite") }
<|file_sep|>dropsonde_unmarshaller/dropsonde_unmarshaller_suite_test.go.diff original: "time" "github.com/cloudfoundry/dropsonde/emitter/fake" "github.com/cloudfoundry/dropsonde/metric_sender" "github.com/cloudfoundry/dropsonde/metricbatcher" "github.com/cloudfoundry/dropsonde/metrics" updated: <|file_sep|>orig...
21db66e8ab1bb14e7e142f8717a9ee587e27b739
dropsonde_unmarshaller/dropsonde_unmarshaller_suite_test.go
dropsonde_unmarshaller/dropsonde_unmarshaller_suite_test.go
Go
<|file_sep|>original/requirements_production.txt # WSGI Handler # ------------------------------------------------ gevent==1.2.2 gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ boto==2.48.0 django-storages-redux==1.3.3 # Email backends for Mailgun, Postmark, SendGrid...
# WSGI Handler # ------------------------------------------------ gevent==1.2.2 gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ boto==2.48.0 django-storages-redux==1.3.3 # Email backends for Mailgun, Postmark, SendGrid and more # -------------------------------------...
<|file_sep|>original/requirements_production.txt # WSGI Handler # ------------------------------------------------ gevent==1.2.2 gunicorn==19.7.1 # Static and Media Storage # ------------------------------------------------ boto==2.48.0 django-storages-redux==1.3.3 # Email backends for Mailgun, Postmark, SendGrid...
ec27df08ab92a177f88802b201aada725fd488d6
requirements_production.txt
requirements_production.txt
Text
<|file_sep|>test/Transforms/GlobalOpt/memset-null.ll.diff original: updated: <|file_sep|>test/Transforms/GlobalOpt/memset-null.ll.diff original: @llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @_GLOBAL__I_a }] updated: @llvm.global_ctors = appending global [2 x %0] [%0 { i32 65535, void ()* @...
@llvm.global_ctors = appending global [2 x %0] [%0 { i32 65535, void ()* @_GLOBAL__I_a }, %0 { i32 65535, void ()* @_GLOBAL__I_b }] declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind ; CHECK-NOT: GLOBAL__I_a define internal void @_GLOBAL__I_a() nounwind { entry: tail call void @llvm.memset...
<|file_sep|>test/Transforms/GlobalOpt/memset-null.ll.diff original: updated: <|file_sep|>test/Transforms/GlobalOpt/memset-null.ll.diff original: @llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @_GLOBAL__I_a }] updated: @llvm.global_ctors = appending global [2 x %0] [%0 { i32 65535, void ()* @...
b45178a7fe1004d111304fb743c3d6643e3121b4
test/Transforms/GlobalOpt/memset-null.ll
test/Transforms/GlobalOpt/memset-null.ll
LLVM
<|file_sep|>original/upload.php <?php error_reporting(E_ALL); header("Access-Control-Allow-Origin: web-platform.test"); $data = "no data"; if (isset($_POST["file"]) && isset($_POST["log"])) { $file = $_POST["file"]; $data = $_POST["log"]; if (preg_match('/^[0-9a-km-z]{6}$/', $file)) { $fp = fopen("./logs...
<?php error_reporting(E_ALL); header("Access-Control-Allow-Origin: *"); $data = "no data"; if (isset($_POST["file"]) && isset($_POST["log"])) { $file = $_POST["file"]; $data = $_POST["log"]; if (preg_match('/^[0-9a-km-z]{6}$/', $file)) { $fp = fopen("./logs/$file.log", "a"); if (!$fp) { echo "N...
<|file_sep|>original/upload.php <?php error_reporting(E_ALL); header("Access-Control-Allow-Origin: web-platform.test"); $data = "no data"; if (isset($_POST["file"]) && isset($_POST["log"])) { $file = $_POST["file"]; $data = $_POST["log"]; if (preg_match('/^[0-9a-km-z]{6}$/', $file)) { $fp = fopen("./logs...
b1601f8e0a7f114f25753d740fe95c240d7bab25
upload.php
upload.php
PHP
<|file_sep|>original/.travis.yml language: python matrix: include: - python: 2.7 env: TOXENV=py27 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 script: tox <|file_sep|>current/.travis.yml languag...
language: python matrix: include: - python: 2.7 env: TOXENV=py27 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 script: tox
<|file_sep|>original/.travis.yml language: python matrix: include: - python: 2.7 env: TOXENV=py27 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 script: tox <|file_sep|>current/.travis.yml languag...
62caccef7d56aba57aee96625d58ff64fa94fbd8
.travis.yml
.travis.yml
YAML
<|file_sep|>original/requirements.txt pip==9.0.1 click==6.7 h5py==2.7.0 seaborn==0.7.1 matplotlib==2.0.2 Pillow==4.1.1 scipy==0.19.0 configparser==3.5.0 PyYAML==3.12 Mako==1.0.6 <|file_sep|>current/requirements.txt pip==9.0.1 click==6.7 h5py==2.7.0 seaborn==0.7.1 matplotlib==2.0.2 Pillow==4.1.1 scipy==0.19.0 configpars...
pip==9.0.1 click==6.7 h5py==2.7.0 seaborn==0.7.1 matplotlib==2.0.2 Pillow==4.1.1 scipy==0.19.1 configparser==3.5.0 PyYAML==3.12 Mako==1.0.6
<|file_sep|>original/requirements.txt pip==9.0.1 click==6.7 h5py==2.7.0 seaborn==0.7.1 matplotlib==2.0.2 Pillow==4.1.1 scipy==0.19.0 configparser==3.5.0 PyYAML==3.12 Mako==1.0.6 <|file_sep|>current/requirements.txt pip==9.0.1 click==6.7 h5py==2.7.0 seaborn==0.7.1 matplotlib==2.0.2 Pillow==4.1.1 scipy==0.19.0 configpars...
2d1901f11c44a25a7fb426502d734304e57b53ca
requirements.txt
requirements.txt
Text
<|file_sep|>original/.travis.yml language: python python: - 2.7 install: pip install tox --use-mirrors script: tox <|file_sep|>current/.travis.yml language: python python: - 2.7 install: pip install tox --use-mirrors script: tox <|file_sep|>updated/.travis.yml
language: python python: - 2.6 - 2.7 - 3.3 - 3.4 install: pip install tox --use-mirrors script: tox
<|file_sep|>original/.travis.yml language: python python: - 2.7 install: pip install tox --use-mirrors script: tox <|file_sep|>current/.travis.yml language: python python: - 2.7 install: pip install tox --use-mirrors script: tox <|file_sep|>updated/.travis.yml language: python python: - 2.6 - 2.7 - 3.3 ...
4cedbc3a7185ca20fc2558477fd1dd750524ad44
.travis.yml
.travis.yml
YAML
<|file_sep|>original/app/src/main/res/values/themes.xml <?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackgr...
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackground"> @drawable/seriestracker_edit_...
<|file_sep|>original/app/src/main/res/values/themes.xml <?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackgr...
bd0dde543aea486023785f26b3d5f9c34e736bf7
app/src/main/res/values/themes.xml
app/src/main/res/values/themes.xml
XML
<|file_sep|>original/.travis.yml sudo: false language: node_js cache: directories: - node_modules node_js: - "5" - "4" - "0.12" - "0.10" env: - COVERAGE=false matrix: fast_finish: true include: - node_js: "0.12" env: COVERAGE=true script: "npm run codeclimate" <|file_sep|>current/...
sudo: false language: node_js cache: directories: - node_modules node_js: - "6" - "5" - "4" - "0.12" - "0.10" env: - COVERAGE=false matrix: fast_finish: true include: - node_js: "0.12" env: COVERAGE=true
<|file_sep|>original/.travis.yml sudo: false language: node_js cache: directories: - node_modules node_js: - "5" - "4" - "0.12" - "0.10" env: - COVERAGE=false matrix: fast_finish: true include: - node_js: "0.12" env: COVERAGE=true script: "npm run codeclimate" <|file_sep|>current/...
77baff1ce4583fd0dcd48dcda340c062ba883940
.travis.yml
.travis.yml
YAML
<|file_sep|>original/app/assets/stylesheets/application.scss * * You're free to add application-wide styles to this file and they'll appear at the bottom of the * compiled file so the styles you add here take precedence over styles defined in any styles * defined in the other CSS/SCSS files in this directory. It is...
* You're free to add application-wide styles to this file and they'll appear at the bottom of the * compiled file so the styles you add here take precedence over styles defined in any styles * defined in the other CSS/SCSS files in this directory. It is generally better to create a new * file per style scope. * *...
<|file_sep|>original/app/assets/stylesheets/application.scss * * You're free to add application-wide styles to this file and they'll appear at the bottom of the * compiled file so the styles you add here take precedence over styles defined in any styles * defined in the other CSS/SCSS files in this directory. It is...
80586787d0b98eb22f187213bd911a73c395aa2d
app/assets/stylesheets/application.scss
app/assets/stylesheets/application.scss
SCSS
<|file_sep|>original/ci/concourse.yml resources: - name: friday-night type: time source: interval: 1m start: 11:57 PM stop: 11:59 PM days: [Friday] location: Canada/Eastern - name: trackfacto type: git source: uri: https://github.com/ryanmattcollins/trackfacto.git jobs: - name: action-i...
resources: - name: friday-night type: time source: start: 6:00 PM days: [Friday] location: Canada/Eastern - name: trackfacto type: git source: uri: https://github.com/ryanmattcollins/trackfacto.git jobs: - name: action-items plan: - aggregate: - get: friday-night trigger: true ...
<|file_sep|>original/ci/concourse.yml resources: - name: friday-night type: time source: interval: 1m start: 11:57 PM stop: 11:59 PM days: [Friday] location: Canada/Eastern - name: trackfacto type: git source: uri: https://github.com/ryanmattcollins/trackfacto.git jobs: - name: action-i...
e499aa3f23bd76396a6a74159d69472d44fd452c
ci/concourse.yml
ci/concourse.yml
YAML
<|file_sep|>original/README.md [![experimental](http://badges.github.io/stability-badges/dist/experimental.svg)](http://github.com/badges/stability-badges) # Container Runtime Debugging Support In development <|file_sep|>current/README.md [![experimental](http://badges.github.io/stability-badges/dist/experimental.svg...
![experimental](https://img.shields.io/badge/stability-experimental-orange.svg) # Container Runtime Debugging Support In development
<|file_sep|>original/README.md [![experimental](http://badges.github.io/stability-badges/dist/experimental.svg)](http://github.com/badges/stability-badges) # Container Runtime Debugging Support In development <|file_sep|>current/README.md [![experimental](http://badges.github.io/stability-badges/dist/experimental.svg...
a79323fc8aae3518440e0579e5a71aceef6860fc
README.md
README.md
Markdown
<|file_sep|>original/templates/test/oxauth/client/config-oxauth-test-data.properties test.server.name=%(hostname)s swd.resource=acct:test_user@%(hostname)s auth.user.uid=test_user auth.user.password=test_user_password auth.user.inum=B1F3-AEAE-B798 auth.user.email=test_user@test.org auth.client.id=FF81-2D39 auth.clien...
swd.resource=acct:test_user@%(hostname)s auth.user.uid=test_user auth.user.password=test_user_password auth.user.inum=B1F3-AEAE-B798 auth.user.email=test_user@test.org auth.client.id=FF81-2D39 auth.client.secret=%(oxauthClient_4_pw)s uma.user.uid=test_user uma.user.password=test_user_password uma.pat.client.id=AB77-...
<|file_sep|>original/templates/test/oxauth/client/config-oxauth-test-data.properties test.server.name=%(hostname)s swd.resource=acct:test_user@%(hostname)s auth.user.uid=test_user auth.user.password=test_user_password auth.user.inum=B1F3-AEAE-B798 auth.user.email=test_user@test.org auth.client.id=FF81-2D39 auth.clien...
ea8828b8f853d97ba85073cb1d4c24283d65c4cd
templates/test/oxauth/client/config-oxauth-test-data.properties
templates/test/oxauth/client/config-oxauth-test-data.properties
INI
<|file_sep|>composer.json.diff original: "version": "1.1.4", updated: "version": "1.1.5", <|file_sep|>composer.json.diff original: "phpzm/console": "^1.1.5", "phpzm/controller": "^1.2.1", updated: "phpzm/console": "^1.1.6", "phpzm/controller": "^1.2.2", <|file_sep|>original/composer.json } ], ...
} ], "require": { "php": ">=7.0", "phpzm/console": "^1.1.6", "phpzm/controller": "^1.2.2", "phpzm/data": "^1.2.1", "phpzm/helper": "^1.2.1", "phpzm/http": "^1.1.6", "phpzm/kernel": "^1.2.3", "phpzm/message": "^1.1.5", "phpzm/model": "^1.3.0", "phpzm/persistence": "^1.3.1"...
<|file_sep|>composer.json.diff original: "version": "1.1.4", updated: "version": "1.1.5", <|file_sep|>composer.json.diff original: "phpzm/console": "^1.1.5", "phpzm/controller": "^1.2.1", updated: "phpzm/console": "^1.1.6", "phpzm/controller": "^1.2.2", <|file_sep|>original/composer.json } ], ...
22b39b2093b8a8e2a9df486b8749c78e8be4a7ae
composer.json
composer.json
JSON
<|file_sep|>original/exceptions_to_hipchat.gemspec # -*- encoding: utf-8 -*- require File.expand_path('../lib/exceptions_to_hipchat/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Darrin Holst"] gem.email = ["darrinholst@gmail.com"] gem.summary = %q{Send rails exceptions t...
# -*- encoding: utf-8 -*- require File.expand_path('../lib/exceptions_to_hipchat/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Darrin Holst"] gem.email = ["darrinholst@gmail.com"] gem.summary = %q{Send rails exceptions to HipChat} gem.homepage = "http://github.com...
<|file_sep|>original/exceptions_to_hipchat.gemspec # -*- encoding: utf-8 -*- require File.expand_path('../lib/exceptions_to_hipchat/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Darrin Holst"] gem.email = ["darrinholst@gmail.com"] gem.summary = %q{Send rails exceptions t...
cf372bd45d6538593bcb0232d75c1f841acef535
exceptions_to_hipchat.gemspec
exceptions_to_hipchat.gemspec
Ruby
<|file_sep|>original/source/PGridWidget/index.js export default from './Widget' export PivotTable from './components/Main' <|file_sep|>current/source/PGridWidget/index.js export default from './Widget' export PivotTable from './components/Main' <|file_sep|>updated/source/PGridWidget/index.js
export default from './Widget' export PivotTable from './components/Main' export Configuration from './components/UpperButtons' export Grid from './components/Grid' export Store from './stores/Store'
<|file_sep|>original/source/PGridWidget/index.js export default from './Widget' export PivotTable from './components/Main' <|file_sep|>current/source/PGridWidget/index.js export default from './Widget' export PivotTable from './components/Main' <|file_sep|>updated/source/PGridWidget/index.js export default from './Wi...
c5a3da5f6ea2e9e3992ea675e87477a2a36ddec8
source/PGridWidget/index.js
source/PGridWidget/index.js
JavaScript
<|file_sep|>original/src/pot/core/act.cljs (:require [cljs.reader :refer [read-string]] [pot.core.hand :refer [move-handler undo-handler state-watcher history-watcher]])) (def ^:private msg-handler-map {:move move-handler :undo undo-handler}) (defn- process-msg [{action-key :msg :as msg...
(:require [cljs.reader :refer [read-string]] [pot.core.hand :refer [move-handler undo-handler state-watcher history-watcher]])) (def ^:private msg-handler-map {:move move-handler :undo undo-handler}) (defn- process-msg [{action-key :msg :as msg} state history] (let [{action-handler ac...
<|file_sep|>original/src/pot/core/act.cljs (:require [cljs.reader :refer [read-string]] [pot.core.hand :refer [move-handler undo-handler state-watcher history-watcher]])) (def ^:private msg-handler-map {:move move-handler :undo undo-handler}) (defn- process-msg [{action-key :msg :as msg...
8309921e75e25dabfba3e8193930e4cef7d97783
src/pot/core/act.cljs
src/pot/core/act.cljs
Clojure
<|file_sep|>original/.github/workflows/push.yml on: push name: cibuild on push jobs: build: name: script/cibuild-stuff-docker runs-on: ubuntu-latest steps: - uses: actions/checkout@main - name: script/cibuild-stuff-docker run: script/cibuild-stuff-docker <|file_sep|>current/.github/workflows...
on: push name: cibuild on push jobs: build: name: script/cibuild-stuff-docker runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: script/cibuild-stuff-docker run: script/cibuild-stuff-docker
<|file_sep|>original/.github/workflows/push.yml on: push name: cibuild on push jobs: build: name: script/cibuild-stuff-docker runs-on: ubuntu-latest steps: - uses: actions/checkout@main - name: script/cibuild-stuff-docker run: script/cibuild-stuff-docker <|file_sep|>current/.github/workflows...
ee1fa5150499b0d0717893b4521a7feff4c6428a
.github/workflows/push.yml
.github/workflows/push.yml
YAML
<|file_sep|>original/_layouts/home.html --- layout: default --- <div class="jumbotron bg-inverse text-white"> <div class="container"> <h1 class="display-3">Quick Switcher</h1> <p class="lead">A front-end web component to make navigating quick and mouseless</p> </div> </div> <div class="container"> {{ c...
--- layout: default --- <div class="jumbotron jumbotron-fluid bg-inverse text-white"> <div class="container"> <h1 class="display-3">Quick Switcher</h1> <p class="lead">A front-end web component to make navigating quick and mouseless</p> </div> </div> <div class="container"> {{ content }} </div>
<|file_sep|>original/_layouts/home.html --- layout: default --- <div class="jumbotron bg-inverse text-white"> <div class="container"> <h1 class="display-3">Quick Switcher</h1> <p class="lead">A front-end web component to make navigating quick and mouseless</p> </div> </div> <div class="container"> {{ c...
62693081829d4e0fff11d35b664fbb1152eef84b
_layouts/home.html
_layouts/home.html
HTML
<|file_sep|>original/tests/rules_tests/grammarManipulation_tests/InactiveRulesTest.py """ from unittest import main, TestCase from grammpy import Grammar, Nonterminal, Rule as _R from ..grammar import * class InactiveRulesTest(TestCase): def __init__(self, *args): super().__init__(*args) self.g =...
def __init__(self, *args): super().__init__(*args) self.g = Grammar() def setUp(self): g = Grammar() g.add_term([0, 1, 2, 'a', 'b', 'c']) g.add_nonterm([NFirst, NSecond, NThird, NFourth]) self.g = g def test_countWithInactive(self): class Tmp1(_R): ...
<|file_sep|>original/tests/rules_tests/grammarManipulation_tests/InactiveRulesTest.py """ from unittest import main, TestCase from grammpy import Grammar, Nonterminal, Rule as _R from ..grammar import * class InactiveRulesTest(TestCase): def __init__(self, *args): super().__init__(*args) self.g =...
7599f60a0e64f1d1d076695af67a212be751a89b
tests/rules_tests/grammarManipulation_tests/InactiveRulesTest.py
tests/rules_tests/grammarManipulation_tests/InactiveRulesTest.py
Python
<|file_sep|>original/pratica-07/make.sh #!/bin/zsh echo "Compilando, espera.." gcc -O2 -Wall -ansi -o stret sol_triang.c soluc.c -lm echo "Finalizado." <|file_sep|>current/pratica-07/make.sh #!/bin/zsh echo "Compilando, espera.." gcc -O2 -Wall -ansi -o stret sol_triang.c soluc.c -lm echo "Finalizado." <|file_sep|>upd...
#!/bin/zsh # echo "Compilando, espera.." # gcc -O2 -Wall -ansi -o stret sol_triang.c soluc.c -lm # echo "Finalizado."
<|file_sep|>original/pratica-07/make.sh #!/bin/zsh echo "Compilando, espera.." gcc -O2 -Wall -ansi -o stret sol_triang.c soluc.c -lm echo "Finalizado." <|file_sep|>current/pratica-07/make.sh #!/bin/zsh echo "Compilando, espera.." gcc -O2 -Wall -ansi -o stret sol_triang.c soluc.c -lm echo "Finalizado." <|file_sep|>upd...
9d00088570dbaa7a8cd0c35663f83f0b5d671901
pratica-07/make.sh
pratica-07/make.sh
Shell
<|file_sep|>.gitlab-ci.yml.diff original: - win32 updated: - win32-ps <|file_sep|>original/.gitlab-ci.yml paths: - "${CI_PROJECT_DIR}/build_*/meson-logs" cache: key: "$CI_JOB_NAME" <<: *cache-paths msys2-mingw64: stage: build tags: - win32 variables: MSYSTEM: "MINGW64" CHE...
paths: - "${CI_PROJECT_DIR}/build_*/meson-logs" cache: key: "$CI_JOB_NAME" <<: *cache-paths msys2-mingw64: stage: build tags: - win32-ps variables: MSYSTEM: "MINGW64" CHERE_INVOKING: "yes" script: - C:\msys64\usr\bin\pacman --noconfirm -Syyuu - C:\msys64\usr\bin\bash -lc...
<|file_sep|>.gitlab-ci.yml.diff original: - win32 updated: - win32-ps <|file_sep|>original/.gitlab-ci.yml paths: - "${CI_PROJECT_DIR}/build_*/meson-logs" cache: key: "$CI_JOB_NAME" <<: *cache-paths msys2-mingw64: stage: build tags: - win32 variables: MSYSTEM: "MINGW64" CHE...
ae582413f6ec587be0fe65fe77e975f7dbde0ef9
.gitlab-ci.yml
.gitlab-ci.yml
YAML
<|file_sep|>original/handlers/compression/README.md <|file_sep|>current/handlers/compression/README.md <|file_sep|>updated/handlers/compression/README.md
#compression This package defines a handler in charge of gzip compressing the response to an incoming http request. It conforms to the signature of Handlers as defined by the xhttp package. It is possible to disable the compression of responses to certain request methods in order to avoid some CSRF vulnerabilities. ...
<|file_sep|>original/handlers/compression/README.md <|file_sep|>current/handlers/compression/README.md <|file_sep|>updated/handlers/compression/README.md #compression This package defines a handler in charge of gzip compressing the response to an incoming http request. It conforms to the signature of Handlers as de...
04fb48540ade64526f698892ac73a0b9778c71af
handlers/compression/README.md
handlers/compression/README.md
Markdown
<|file_sep|>original/bitbucket-pipelines.yml image: ubuntu:latest pipelines: default: - step: script: - apt-get update && apt-get install -y curl file sudo mercurial xz-utils build-essential - curl -L https://bitbucket.org/tari/llvm-sys.rs/downloads/llvm-3.9.1.linux.tar.xz | tar -C /u...
image: ubuntu:latest pipelines: default: - step: script: - apt-get update && apt-get install -y curl file sudo mercurial xz-utils build-essential - curl -L https://bitbucket.org/tari/llvm-sys.rs/downloads/llvm-3.9.1.linux.tar.xz | tar -C /usr/local -xJ - curl https://static....
<|file_sep|>original/bitbucket-pipelines.yml image: ubuntu:latest pipelines: default: - step: script: - apt-get update && apt-get install -y curl file sudo mercurial xz-utils build-essential - curl -L https://bitbucket.org/tari/llvm-sys.rs/downloads/llvm-3.9.1.linux.tar.xz | tar -C /u...
3d548351ebe8a4a5fe695e7f22c9f163b5182f89
bitbucket-pipelines.yml
bitbucket-pipelines.yml
YAML
<|file_sep|>.travis.yml.diff original: - 2.0 - 2.1 - 2.2.2 - 2.3.0 updated: - 2.3.8 - 2.4.4 - 2.5.3 <|file_sep|>.travis.yml.diff original: - "RAILS_VERSION=2.3.2" - "RAILS_VERSION=3.0.20" - "RAILS_VERSION=3.1.12" - "RAILS_VERSION=3.2.22.2" - "RAILS_VERSION=4.0.13" - "RAILS_VERSION=4.1.16" upda...
language: ruby rvm: - 2.3.8 - 2.4.4 - 2.5.3 sudo: false bundler_args: --without development --retry=3 --jobs=3 before_install: - gem update bundler env: - "RAILS_VERSION=4.2.7" - "RAILS_VERSION=5.1.6" - "RAILS_VERSION=5.2.2" matrix: fast_finish: true
<|file_sep|>.travis.yml.diff original: - 2.0 - 2.1 - 2.2.2 - 2.3.0 updated: - 2.3.8 - 2.4.4 - 2.5.3 <|file_sep|>.travis.yml.diff original: - "RAILS_VERSION=2.3.2" - "RAILS_VERSION=3.0.20" - "RAILS_VERSION=3.1.12" - "RAILS_VERSION=3.2.22.2" - "RAILS_VERSION=4.0.13" - "RAILS_VERSION=4.1.16" upda...
5de34ca0e77834d955c8b0faaa984b7e90e2f816
.travis.yml
.travis.yml
YAML
<|file_sep|>original/_posts/2015-06-07-google-and-google-robots-and-run-a-robot.markdown title: "Run some Robots" subtitle: "Remove and Delete things from the Internet with Robots" date: 2015-06-07 14:00:44 author: "Lucas Gatsas" header-img: "img/Lucas_Gatsas_lucas_gatsas_0255.jpg" --- <h2 class="secti...
title: "Run some Robots" subtitle: "Remove and Delete things from the Internet with Robots" date: 2015-06-07 14:00:44 author: "Lucas Gatsas" header-img: "img/Lucas_Gatsas_lucas_gatsas_0255.jpg" --- <h2 class="section-heading">Robots - SEO</h2> <h2 class="section-heading">"Remove and Delete things from ...
<|file_sep|>original/_posts/2015-06-07-google-and-google-robots-and-run-a-robot.markdown title: "Run some Robots" subtitle: "Remove and Delete things from the Internet with Robots" date: 2015-06-07 14:00:44 author: "Lucas Gatsas" header-img: "img/Lucas_Gatsas_lucas_gatsas_0255.jpg" --- <h2 class="secti...
e210c0f4830994836450bafc77b0106a8733fc1c
_posts/2015-06-07-google-and-google-robots-and-run-a-robot.markdown
_posts/2015-06-07-google-and-google-robots-and-run-a-robot.markdown
Markdown
<|file_sep|>original/lib/config/dummy.js /**attribute:DummyConfigResource.app A shortcut to DummyConfigResource.store.config (the app's config). */ Object.defineProperty(self, 'app', { get: function() { return self.store.config; }, set: function(v) { self...
/**attribute:DummyConfigResource.app A shortcut to DummyConfigResource.store.config (the app's config). */ Object.defineProperty(self, 'app', { get: function() { return self.store.config; }, set: function(v) { self.store.config = v; return v; ...
<|file_sep|>original/lib/config/dummy.js /**attribute:DummyConfigResource.app A shortcut to DummyConfigResource.store.config (the app's config). */ Object.defineProperty(self, 'app', { get: function() { return self.store.config; }, set: function(v) { self...
9136a9a255866cba0cd56ed4e9ba7796bd8f457e
lib/config/dummy.js
lib/config/dummy.js
JavaScript
<|file_sep|>original/README.md # github-notification-number This is a script which returns the number of GitHub notifications that the user has. <|file_sep|>current/README.md # github-notification-number This is a script which returns the number of GitHub notifications that the user has. <|file_sep|>updated/README.md
# github-notification-number This is a script which returns the number of GitHub notifications that the user has. ## License github-notification-number is availible under the [MIT License](http://opensource.org/licenses/MIT), see `LICENSE` for more information.
<|file_sep|>original/README.md # github-notification-number This is a script which returns the number of GitHub notifications that the user has. <|file_sep|>current/README.md # github-notification-number This is a script which returns the number of GitHub notifications that the user has. <|file_sep|>updated/README.md #...
2a3771a951f7716b8e19da724be73724ccc06486
README.md
README.md
Markdown
<|file_sep|>packages/ov/overload.yaml.diff original: hash: 3567c6a95cfba70b23f7d4da72700dc9f49dba0e1b3e7f882c3d146b4970a31c updated: hash: dde214c35bd0dc52eea78b157413fecfe2d278669cc21a61bc3796e48dca1bf6 <|file_sep|>packages/ov/overload.yaml.diff original: containers: -any updated: <|file_sep|>packages/ov/overload.y...
homepage: https://gitlab.com/LukaHorvat/overload changelog-type: '' hash: dde214c35bd0dc52eea78b157413fecfe2d278669cc21a61bc3796e48dca1bf6 test-bench-deps: {} maintainer: luka.horvat9@gmail.com synopsis: Finite overloading changelog: '' basic-deps: simple-effects: -any base: ! '>=4.7 && <5' th-expand-syns: -any ...
<|file_sep|>packages/ov/overload.yaml.diff original: hash: 3567c6a95cfba70b23f7d4da72700dc9f49dba0e1b3e7f882c3d146b4970a31c updated: hash: dde214c35bd0dc52eea78b157413fecfe2d278669cc21a61bc3796e48dca1bf6 <|file_sep|>packages/ov/overload.yaml.diff original: containers: -any updated: <|file_sep|>packages/ov/overload.y...
c5b473ecf63d2dca3c52015e3292bdbf2b2b45d1
packages/ov/overload.yaml
packages/ov/overload.yaml
YAML
<|file_sep|>original/edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.responses.java2pcm/src/edu/kit/ipd/sdq/vitruvius/casestudies/pcmjava/transformations/packagemapping/responses/java2pcm/Change2CommandTransformingJavaToPcm.xtend package edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transfo...
package edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.responses.java2pcm import mir.responses.AbstractChange2CommandTransformingJavaTo5_1 import edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.seffstatements.Java2PcmPackageMappingMethodBodyChangePreprocessor ...
<|file_sep|>original/edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.responses.java2pcm/src/edu/kit/ipd/sdq/vitruvius/casestudies/pcmjava/transformations/packagemapping/responses/java2pcm/Change2CommandTransformingJavaToPcm.xtend package edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transfo...
544361b688e4a98e0acfe4836894cc2b7d39501d
edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.responses.java2pcm/src/edu/kit/ipd/sdq/vitruvius/casestudies/pcmjava/transformations/packagemapping/responses/java2pcm/Change2CommandTransformingJavaToPcm.xtend
edu.kit.ipd.sdq.vitruvius.casestudies.pcmjava.transformations.packagemapping.responses.java2pcm/src/edu/kit/ipd/sdq/vitruvius/casestudies/pcmjava/transformations/packagemapping/responses/java2pcm/Change2CommandTransformingJavaToPcm.xtend
Xtend
<|file_sep|>original/README.md ## [util-io](https://github.com/indeedeng/util/tree/master/io) Utility for performing IO, including many interfaces implemented elsewhere. ## [util-mmap](https://github.com/indeedeng/util/tree/master/mmap) Utility for performing mmap operations and direct memory access. ## [util-seria...
Utility for compressing and uncompressing data. Includes snappy and gzip. ## [util-io](https://github.com/indeedeng/util/tree/master/io) Utility for performing IO, including many interfaces implemented elsewhere. ## [util-mmap](https://github.com/indeedeng/util/tree/master/mmap) Utility for performing mmap operati...
<|file_sep|>original/README.md ## [util-io](https://github.com/indeedeng/util/tree/master/io) Utility for performing IO, including many interfaces implemented elsewhere. ## [util-mmap](https://github.com/indeedeng/util/tree/master/mmap) Utility for performing mmap operations and direct memory access. ## [util-seria...
18ed5170c5e829b1ac9e14dfb4044234f8552631
README.md
README.md
Markdown
<|file_sep|>original/package.json { "name": "node-gitter", "version": "2.0.5", "description": "Gitter client", "main": "lib/gitter.js", "scripts": { "test": "./node_modules/.bin/mocha -R spec test" }, "repository": { "type": "git", "url": "https://github.com/gitterHQ/node-gitter" }, "keywo...
{ "name": "node-gitter", "version": "2.0.5", "description": "Gitter client", "main": "lib/gitter.js", "scripts": { "mocha": "mocha", "test": "mocha -R spec test" }, "repository": { "type": "git", "url": "https://github.com/gitterHQ/node-gitter" }, "keywords": [ "gitter" ], "aut...
<|file_sep|>original/package.json { "name": "node-gitter", "version": "2.0.5", "description": "Gitter client", "main": "lib/gitter.js", "scripts": { "test": "./node_modules/.bin/mocha -R spec test" }, "repository": { "type": "git", "url": "https://github.com/gitterHQ/node-gitter" }, "keywo...
9ed5226e916c69a0b9af9cc1fc470ed544d0f5e5
package.json
package.json
JSON
<|file_sep|>original/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb <|file_sep|>current/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb <|file_sep|>updated/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb
slugs = [ 'erdf-programmes-and-resources', 'erdf-programmes-progress-and-achievements', 'applying-for-erdf-funding', 'erdf-national-guidance', 'previous-erdf-programmes-retaining-documents', 'european-territorial-cooperation-programmes', 'reuniting-europe-programme-turkey' ] logo_url = "https://assets.dig...
<|file_sep|>original/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb <|file_sep|>current/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb <|file_sep|>updated/db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb slugs = [ 'erdf...
bdf781db3e7a1adf703de308625665a0a00b2226
db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb
db/data_migration/20150716094419_add_eu_logo_to_regional_development_funding.rb
Ruby
<|file_sep|>original/criticL/app/views/reviews/edit.html.erb <h1>Editing Review</h1> <%= render 'form' %> <%= link_to 'Show', @review %> | <%= link_to 'Back', reviews_path %> <|file_sep|>current/criticL/app/views/reviews/edit.html.erb <h1>Editing Review</h1> <%= render 'form' %> <%= link_to 'Show', @review %> | <%=...
<h1>Editing Review</h1> <%= render 'form' %> <%= link_to 'Show', @review %> | <%= link_to 'Back', movie_reviews_path(@review.movie) %>
<|file_sep|>original/criticL/app/views/reviews/edit.html.erb <h1>Editing Review</h1> <%= render 'form' %> <%= link_to 'Show', @review %> | <%= link_to 'Back', reviews_path %> <|file_sep|>current/criticL/app/views/reviews/edit.html.erb <h1>Editing Review</h1> <%= render 'form' %> <%= link_to 'Show', @review %> | <%=...
23b82eaf1c5e8f04ee0ff7fc4ce947989e42e070
criticL/app/views/reviews/edit.html.erb
criticL/app/views/reviews/edit.html.erb
HTML+ERB
<|file_sep|>assets/sass/mixins/mediaqueries.scss.diff original: $bp-prelg: "(min-width : 1200px) and (max-width : 1260px)"; updated: <|file_sep|>assets/sass/mixins/mediaqueries.scss.diff original: // extrasmall – mobile updated: // extrasmall mobile <|file_sep|>assets/sass/mixins/mediaqueries.scss.diff ori...
$bp-md: "(min-width : 992px) and (max-width : 1200px)"; $bp-lg: "(min-width : 1200px)"; // extrasmall mobile @if $point == xs { @media #{$bp-xs} { @content; } @media #{$bp-xs-helpdesk} { @content; } } // small (not only mobile) @if $point == sm { @media #{$bp-sm} { @...
<|file_sep|>assets/sass/mixins/mediaqueries.scss.diff original: $bp-prelg: "(min-width : 1200px) and (max-width : 1260px)"; updated: <|file_sep|>assets/sass/mixins/mediaqueries.scss.diff original: // extrasmall – mobile updated: // extrasmall mobile <|file_sep|>assets/sass/mixins/mediaqueries.scss.diff ori...
9ddb2595a28356a8f0a121657ce8d3cc28f634e9
assets/sass/mixins/mediaqueries.scss
assets/sass/mixins/mediaqueries.scss
SCSS
<|file_sep|>original/update-symlinks.sh #!/bin/bash # Create/update home directory symlinks to these files # Change directory to one containing this file cd "$(dirname "${BASH_SOURCE[0]}")" # Force create symlinks ln -sf "$(pwd)/.bash_profile" ~ ln -sf "$(pwd)/.vimrc" ~ ln -sf "$(pwd)/.gitconfig" ~ <|file_sep|>curren...
#!/bin/bash # Create/update home directory symlinks to these files # Change directory to one containing this file cd "$(dirname "${BASH_SOURCE[0]}")" # Force create symlinks ln -sf "$PWD/.bash_profile" ~ ln -sf "$PWD/.vimrc" ~ ln -sf "$PWD/.gitconfig" ~
<|file_sep|>original/update-symlinks.sh #!/bin/bash # Create/update home directory symlinks to these files # Change directory to one containing this file cd "$(dirname "${BASH_SOURCE[0]}")" # Force create symlinks ln -sf "$(pwd)/.bash_profile" ~ ln -sf "$(pwd)/.vimrc" ~ ln -sf "$(pwd)/.gitconfig" ~ <|file_sep|>curren...
155e34081e9743f33dcd152125fa79798b9b6591
update-symlinks.sh
update-symlinks.sh
Shell
<|file_sep|>package.json.diff original: "eslint": "~2.0.0-rc.1", updated: "eslint": "~2.2.0", <|file_sep|>original/package.json "author": "Alberto Santini", "license": "MIT", "engines": { "node": ">=0.10.x" }, "scripts": { "test": "npm run lint", "start": "nod...
"author": "Alberto Santini", "license": "MIT", "engines": { "node": ">=0.10.x" }, "scripts": { "test": "npm run lint", "start": "node src/server/app.js", "lint": "eslint index.js src/**/*.js" }, "dependencies": { "finance": "~2.4.4" }, "devDepe...
<|file_sep|>package.json.diff original: "eslint": "~2.0.0-rc.1", updated: "eslint": "~2.2.0", <|file_sep|>original/package.json "author": "Alberto Santini", "license": "MIT", "engines": { "node": ">=0.10.x" }, "scripts": { "test": "npm run lint", "start": "nod...
25d56b389921e8faa9a2fde797b1b10365c68104
package.json
package.json
JSON
<|file_sep|>original/static/ajax_results.js var timeout = 4000; function getProgress(uid) { $.ajaxSetup({cache:false}); $.ajax({ dataType: "json", url:"/get-chat-line/"+uid, success: function (msg, data) { $("#log").append("<p>"+msg['message']+"</p>"); setTimeout(function(){getProgress(uid)},timeout); }...
var timeout = 4000; function getProgress(uid) { $.ajaxSetup({cache:false}); $.ajax({ dataType: "json", url:"/get-chat-line/"+uid, success: function (msg, data) { $("#log").append("<p>"+msg['message']+"</p>"); setTimeout(function(){getProgress(uid)},timeout); }, error: function (jqXHR, errorStatus, err...
<|file_sep|>original/static/ajax_results.js var timeout = 4000; function getProgress(uid) { $.ajaxSetup({cache:false}); $.ajax({ dataType: "json", url:"/get-chat-line/"+uid, success: function (msg, data) { $("#log").append("<p>"+msg['message']+"</p>"); setTimeout(function(){getProgress(uid)},timeout); }...
91514035a0ebec1f5fdedc0dcc1cdd0e2aec5e38
static/ajax_results.js
static/ajax_results.js
JavaScript
<|file_sep|>public/main.js.diff original: define(['jquery', 'underscore', 'pullManager', 'appearanceManager', 'module', 'PullFilter', 'ElementFilter', 'Column', 'ConnectionManager'], function($, _, pullManager, appearanceManager, module, PullFilter, ElementFilter, Column, ConnectionManager) { updated: define(['jquery'...
// Note that not all of the required items above are represented in the function argument list. Some just need to be loaded, but that's all. function($, _, pullManager, PullFilter, ElementFilter, Column) { var spec = View; var globalPullFilter = new PullFilter(spec); var globalElementFilter = new ElementFil...
<|file_sep|>public/main.js.diff original: define(['jquery', 'underscore', 'pullManager', 'appearanceManager', 'module', 'PullFilter', 'ElementFilter', 'Column', 'ConnectionManager'], function($, _, pullManager, appearanceManager, module, PullFilter, ElementFilter, Column, ConnectionManager) { updated: define(['jquery'...
47034634668b0baea5cb0b13a88d2172e7e5a8ac
public/main.js
public/main.js
JavaScript
<|file_sep|>original/app/services/git_log_importer.rb MappedResult.new( reference: parts[0], author_name: parts[1], author_email: parts[2], author_datetime: parts[3], title: parts[4], file_statistics: parts[5] ) end def handle_author_data(mapped_result:) Author.find...
author_name: parts[1], author_email: parts[2], author_datetime: parts[3], title: parts[4], file_statistics: parts[5] ) end def handle_author_data(mapped_result:) author = Author.find_by(email: mapped_result.author_email) unless author.present? author = Author.new( ...
<|file_sep|>original/app/services/git_log_importer.rb MappedResult.new( reference: parts[0], author_name: parts[1], author_email: parts[2], author_datetime: parts[3], title: parts[4], file_statistics: parts[5] ) end def handle_author_data(mapped_result:) Author.find...
93790627793f60a96b3e74aeedbfef5c6f1138a6
app/services/git_log_importer.rb
app/services/git_log_importer.rb
Ruby
<|file_sep|>original/condatestall.py """ Uses conda to run and test all supported python + numpy versions. """ from __future__ import print_function import itertools import subprocess import os import sys NPY = '16', '17' PY = '26', '27', '33' RECIPE_DIR = "./buildscripts/condarecipe.local" def main(): failfast...
""" Uses conda to run and test all supported python + numpy versions. """ from __future__ import print_function import itertools import subprocess import os import sys if '-q' in sys.argv[1:]: NPY = '18', else: NPY = '16', '17', '18' PY = '26', '27', '33' RECIPE_DIR = "./buildscripts/condarecipe.local" def ...
<|file_sep|>original/condatestall.py """ Uses conda to run and test all supported python + numpy versions. """ from __future__ import print_function import itertools import subprocess import os import sys NPY = '16', '17' PY = '26', '27', '33' RECIPE_DIR = "./buildscripts/condarecipe.local" def main(): failfast...
2ad9cf280ee1743f1ad542d3c0c8d8365caea11e
condatestall.py
condatestall.py
Python
<|file_sep|>original/requirements/doc.txt docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-config#egg=releases sphinx==1.8.3 alagitpull==0.0.21 sphinxcontrib-napoleon==0.7 <|file_sep|>current/requirements/doc.txt docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-conf...
docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-config#egg=releases sphinx==1.8.3 alagitpull==0.0.22 sphinxcontrib-napoleon==0.7
<|file_sep|>original/requirements/doc.txt docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-config#egg=releases sphinx==1.8.3 alagitpull==0.0.21 sphinxcontrib-napoleon==0.7 <|file_sep|>current/requirements/doc.txt docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-conf...
be268bafb54aba6ba6ccb283fbb78df90a450023
requirements/doc.txt
requirements/doc.txt
Text
<|file_sep|>README.md.diff original: Small Windows utility for strong file encryption based on AES256 and PBKDF2-SHA256 updated: Small Windows utility for strong file encryption based on AES256 and strong PBKDF2 key derivation. <|file_sep|>README.md.diff original: The AES256 key is derived from password using PBKDF2-SH...
# idxcrypt Small Windows utility for strong file encryption based on AES256 and strong PBKDF2 key derivation. The AES256 key is derived from password using PBKDF2 with 500000 iterations. PBKDF2 supports SHA-256, SHA-384, SHA-512. SHA-256 is the default. CBC mode is used for AES with a randomly generated IV that is uni...
<|file_sep|>README.md.diff original: Small Windows utility for strong file encryption based on AES256 and PBKDF2-SHA256 updated: Small Windows utility for strong file encryption based on AES256 and strong PBKDF2 key derivation. <|file_sep|>README.md.diff original: The AES256 key is derived from password using PBKDF2-SH...
6db5b8a586c1e85876f359a9eba8619ee685fe67
README.md
README.md
Markdown
<|file_sep|>app/Model/SubtaskTaskConversionModel.php.diff original: updated: $parent_task = $this->taskFinderModel->getById($subtask['task_id']); <|file_sep|>original/app/Model/SubtaskTaskConversionModel.php * @return integer */ public function convertToTask($project_id, $subtask_id) { ...
public function convertToTask($project_id, $subtask_id) { $subtask = $this->subtaskModel->getById($subtask_id); $parent_task = $this->taskFinderModel->getById($subtask['task_id']); $task_id = $this->taskCreationModel->create(array( 'project_id' => $project_id, 't...
<|file_sep|>app/Model/SubtaskTaskConversionModel.php.diff original: updated: $parent_task = $this->taskFinderModel->getById($subtask['task_id']); <|file_sep|>original/app/Model/SubtaskTaskConversionModel.php * @return integer */ public function convertToTask($project_id, $subtask_id) { ...
2c72a283f2d51034f85f4e2ca8b194d304a3c433
app/Model/SubtaskTaskConversionModel.php
app/Model/SubtaskTaskConversionModel.php
PHP
<|file_sep|>original/README.md PingThing ========= A little Mac app that sits in your menu bar and pings things. It does not do very much else. You get continuous feedback about the results. The status icon changes depending on the results of the pings. ![Screenshot](screenshot.png "Screenshot") Known Issues ----...
PingThing ========= A little Mac app that sits in your menu bar and pings things. It does not do very much else. You get continuous feedback about the results. The status icon changes depending on the results of the pings. ![Screenshot](screenshot.png "Screenshot") The app is mostly written in Swift. The ICMP Si...
<|file_sep|>original/README.md PingThing ========= A little Mac app that sits in your menu bar and pings things. It does not do very much else. You get continuous feedback about the results. The status icon changes depending on the results of the pings. ![Screenshot](screenshot.png "Screenshot") Known Issues ----...
be8a812ff629e2e5728aff792c4e0b0ad03d2dea
README.md
README.md
Markdown
<|file_sep|>original/app/views/shared/vue/_treeview.html.erb <div id="treeview"> <input type="text" name="<%= try(:name) %>" size="48" v-model="path" /> <div class="dirs"> <span v-repeat="currentDirs"> <span v-if="$index > 0"> <%= icon('fa-caret-right') %> </span> <span v-on="click: se...
<div id="treeview"> <input type="text" name="<%= try(:name) %>" size="48" v-model="path" disabled /> <div class="dirs"> <span v-repeat="currentDirs"> <span v-if="$index > 0"> <%= icon('fa-caret-right') %> </span> <span v-on="click: selectPath($value)" class="dir"> {{ basename($...
<|file_sep|>original/app/views/shared/vue/_treeview.html.erb <div id="treeview"> <input type="text" name="<%= try(:name) %>" size="48" v-model="path" /> <div class="dirs"> <span v-repeat="currentDirs"> <span v-if="$index > 0"> <%= icon('fa-caret-right') %> </span> <span v-on="click: se...
04d428c43977e34e9625f8c57c22560350dfa3ee
app/views/shared/vue/_treeview.html.erb
app/views/shared/vue/_treeview.html.erb
HTML+ERB
<|file_sep|>original/app/Model/Config.php <?php class Config extends AppModel { public $useTable = 'configs'; public function getConfig($param){ $buff = $this->find("all", array( "conditions" => array( "ConfigName" => $param, ), 'fields' => 'ConfigValue' )); $ret = isset($buff[0]['config']['Con...
<?php class Config extends AppModel { public $useTable = 'configs'; public function getConfig($param){ $buff = $this->find("all", array( "conditions" => array( "ConfigName" => $param, ), 'fields' => 'ConfigValue' )); $ret = isset($buff[0]['Config']['ConfigValue']) ? $buff[0]['Config']['ConfigVa...
<|file_sep|>original/app/Model/Config.php <?php class Config extends AppModel { public $useTable = 'configs'; public function getConfig($param){ $buff = $this->find("all", array( "conditions" => array( "ConfigName" => $param, ), 'fields' => 'ConfigValue' )); $ret = isset($buff[0]['config']['Con...
afa08ba81473b51213326ad207fea49166136c56
app/Model/Config.php
app/Model/Config.php
PHP
<|file_sep|>packages/se/SecureHash-SHA3.yaml.diff original: hash: edcf287d352d59b442e26ecdf347d92632f10bbcafc114ce87906320cf0e6266 updated: hash: 401bb13998ecc18df2c9109f406e83c2fde3655589dde4baf21ea19980d04c93 <|file_sep|>packages/se/SecureHash-SHA3.yaml.diff original: updated: - '0.1.0.1' <|file_sep|>original/packag...
changelog: ! '# Revision history for SecureHash-SHA3 ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ! '>=0.9 && <0.11' base: ! '>=4.3 && <4.13' all-versions: - '0.1.0.0' - '0.1.0.1' author: Carter Tazio Schonwald latest: '0.1.0.1' description-type: ha...
<|file_sep|>packages/se/SecureHash-SHA3.yaml.diff original: hash: edcf287d352d59b442e26ecdf347d92632f10bbcafc114ce87906320cf0e6266 updated: hash: 401bb13998ecc18df2c9109f406e83c2fde3655589dde4baf21ea19980d04c93 <|file_sep|>packages/se/SecureHash-SHA3.yaml.diff original: updated: - '0.1.0.1' <|file_sep|>original/packag...
5f06812d2dd20955cdbd449277cf847f4867543d
packages/se/SecureHash-SHA3.yaml
packages/se/SecureHash-SHA3.yaml
YAML
<|file_sep|>original/gradle/wrapper/gradle-wrapper.properties distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-rc-4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists <|file_sep|>current/gradle/wrapper/gradle-wrapper.pro...
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-rc-5-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists
<|file_sep|>original/gradle/wrapper/gradle-wrapper.properties distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-rc-4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists <|file_sep|>current/gradle/wrapper/gradle-wrapper.pro...
36f74e9fa243952e8f69bdb6ee94995b311c7d01
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
INI
<|file_sep|>original/src/globit.cc #include "config.h" #ifdef HAVE_ASPRINTF #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include "globit.c" #endif <|file_sep|>current/src/globit.cc #include "config.h" #ifdef HAVE_ASPRINTF #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include "globit.c" #endif <|file_sep|>updated/s...
#include "config.h" #ifdef HAVE_ASPRINTF #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS #endif #include "globit.c" #endif
<|file_sep|>original/src/globit.cc #include "config.h" #ifdef HAVE_ASPRINTF #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include "globit.c" #endif <|file_sep|>current/src/globit.cc #include "config.h" #ifdef HAVE_ASPRINTF #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include "globit.c" #endif <|file_sep|>updated/s...
95cab084032395b3a6fce34457c4714a5096348f
src/globit.cc
src/globit.cc
C++
<|file_sep|>original/src/splatoon/run.js const CronJob = require('cron').CronJob; const splatnet = require('./splatnet'); console.info('Starting periodic tasks...'); // Run every day at 2min 30sec after the hour new CronJob('30 2 * * * *', () => { splatnet.update(); }, null, true); <|file_sep|>current/src/splatoo...
const CronJob = require('cron').CronJob; const splatnet = require('./splatnet'); console.info('Starting periodic tasks...'); // Run every day at 0min 30sec after the hour new CronJob('30 0 * * * *', () => { splatnet.update(); }, null, true);
<|file_sep|>original/src/splatoon/run.js const CronJob = require('cron').CronJob; const splatnet = require('./splatnet'); console.info('Starting periodic tasks...'); // Run every day at 2min 30sec after the hour new CronJob('30 2 * * * *', () => { splatnet.update(); }, null, true); <|file_sep|>current/src/splatoo...
29310da3f200d86e89fbeed3a2427c42af1bb6f7
src/splatoon/run.js
src/splatoon/run.js
JavaScript
<|file_sep|>original/index.js Factory : require( "./lib/type/factory" ), TypeHelper : TypeHelper, TypeInfo : TypeInfo, Type : require( "./lib/type/type" ), decorate : decorate, info : info, helper : helper }; function decorate( type ) { return new TypeDecorator( type ); } functio...
helper : helper }; function decorate( type ) { return new TypeDecorator( type ); } function info( typeName, type ) { return new TypeInfo( typeName, type ); } function helper( typeInfo ) { return new TypeHelper( typeInfo ); } module.exports.USERCLASS_ADMIN = TypeInfo.USERCLASS_ADMIN; module.exports.USERCLASS_U...
<|file_sep|>original/index.js Factory : require( "./lib/type/factory" ), TypeHelper : TypeHelper, TypeInfo : TypeInfo, Type : require( "./lib/type/type" ), decorate : decorate, info : info, helper : helper }; function decorate( type ) { return new TypeDecorator( type ); } functio...
cb8d8bdf4b8431fccb7e40dcd6a0c733bc74e4e9
index.js
index.js
JavaScript
<|file_sep|>angular_flask/__init__.py.diff original: app = Flask(__name__, instance_path='/instance') updated: app = Flask(__name__, instance_relative_config=True) <|file_sep|>original/angular_flask/__init__.py import os from flask import Flask from flask_sslify import SSLify app = Flask(__name__, instance_path='/ins...
import os from flask import Flask from flask_sslify import SSLify app = Flask(__name__, instance_relative_config=True) if 'DYNO' in os.environ: sslify = SSLify(app) app.config.from_object('config') app.config.from_pyfile('config.py', True) import angular_flask.core import angular_flask.models import angular_fla...
<|file_sep|>angular_flask/__init__.py.diff original: app = Flask(__name__, instance_path='/instance') updated: app = Flask(__name__, instance_relative_config=True) <|file_sep|>original/angular_flask/__init__.py import os from flask import Flask from flask_sslify import SSLify app = Flask(__name__, instance_path='/ins...
48543d559d13bb9446f455d14ec3e8ae1ff4f2d7
angular_flask/__init__.py
angular_flask/__init__.py
Python
<|file_sep|>app/reducers/index.js.diff original: updated: import playlists from './user' <|file_sep|>original/app/reducers/index.js import { combineReducers } from 'redux'; import { routerReducer as routing } from 'react-router-redux'; import auth from './auth'; const rootReducer = combineReducers({ auth, routing...
import { combineReducers } from 'redux'; import { routerReducer as routing } from 'react-router-redux'; import auth from './auth'; import playlists from './user' const rootReducer = combineReducers({ auth, playlists, routing, }); export default rootReducer;
<|file_sep|>app/reducers/index.js.diff original: updated: import playlists from './user' <|file_sep|>original/app/reducers/index.js import { combineReducers } from 'redux'; import { routerReducer as routing } from 'react-router-redux'; import auth from './auth'; const rootReducer = combineReducers({ auth, routing...
3148b4302e76a5b7d481b614211b1519b8148fd8
app/reducers/index.js
app/reducers/index.js
JavaScript
<|file_sep|>original/package.json "test": "eslint index.js test.js && mocha" }, "keywords": [ "api", "blueprint", "swagger", "convert" ], "author": "Apiary", "license": "MIT", "devDependencies": { "eslint": "^0.22.1", "mocha": "^2.2.5" }, "dependencies": { "fury": "^0.8.2...
"test": "eslint index.js test.js && mocha" }, "keywords": [ "api", "blueprint", "swagger", "convert" ], "author": "Apiary", "license": "MIT", "devDependencies": { "eslint": "^0.22.1", "mocha": "^2.2.5" }, "dependencies": { "fury": "^0.8.3", "js-yaml": "^3.3.1", "r...
<|file_sep|>original/package.json "test": "eslint index.js test.js && mocha" }, "keywords": [ "api", "blueprint", "swagger", "convert" ], "author": "Apiary", "license": "MIT", "devDependencies": { "eslint": "^0.22.1", "mocha": "^2.2.5" }, "dependencies": { "fury": "^0.8.2...
3677735da9c4e916262e09cd4bc16e9c9f81da7e
package.json
package.json
JSON
<|file_sep|>original/.travis.yml language: python python: - "3.3" - "3.4" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: python setup.py install # command to run tests, e.g. python setup.py test script: python setup.py test <|file_sep|>current/.tr...
language: python python: - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: python setup.py install # command to run tests, e.g. python setup.py test script: python setup.py test
<|file_sep|>original/.travis.yml language: python python: - "3.3" - "3.4" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: python setup.py install # command to run tests, e.g. python setup.py test script: python setup.py test <|file_sep|>current/.tr...
7be27b5d1bd7e8cf1e1898ffc4c439bf2a52a5ec
.travis.yml
.travis.yml
YAML
<|file_sep|>lib/rubocop/cop/style/case_equality.rb.diff original: updated: def_node_matcher :case_equality?, '(send _ :=== _)' <|file_sep|>original/lib/rubocop/cop/style/case_equality.rb # frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for uses of the case eq...
# frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for uses of the case equality operator(===). class CaseEquality < Cop MSG = 'Avoid the use of the case equality operator `===`.'.freeze def_node_matcher :case_equality?, '(send _ :=== _)' ...
<|file_sep|>lib/rubocop/cop/style/case_equality.rb.diff original: updated: def_node_matcher :case_equality?, '(send _ :=== _)' <|file_sep|>original/lib/rubocop/cop/style/case_equality.rb # frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for uses of the case eq...
a164757688bdd9d1cf53e870fabaa9fe1e31003b
lib/rubocop/cop/style/case_equality.rb
lib/rubocop/cop/style/case_equality.rb
Ruby
<|file_sep|>test/test_parser_terminal.c.diff original: parse_t *result = parse("hello world", grammar); assert_int_equal(result->length, 11); assert_int_equal(result->start, 0); updated: parse_result_t *result = parse("hello world", grammar); assert_non_null(result); assert_true(is_success(result)); <|file_...
parse_t *suc = result->data.result; assert_int_equal(suc->length, 11); assert_int_equal(suc->start, 0); assert_int_equal(suc->n_children, 1); assert_int_equal(suc->children[0].n_children, 0); } void terminal_failure(void **state) { grammar_t *grammar = grammar_init( non_terminal("HelloWorld"), ru...
<|file_sep|>test/test_parser_terminal.c.diff original: parse_t *result = parse("hello world", grammar); assert_int_equal(result->length, 11); assert_int_equal(result->start, 0); updated: parse_result_t *result = parse("hello world", grammar); assert_non_null(result); assert_true(is_success(result)); <|file_...
28bfcfabf1185f197c49f21abc4b71629cfebcec
test/test_parser_terminal.c
test/test_parser_terminal.c
C
<|file_sep|>original/Tests/LinuxMain.swift testCase(DateTests.allTests), testCase(DeserializableTests.allTests), testCase(DeserializableWithContextTests.allTests), testCase(DictionaryTests.allTests), testCase(DoubleTests.allTests), testCase(EnumTests.allTests), testCase(FloatTests.allTests),...
// testCase(DateTests.allTests), // testCase(DeserializableTests.allTests), // testCase(DeserializableWithContextTests.allTests), // testCase(DictionaryTests.allTests), // testCase(DoubleTests.allTests), // testCase(EnumTests.allTests), // testCase(FloatTests.allTests), // testCase(IntTests.allT...
<|file_sep|>original/Tests/LinuxMain.swift testCase(DateTests.allTests), testCase(DeserializableTests.allTests), testCase(DeserializableWithContextTests.allTests), testCase(DictionaryTests.allTests), testCase(DoubleTests.allTests), testCase(EnumTests.allTests), testCase(FloatTests.allTests),...
fd949501dc1033d3b184453b6aaa7ab6837c0eb8
Tests/LinuxMain.swift
Tests/LinuxMain.swift
Swift
<|file_sep|>original/test/string/string-line/gender.js 'use strict'; var toArray = require('es6-iterator/to-array') , Database = require('dbjs'); module.exports = function (t, a) { var db = new Database(), Type = t(db); a.deep(toArray(Type.members), ['F', 'M']); }; <|file_sep|>current/test/string/string-line/gen...
'use strict'; var toArray = require('es5-ext/array/to-array') , Database = require('dbjs'); module.exports = function (t, a) { var db = new Database(), Type = t(db); a.deep(toArray(Type.members), ['F', 'M']); };
<|file_sep|>original/test/string/string-line/gender.js 'use strict'; var toArray = require('es6-iterator/to-array') , Database = require('dbjs'); module.exports = function (t, a) { var db = new Database(), Type = t(db); a.deep(toArray(Type.members), ['F', 'M']); }; <|file_sep|>current/test/string/string-line/gen...
af38d20c38a8437e4a42c42dcbd22fc5ab9dd6be
test/string/string-line/gender.js
test/string/string-line/gender.js
JavaScript
<|file_sep|>templates/forum/forum_detail.html.diff original: <ul> updated: <table border=1> <tr> <th> Title <th> Started by <th> Replies <th> Views <th> Last post <|file_sep|>templates/forum/forum_detail.html.diff original: <li><a href="{% url 'thread' thread.id %}">{{ thread }}<...
{% if forum.thread_set.all %} <table border=1> <tr> <th> Title <th> Started by <th> Replies <th> Views <th> Last post {% for thread in forum.thread_set.all %} <tr> <td><a href="{% url 'thread' thread.id %}">{{ thread }}</a> <td>{{ thread.author }} <td>{{ t...
<|file_sep|>templates/forum/forum_detail.html.diff original: <ul> updated: <table border=1> <tr> <th> Title <th> Started by <th> Replies <th> Views <th> Last post <|file_sep|>templates/forum/forum_detail.html.diff original: <li><a href="{% url 'thread' thread.id %}">{{ thread }}<...
db2635232bccce0ea211c3dcf2de11c69ee21a06
templates/forum/forum_detail.html
templates/forum/forum_detail.html
HTML
<|file_sep|>lib/themes/dosomething/paraneue_dosomething/templates/system/partials/info-bar.tpl.php.diff original: updated: <?php if (isset($formatted_partners)): ?> <?php print t("In partnership with"); ?> <?php print $formatted_partners; ?> <?php endif; ?> <|file_sep|>lib/themes/dosomething/paraneue_dos...
<?php print t("In partnership with"); ?> <?php print $formatted_partners; ?> <?php endif; ?> <?php if (isset($zendesk_form)): ?> <div class="info-bar__secondary"> <?php print t('Questions?'); ?> <a href="#" data-modal-href="#modal-contact-form"><?php print t('Contact Us'); ?></a> <d...
<|file_sep|>lib/themes/dosomething/paraneue_dosomething/templates/system/partials/info-bar.tpl.php.diff original: updated: <?php if (isset($formatted_partners)): ?> <?php print t("In partnership with"); ?> <?php print $formatted_partners; ?> <?php endif; ?> <|file_sep|>lib/themes/dosomething/paraneue_dos...
c136c74c82a00d350b593431b841e24ce923c90d
lib/themes/dosomething/paraneue_dosomething/templates/system/partials/info-bar.tpl.php
lib/themes/dosomething/paraneue_dosomething/templates/system/partials/info-bar.tpl.php
PHP
<|file_sep|>original/test/server/metrics.rb MIN = { test_count:1, app_coverage:100, test_coverage:98, line_ratio:2.1, hits_ratio:0.7 } MAX = { failures:0, errors:0, warnings:6, skips:0, duration:200, } <|file_sep|>current/test/server/metrics.rb MIN = { test_count:1, app_coverage:100, test_c...
MIN = { test_count:1, app_coverage:100, test_coverage:100, line_ratio:2.1, hits_ratio:0.7 } MAX = { failures:0, errors:0, warnings:6, skips:0, duration:200, }
<|file_sep|>original/test/server/metrics.rb MIN = { test_count:1, app_coverage:100, test_coverage:98, line_ratio:2.1, hits_ratio:0.7 } MAX = { failures:0, errors:0, warnings:6, skips:0, duration:200, } <|file_sep|>current/test/server/metrics.rb MIN = { test_count:1, app_coverage:100, test_c...
dc25996fdcfdbdfcb5812324d9a8e3722b663650
test/server/metrics.rb
test/server/metrics.rb
Ruby
<|file_sep|>original/samples/Samples.AspNetCore/Startup.cs public IConfiguration Configuration { get; } public IHostingEnvironment HostingEnvironment { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServ...
public IConfiguration Configuration { get; } public IHostingEnvironment HostingEnvironment { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddM...
<|file_sep|>original/samples/Samples.AspNetCore/Startup.cs public IConfiguration Configuration { get; } public IHostingEnvironment HostingEnvironment { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServ...
2263b65f9d92c0e7e6d4573e95ab7a83156a720c
samples/Samples.AspNetCore/Startup.cs
samples/Samples.AspNetCore/Startup.cs
C#
<|file_sep|>original/.travis.yml language: node_js node_js: - '4' - '6' - '8' - 'stable' sudo: false git: depth: 10 script: yarn run test:ci <|file_sep|>current/.travis.yml language: node_js node_js: - '4' - '6' - '8' - 'stable' sudo: false git: depth: 10 script: yarn run test:ci <|file_sep|...
language: node_js node_js: - '6' - '8' - 'stable' sudo: false git: depth: 10 script: yarn run test:ci
<|file_sep|>original/.travis.yml language: node_js node_js: - '4' - '6' - '8' - 'stable' sudo: false git: depth: 10 script: yarn run test:ci <|file_sep|>current/.travis.yml language: node_js node_js: - '4' - '6' - '8' - 'stable' sudo: false git: depth: 10 script: yarn run test:ci <|file_sep|...
ac6b4b06fdbc6dff4f88945eabb0f486c24d0310
.travis.yml
.travis.yml
YAML
<|file_sep|>README.md.diff original: # Project Info updated: # SimpleTodoApp ## Project Info <|file_sep|>README.md.diff original: # What is this? updated: ## What is this? <|file_sep|>README.md.diff original: # Components updated: ## Modules <|file_sep|>README.md.diff original: I will be using the following components...
## Modules I will be using the following modules: * React * React router * Redux * Webpack * Babel ## How to run? Be sure you have NodeJS and NPM installed. In the root directory (where package.json resides), run `npm install` in order to resolve and download project dependencies. Then you can run it in developmen...
<|file_sep|>README.md.diff original: # Project Info updated: # SimpleTodoApp ## Project Info <|file_sep|>README.md.diff original: # What is this? updated: ## What is this? <|file_sep|>README.md.diff original: # Components updated: ## Modules <|file_sep|>README.md.diff original: I will be using the following components...
d8bfe4c6170f56d7f236f45284700085ff288fc4
README.md
README.md
Markdown
<|file_sep|>Solutions/Endjin.Cancelable.Demo/Program.cs.diff original: updated: Console.BackgroundColor = ConsoleColor.Red; Console.WriteLine("Ensure you are running the Azure Storage Emulator!"); Console.ResetColor(); <|file_sep|>Solutions/Endjin.Cancelable.Demo/Program.cs.diff or...
cancelable.CreateToken(cancellationToken); cancelable.RunUntilCompleteOrCancelledAsync(DoSomethingLongRunningAsync, cancellationToken).Wait(); Console.WriteLine("Press Any Key to Exit!"); Console.ReadKey(); } private static async Task DoSomethingLongRunn...
<|file_sep|>Solutions/Endjin.Cancelable.Demo/Program.cs.diff original: updated: Console.BackgroundColor = ConsoleColor.Red; Console.WriteLine("Ensure you are running the Azure Storage Emulator!"); Console.ResetColor(); <|file_sep|>Solutions/Endjin.Cancelable.Demo/Program.cs.diff or...
c420f373a5ddc8050a2d3f419282feb2c41326fa
Solutions/Endjin.Cancelable.Demo/Program.cs
Solutions/Endjin.Cancelable.Demo/Program.cs
C#
<|file_sep|>app/controllers/application_controller/feature.rb.diff original: Feature = Struct.new(:role, :role_any, :name, :accord_name, :title) do updated: Feature = Struct.new(:role, :role_any, :name, :title) do <|file_sep|>app/controllers/application_controller/feature.rb.diff original: feature = new(*memb...
class ApplicationController Feature = Struct.new(:role, :role_any, :name, :title) do def self.new_with_hash(hash) new(*members.collect { |m| hash[m] }) end def accord_hash { :name => name.to_s, :title => title, :container => "#{name}_accord" } end ...
<|file_sep|>app/controllers/application_controller/feature.rb.diff original: Feature = Struct.new(:role, :role_any, :name, :accord_name, :title) do updated: Feature = Struct.new(:role, :role_any, :name, :title) do <|file_sep|>app/controllers/application_controller/feature.rb.diff original: feature = new(*memb...
c23ce49d1292a6f3e799d9213c836a83fed2cff2
app/controllers/application_controller/feature.rb
app/controllers/application_controller/feature.rb
Ruby
<|file_sep|>original/docs/swarm/swarm-tutorial/delete-service.md 2. Run `docker service rm helloworld` to remove the `helloworld` service. ``` $ docker service rm helloworld helloworld ``` 3. Run `docker service inspect <SERVICE-ID>` to verify that the swarm manager removed the service. The CLI retur...
2. Run `docker service rm helloworld` to remove the `helloworld` service. ``` $ docker service rm helloworld helloworld ``` 3. Run `docker service inspect <SERVICE-ID>` to verify that the swarm manager removed the service. The CLI returns a message that the service is not found: ``` $ docker...
<|file_sep|>original/docs/swarm/swarm-tutorial/delete-service.md 2. Run `docker service rm helloworld` to remove the `helloworld` service. ``` $ docker service rm helloworld helloworld ``` 3. Run `docker service inspect <SERVICE-ID>` to verify that the swarm manager removed the service. The CLI retur...
68ef2569842f8ca4dd09a85caca1970d95946547
docs/swarm/swarm-tutorial/delete-service.md
docs/swarm/swarm-tutorial/delete-service.md
Markdown
<|file_sep|>original/count-clicks/source.hs import Reflex import Reflex.Dom -- Reflex.count does exactly the same thing! Uses "holdDyn" countNumberOfEvents event = foldDyn (+) 0 $ tagDyn (constDyn 1) event main = mainWidget $ do el "h1" $ text "Count clicks" el "div" $ do clickEvent <- button "Click me" -- cl...
import Reflex import Reflex.Dom -- Reflex.count does exactly the same thing! Uses "holdDyn" countNumberOfEvents event = foldDyn (+) 0 $ tagDyn (constDyn 1) event main = mainWidget $ do el "h1" $ text "Count clicks" el "div" $ do clickEvent <- button "Click me" -- clickEvent :: Event t () numberOfTimesClic...
<|file_sep|>original/count-clicks/source.hs import Reflex import Reflex.Dom -- Reflex.count does exactly the same thing! Uses "holdDyn" countNumberOfEvents event = foldDyn (+) 0 $ tagDyn (constDyn 1) event main = mainWidget $ do el "h1" $ text "Count clicks" el "div" $ do clickEvent <- button "Click me" -- cl...
6f821712429df7356072b01eea9088a7d596c4bd
count-clicks/source.hs
count-clicks/source.hs
Haskell
<|file_sep|>original/.github/workflows/test.yml on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 5 matrix: python-version: ['2.7', '3.7'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-ve...
on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 5 matrix: python-version: ['2.7', '3.6', '3.7', '3.8'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup...
<|file_sep|>original/.github/workflows/test.yml on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 5 matrix: python-version: ['2.7', '3.7'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-ve...
e3bd439961fe7943a7d41a937a8eae4415dbe9d7
.github/workflows/test.yml
.github/workflows/test.yml
YAML
<|file_sep|>original/appveyor.yml --- # http://www.appveyor.com/docs/appveyor-yml # Build version format version: "{build}" # Fix line endings on Windows init: - git config --global core.autocrlf true # Do not build on tags (GitHub only) skip_tags: true environment: matrix: - nodejs_version: '4.2' - nodejs_ve...
--- # http://www.appveyor.com/docs/appveyor-yml # Build version format version: "{build}" # Do not build on tags (GitHub only) skip_tags: true environment: matrix: - nodejs_version: '4.2' - nodejs_version: '4.1' - nodejs_version: '4.0' - nodejs_version: '0.12' - nodejs_version: '0.10' platform: - x86 ...
<|file_sep|>original/appveyor.yml --- # http://www.appveyor.com/docs/appveyor-yml # Build version format version: "{build}" # Fix line endings on Windows init: - git config --global core.autocrlf true # Do not build on tags (GitHub only) skip_tags: true environment: matrix: - nodejs_version: '4.2' - nodejs_ve...
415826cd59b463e24b41eac6941e913e059aa5e6
appveyor.yml
appveyor.yml
YAML
<|file_sep|>shell-completions/gibo-completion.bash.diff original: local cur opts opts=$( find ${GIBO_BOILERPLATES:-"$HOME/.gitignore-boilerplates"} -name "*.gitignore" -exec basename \{\} .gitignore \; ) updated: local cur prev opts <|file_sep|>shell-completions/gibo-completion.bash.diff original: COMPR...
case $COMP_CWORD in 1) COMPREPLY=($(compgen -W "dump help list update version" -- ${cur})) ;; *) subcommand="${COMP_WORDS[1]}" case $subcommand in dump) opts=$( find ${GIBO_BOILERPLATES:-"$HOME/.gitignore-boilerplat...
<|file_sep|>shell-completions/gibo-completion.bash.diff original: local cur opts opts=$( find ${GIBO_BOILERPLATES:-"$HOME/.gitignore-boilerplates"} -name "*.gitignore" -exec basename \{\} .gitignore \; ) updated: local cur prev opts <|file_sep|>shell-completions/gibo-completion.bash.diff original: COMPR...
7a2d6306edad98d907f12bb2dc3be724a9e73cbb
shell-completions/gibo-completion.bash
shell-completions/gibo-completion.bash
Shell
<|file_sep|>original/settings/ctrlp.vim nnoremap <Leader>t :CtrlP<cr> " Mimic Command-T behaviour let g:ctrlp_working_path_mode = 0 let g:ctrlp_match_window_reversed = 0 let g:ctrlp_clear_cache_on_exit=0 if executable('ag') " Use ag in CtrlP for listing files. Lightning fast and respects .gitignore let g:ctrlp_us...
nnoremap <Leader>t :CtrlP<cr> nnoremap <Leader>r :CtrlPMRUFiles<cr> " Mimic Command-T behaviour let g:ctrlp_working_path_mode = 0 let g:ctrlp_match_window_reversed = 0 let g:ctrlp_clear_cache_on_exit=0 if executable('ag') " Use ag in CtrlP for listing files. Lightning fast and respects .gitignore let g:ctrlp_user...
<|file_sep|>original/settings/ctrlp.vim nnoremap <Leader>t :CtrlP<cr> " Mimic Command-T behaviour let g:ctrlp_working_path_mode = 0 let g:ctrlp_match_window_reversed = 0 let g:ctrlp_clear_cache_on_exit=0 if executable('ag') " Use ag in CtrlP for listing files. Lightning fast and respects .gitignore let g:ctrlp_us...
d338347f7d5fd6e36a91f732d7bc495daccb186c
settings/ctrlp.vim
settings/ctrlp.vim
VimL
<|file_sep|>original/src/AppBundle/Command/ApiTokensCleanupCommand.php ->setDescription('Cleans all unused tokens') ->setHelp('Cleans all tokens last used earlier than 24h back'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $o...
->setDescription('Cleans all unused tokens') ->setHelp('Cleans all tokens last used earlier than 24h back'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $d = $this->getContainer()->get('doctrine'); ...
<|file_sep|>original/src/AppBundle/Command/ApiTokensCleanupCommand.php ->setDescription('Cleans all unused tokens') ->setHelp('Cleans all tokens last used earlier than 24h back'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $o...
b0ccebcd3ed191167a3a541a9df7287f7a1113f2
src/AppBundle/Command/ApiTokensCleanupCommand.php
src/AppBundle/Command/ApiTokensCleanupCommand.php
PHP
<|file_sep|>original/jenkins.sh bundle install --path "/home/jenkins/bundles/${JOB_NAME}" --deployment bundle exec rake db:setup bundle exec rake db:migrate # DELETE STATIC SYMLINKS AND RECONNECT... rm /var/lib/jenkins/jobs/Guides/workspace/public/images rm /var/lib/jenkins/jobs/Guides/workspace/public/javascripts rm ...
bundle install --path "/home/jenkins/bundles/${JOB_NAME}" --deployment bundle exec rake db:setup bundle exec rake db:migrate # DELETE STATIC SYMLINKS AND RECONNECT... rm /var/lib/jenkins/jobs/Guides/workspace/public/images rm /var/lib/jenkins/jobs/Guides/workspace/public/javascripts rm /var/lib/jenkins/jobs/Guides/wor...
<|file_sep|>original/jenkins.sh bundle install --path "/home/jenkins/bundles/${JOB_NAME}" --deployment bundle exec rake db:setup bundle exec rake db:migrate # DELETE STATIC SYMLINKS AND RECONNECT... rm /var/lib/jenkins/jobs/Guides/workspace/public/images rm /var/lib/jenkins/jobs/Guides/workspace/public/javascripts rm ...
d042aa7c7bfa4f9b7d8daf26ff278dfa40696f2b
jenkins.sh
jenkins.sh
Shell
<|file_sep|>original/.travis.yml language: clojure lein: lein2 node_js: - "0.11" addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-add-repository ppa:chris-lea/node.js - sudo apt-get update -q - sudo apt-get install phantomjs npm - sudo npm config s...
language: clojure lein: lein2 node_js: - "0.11" addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-add-repository -y ppa:chris-lea/node.js - sudo apt-get update -q - sudo apt-get install phantomjs npm - sudo npm config set registry http://registry.np...
<|file_sep|>original/.travis.yml language: clojure lein: lein2 node_js: - "0.11" addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-add-repository ppa:chris-lea/node.js - sudo apt-get update -q - sudo apt-get install phantomjs npm - sudo npm config s...
a5302e82c6e391e84dcc558ba23035e5bd888aab
.travis.yml
.travis.yml
YAML
<|file_sep|>original/requirements/setup.txt autoenv==1.0.0 autopep8==1.3.2 bumplus==0.0.8 bumpversion==0.5.3 chalice==1.0.2 docker-compose==1.16.1 elpy==1.15.0 epc==0.0.5 flake8==3.3.0 importmagic==0.1.7 ipdb==0.10.3 ipython==6.0.0 ipython-genutils==0.2.0 jedi==0.10.2 pre-commit==0.15.2 pylint==1.7.1 restview==2.7.0 ya...
autoenv==1.0.0 autopep8==1.3.2 bumplus==0.0.8 bumpversion==0.5.3 chalice==1.0.2 docker-compose==1.16.1 elpy==1.16.0 epc==0.0.5 flake8==3.3.0 importmagic==0.1.7 ipdb==0.10.3 ipython==6.0.0 ipython-genutils==0.2.0 jedi==0.10.2 pre-commit==0.15.2 pylint==1.7.1 restview==2.7.0 yapf==0.16.1
<|file_sep|>original/requirements/setup.txt autoenv==1.0.0 autopep8==1.3.2 bumplus==0.0.8 bumpversion==0.5.3 chalice==1.0.2 docker-compose==1.16.1 elpy==1.15.0 epc==0.0.5 flake8==3.3.0 importmagic==0.1.7 ipdb==0.10.3 ipython==6.0.0 ipython-genutils==0.2.0 jedi==0.10.2 pre-commit==0.15.2 pylint==1.7.1 restview==2.7.0 ya...
c5df83adaad124873810228ce7a51fd4cf62d660
requirements/setup.txt
requirements/setup.txt
Text
<|file_sep|>original/.github/workflows/test.yml uses: actions/setup-node@v2.1.2 with: node-version: ${{ matrix.node-version }} - name: install build dependencies run: | sudo apt-get install -y build-essential g++-4.8 libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev - name:...
uses: actions/setup-node@v2.1.2 with: node-version: ${{ matrix.node-version }} - name: install build dependencies run: | sudo apt-get install -y build-essential g++-4.8 libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev - name: npm install and test run: | npm i...
<|file_sep|>original/.github/workflows/test.yml uses: actions/setup-node@v2.1.2 with: node-version: ${{ matrix.node-version }} - name: install build dependencies run: | sudo apt-get install -y build-essential g++-4.8 libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev - name:...
f28cbf46c46719781bfffe348f10bd4977acdec4
.github/workflows/test.yml
.github/workflows/test.yml
YAML
<|file_sep|>original/pivotalcli.gemspec spec.authors = ["Shinnosuke Suzuki"] spec.email = ["sasasin@sasasin.net"] spec.summary = "CLI tool for PivotalTracker." spec.description = "CLI tool for PivotalTracker." spec.homepage = "https://github.com/sasasin/pivotalcli" spec.license ...
spec.authors = ["Shinnosuke Suzuki"] spec.email = ["sasasin@sasasin.net"] spec.summary = "CLI tool for PivotalTracker." spec.description = "CLI tool for PivotalTracker." spec.homepage = "https://github.com/sasasin/pivotalcli" spec.license = "MIT" spec.files = `gi...
<|file_sep|>original/pivotalcli.gemspec spec.authors = ["Shinnosuke Suzuki"] spec.email = ["sasasin@sasasin.net"] spec.summary = "CLI tool for PivotalTracker." spec.description = "CLI tool for PivotalTracker." spec.homepage = "https://github.com/sasasin/pivotalcli" spec.license ...
ee4851cf13f197a28108b6700a1b12d85a5662ea
pivotalcli.gemspec
pivotalcli.gemspec
Ruby
<|file_sep|>original/rxjava-proguard-rules/proguard-rules.txt -dontwarn sun.misc.** -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { long producerIndex; long consumerIndex; } -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { long producerNode; long consum...
-dontwarn sun.misc.** -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { long producerIndex; long consumerIndex; } -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { rx.internal.util.atomic.LinkedQueueNode producerNode; rx.internal.util.atomic.LinkedQueueNod...
<|file_sep|>original/rxjava-proguard-rules/proguard-rules.txt -dontwarn sun.misc.** -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { long producerIndex; long consumerIndex; } -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { long producerNode; long consum...
2a1995cb047d9ce13e202b041dc55f9ec5f53807
rxjava-proguard-rules/proguard-rules.txt
rxjava-proguard-rules/proguard-rules.txt
Text
<|file_sep|>README.md.diff original: **[Pierre-Henry Soria](http://ph7.me)** updated: - **[Pierre-Henry Soria](https://ph7.me)** <|file_sep|>original/README.md ## 💡 Authors ### Base Application **[Pierre-Henry Soria](http://ph7.me)** ### Modifications and Improvements [Achintha Gunasekara](http://www.achinthaguna...
## 💡 Authors ### Base Application - **[Pierre-Henry Soria](https://ph7.me)** ### Modifications and Improvements - [Achintha Gunasekara](http://www.achinthagunasekara.com) - [xdvrx1](https://github.com/xdvrx1) ## 📮 Contact Pierre-Henry SORIA: pierrehs [AT] hotmail [D0T] com Achintha Gunasekara: contact [AT] a...
<|file_sep|>README.md.diff original: **[Pierre-Henry Soria](http://ph7.me)** updated: - **[Pierre-Henry Soria](https://ph7.me)** <|file_sep|>original/README.md ## 💡 Authors ### Base Application **[Pierre-Henry Soria](http://ph7.me)** ### Modifications and Improvements [Achintha Gunasekara](http://www.achinthaguna...
0dec0d3932e3405eb4c4dcdbf83c7c39090336a5
README.md
README.md
Markdown
<|file_sep|>original/travis/before_script.sh #!/bin/sh set -e #brew update #brew install xctool sudo pip install cpp-coveralls --use-mirrors <|file_sep|>current/travis/before_script.sh #!/bin/sh set -e #brew update #brew install xctool sudo pip install cpp-coveralls --use-mirrors <|file_sep|>updated/travis/before...
#!/bin/sh set -e #brew update #brew install xctool #sudo pip install cpp-coveralls --use-mirrors easy_install cpp-coveralls
<|file_sep|>original/travis/before_script.sh #!/bin/sh set -e #brew update #brew install xctool sudo pip install cpp-coveralls --use-mirrors <|file_sep|>current/travis/before_script.sh #!/bin/sh set -e #brew update #brew install xctool sudo pip install cpp-coveralls --use-mirrors <|file_sep|>updated/travis/before...
b05ec41d9a0cab40ce83ae5792d634f2b12ff52a
travis/before_script.sh
travis/before_script.sh
Shell
<|file_sep|>original/litecord/api/guilds.py ''' guilds.py - All handlers under /guilds/* ''' import json import logging from ..utils import _err, _json, strip_user_data log = logging.getLogger(__name__) class GuildsEndpoint: def __init__(self, server): self.server = server async def h_post_guilds(se...
from ..utils import _err, _json, strip_user_data log = logging.getLogger(__name__) class GuildsEndpoint: def __init__(self, server): self.server = server async def h_post_guilds(self, request): pass async def h_guilds(self, request): ''' GuildsEndpoint.h_guilds H...
<|file_sep|>original/litecord/api/guilds.py ''' guilds.py - All handlers under /guilds/* ''' import json import logging from ..utils import _err, _json, strip_user_data log = logging.getLogger(__name__) class GuildsEndpoint: def __init__(self, server): self.server = server async def h_post_guilds(se...
f6c2f222db0f529d3f5906d5de7a7541e835ea77
litecord/api/guilds.py
litecord/api/guilds.py
Python