id stringlengths 4 10 | text stringlengths 4 2.14M | source stringclasses 2
values | created timestamp[s]date 2001-05-16 21:05:09 2025-01-01 03:38:30 | added stringdate 2025-04-01 04:05:38 2025-04-01 07:14:06 | metadata dict |
|---|---|---|---|---|---|
324232749 | --add-exports not weaved into args for JavaCompile
It seems, that --add-exports definitions are currently not used for JavaCompile.
Following configuration does not effect the compilerArgs:
javaModule.hacks {
exports("javafx.graphics","com.sun.javafx.scene.input",javaModule.name)
exports("javafx.graphics", "com.sun.javafx.css", javaModule.name)
}
Following snippet is a workaround:
compileJava {
doFirst{
def cli = new JigsawCLI("")
javaModule.hacks.applyHacks(cli)
def args = cli.generateArgs()
args.remove(0)
args.remove(0)
options.compilerArgs.addAll(args)
}
}
Plugin version: 0.3.1, Gradle: 4.7, Java 10.
Workaround does not work for me. It also appears like javaModule.name is null in my case. (But module name is still detected)
12:43:32.646 [INFO] [com.zyxist.chainsaw.ChainsawPlugin] Inferred module name: server
Also if I replace javaModule.name with in my case server, there are no exports written to compilerArgs.
Plugin version 0.3.1, Gradle 4.10, Java 11
| gharchive/issue | 2018-05-18T00:44:08 | 2025-04-01T06:46:22.271381 | {
"authors": [
"scholzi100",
"wadoon"
],
"repo": "zyxist/chainsaw",
"url": "https://github.com/zyxist/chainsaw/issues/37",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
2659077271 | Added favicon
Replaced existing favicon with RATTM logo
Looks great! The only thing I'd say is maybe we could replace the icon with one with a transparent background like below? Not sure though because maybe having a white background might make it clearer.
Transparent background:
White background currently:
Also, could we change the tab title to RATTM CO2 Calculator?
Good point - I replaced the favicon with a transparent one. I downscaled the image you sent to 48x48 (the recommended size for Chrome).
Looks great, thank you!
| gharchive/pull-request | 2024-11-14T14:51:52 | 2025-04-01T06:46:22.274283 | {
"authors": [
"jnnchi",
"sonofthomp"
],
"repo": "zzadxz/RATTM",
"url": "https://github.com/zzadxz/RATTM/pull/74",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
602538528 | showcase page with custom URL
My website is primarily in french, but anyhow I do have a version of my "showcase" page in all of the three languages that I support. I would like the URL to be custom to the language. For example, in french, I would like the URL to be /fr/mon-bagage and not /fr/showcase which seems very odd. The same goes for all languages.
Unfortunately, declaring a file _index.md with type = showcase in some directory is not enough for making that directory a "showcase" directory. More precisely, the rendering is wrong when one changes the name of the directory from "showcase" to anything else in that tabs (for subdirectories) don't show up in the showcase view. There's only the "summary" view that shows up.
I know that I can use Hugo aliases, but I would like more than aliases. I really would like the URL to not show "showcase" after resolution of the URL.
If I may, I would like to point out that the archive page does work regardless of the directory name the file _index.md with type = archive is placed in.
| gharchive/issue | 2020-04-18T19:53:42 | 2025-04-01T06:46:22.293449 | {
"authors": [
"sim590"
],
"repo": "zzossig/hugo-theme-zzo",
"url": "https://github.com/zzossig/hugo-theme-zzo/issues/255",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
248187848 | dbs_scrape should check if otphelper is online or not
Ideally, dbs_scrape should be able to determine if otphelper is online or not (maybe otphelper can detect network connectivity changes and save status to Firebase). This is so that dbs_scrape doesn't need to run unnecessarily, and be able to retry after N seconds/minutes.
Another way around this is to have the otphelper to report status every hour (like the hourly dbs_scrape). I think it is easier to implement it this way. dbs_scrape will only have to check if the last reported date is within an hour of current time or not.
Example: otphelper saves the date and time 201708051050, and dbs_scrape runs at 201708051100. As the two date and time are only 10 minutes apart (within an hour or 60 minutes), this passes the validation process. dbs_scrape can then judge that the otphelper is online albeit not accurate enough (if otphelper goes offline within that 10 minutes.
Done in commit 9c7041896075113ab317c23dc078179c2648b2cd
Closed the wrong issue just now
| gharchive/issue | 2017-08-05T14:23:58 | 2025-04-01T06:46:22.295607 | {
"authors": [
"zzyzy"
],
"repo": "zzyzy/rateswatcher",
"url": "https://github.com/zzyzy/rateswatcher/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
265280215 | Unity/ Using Dependency Injection
Hi,
We're trying to use dependency injection to get a global object. We're finding that the http context is null and therefore creating a new instance of the class.
modelBuilder.Filter(DefinedFilter.Context_Retailers.ToString(), (IRetailerFilterOrganisationId d, List<int> valueList)
=> valueList.Contains(d.OrganisationId), (BritanniaOnlineEntities dbContext)
=> FilterDelegates.GetContextRetailers(DefinedFilter.Context_Retailers, dbContext));
this would then call (please see bold remark)
public static List<int> GetContextRetailers(DefinedFilter thisFilter, BritanniaOnlineEntities dbContext)
{
using (var fs = new FilterState(dbContext))
{
if (!fs.IsFilterEnabled(thisFilter)) //prevent circular calls
{
return null; //doesnt matter what we return - filter is disabled.
}
fs.PauseFilter(thisFilter);
var currentContext = DependencyResolver.Current.GetService<ApplicationContext>(); **// di returns a brand new object**
var retailerIds = currentContext.GetAllowedRetailerIds(dbContext);
if (retailerIds == null)
{
// null means all are allowed. turn off the filter for this request
fs.SetFilterState(thisFilter, false);
return new List<int>();
}
else
{
return retailerIds;
}
}
}
In unity we are using the normal container and this object is registers with a PerRequestLifetimeManager. We would like this object to not be disposed of for the whole lifetime of the request.
Any idea on how we stop the filter delegate from creating a new object every time. I know this may fall in unity config but any advice is appreciated.
Thanks
Himesh
Honestly, it doesn't look at all a problem related to EF DynamicFilters but more how you use your Dependency Injection as you specified.
On the library side, we are not aware of anything related to a request, so there is nothing we can do I believe about not be disposed.
I'm not sure to either understand fully this request. Which object don't you want not to be disposed of? From my understanding, the ApplicationContext is already managed by your PerRequestLifetimeManager
Best Regards,
Jonathan
Hello @h7meshpatel ,
Could we close this issue?
Best Regards,
Jonathan
Help us to keep this library free: Donate
Hi Jonathan
Yes please.
Thanks
Himesh
Sent from my Samsung Galaxy smartphone.
-------- Original message --------
From: Jonathan Magnan notifications@github.com
Date: 21/11/2017 01:19 (GMT+00:00)
To: "zzzprojects/EntityFramework.DynamicFilters" EntityFramework.DynamicFilters@noreply.github.com
Cc: Himesh Patel himesh@hig.limited, Mention mention@noreply.github.com
Subject: Re: [zzzprojects/EntityFramework.DynamicFilters] Unity/ Using Dependency Injection (#128)
Hello @h7meshpatelhttps://github.com/h7meshpatel ,
Could we close this issue?
Best Regards,
Jonathan
Help us to keep this library free: Donatehttp://www.zzzprojects.com/contribute
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHubhttps://github.com/zzzprojects/EntityFramework.DynamicFilters/issues/128#issuecomment-345885152, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AT0HIf1hvTGPy-WrKiDACYuF243bPYRZks5s4iUEgaJpZM4P4cs7.
CONFIDENTIALITY NOTICE & DISCLAIMER
Hermitage Innovation Group Ltd is a company registered in England. Registered number: 08355093. Hermitage Innovation Group Ltd may monitor email traffic data and also the content of email for the purposes of security and performance. This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the named recipient, please notify the sender immediately and do not disclose the contents to another person, use for any purpose, or store or copy the information in any medium. Please note that any views expressed in this message are those of the individual author and do not necessarily represent those of Hermitage Innovation Group Ltd
| gharchive/issue | 2017-10-13T12:57:53 | 2025-04-01T06:46:22.308820 | {
"authors": [
"JonathanMagnan",
"h7meshpatel"
],
"repo": "zzzprojects/EntityFramework.DynamicFilters",
"url": "https://github.com/zzzprojects/EntityFramework.DynamicFilters/issues/128",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1192473536 | Initial UI setup
resolve nosetests
| gharchive/pull-request | 2022-04-05T00:47:26 | 2025-04-01T06:46:22.314812 | {
"authors": [
"lemadmax"
],
"repo": "2022-Spring-NYU-DevOps-Shopcarts/shopcarts",
"url": "https://github.com/2022-Spring-NYU-DevOps-Shopcarts/shopcarts/pull/76",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1213234170 | [FEATURE] Motion Predict In CA
Not very good, but its already in the AutoCrystal.
| gharchive/issue | 2022-04-23T07:40:07 | 2025-04-01T06:46:22.317925 | {
"authors": [
"3arthqu4ke",
"Random3131"
],
"repo": "3arthqu4ke/3arthh4ck",
"url": "https://github.com/3arthqu4ke/3arthh4ck/issues/43",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1875026912 | [bugfix] Fix additional dimensions if only one such is given
Codecov Report
Merging #275 (f21ea6a) into main (e742a0a) will increase coverage by 0.07%.
Report is 9 commits behind head on main.
The diff coverage is 78.04%.
:exclamation: Current head f21ea6a differs from pull request most recent head 7a33a59. Consider uploading reports for the commit 7a33a59 to get more accurate results
:exclamation: Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the GitHub App Integration for your organization. Read more.
Additional details and impacted files
@@ Coverage Diff @@
## main #275 +/- ##
==========================================
+ Coverage 74.72% 74.79% +0.07%
==========================================
Files 26 26
Lines 3185 3214 +29
==========================================
+ Hits 2380 2404 +24
- Misses 805 810 +5
Flag
Coverage Δ
cxx
87.92% <ø> (ø)
python
70.11% <78.04%> (+0.15%)
:arrow_up:
Flags with carried forward coverage won't be shown. Click here to find out more.
Files Changed
Coverage Δ
src/py4dgeo/epoch.py
89.95% <78.04%> (-0.95%)
:arrow_down:
Continue to review full report in Codecov by Sentry.
Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 4fec968...7a33a59. Read the comment docs.
| gharchive/pull-request | 2023-08-31T08:20:37 | 2025-04-01T06:46:22.330604 | {
"authors": [
"codecov-commenter",
"dokempf"
],
"repo": "3dgeo-heidelberg/py4dgeo",
"url": "https://github.com/3dgeo-heidelberg/py4dgeo/pull/275",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2077329959 | Create function for computing general terms
Hey @turnip314, sorry it took me so long to check out the changes you have made (and also, sorry for not getting further yet). Very cool stuff, good work! 🚀
I've pushed a bunch of additional commits that improve the changes from your branch a bit; nothing serious, mainly concerning testing. If you'd like to cross-review my changes, I recommend just checking them commit-wise; I've tried to keep logically related changes together.
The only thing that might be worth discussing is the name for the function computing coefficients in general expansions; currently GeneralTermAsymptotics -- I feel like we could probably rename this to something that is a bit closer to what the function does. Definitely stuff for a follow-up PR though; just wanted to document my thought somewhere.
Given that the tests pass, I'll just merge this for now and continue working on your next set of changes.
| gharchive/pull-request | 2024-01-11T18:17:01 | 2025-04-01T06:46:22.345300 | {
"authors": [
"behackl",
"turnip314"
],
"repo": "ACSVMath/sage_acsv",
"url": "https://github.com/ACSVMath/sage_acsv/pull/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1044580025 | Update PPP and use cases in DG
LGTM
| gharchive/pull-request | 2021-11-04T10:25:10 | 2025-04-01T06:46:22.353573 | {
"authors": [
"Ongzl",
"softmagnet"
],
"repo": "AY2122S1-CS2103T-F11-1/tp",
"url": "https://github.com/AY2122S1-CS2103T-F11-1/tp/pull/265",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1972105498 | split up AddAppointmentCommand execute method
Has been addressed in one of the commits
| gharchive/issue | 2023-11-01T10:31:08 | 2025-04-01T06:46:22.357637 | {
"authors": [
"Mohammed-Faizzzz",
"cmHuang777"
],
"repo": "AY2324S1-CS2103T-T09-3/tp",
"url": "https://github.com/AY2324S1-CS2103T-T09-3/tp/issues/140",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1990823446 | Edit PPP
LGTM
| gharchive/pull-request | 2023-11-13T14:53:24 | 2025-04-01T06:46:22.358201 | {
"authors": [
"devanshubisht",
"tiongjjyi"
],
"repo": "AY2324S1-CS2103T-W15-4/tp",
"url": "https://github.com/AY2324S1-CS2103T-W15-4/tp/pull/360",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1123680320 | add github actions to run format, clippy and tests (if any)
In case it helps as reference
https://github.com/facundoolano/rpg-cli/blob/main/.github/workflows/tests.yml
| gharchive/issue | 2022-02-04T00:11:41 | 2025-04-01T06:46:22.361507 | {
"authors": [
"MarcoLugo",
"facundoolano"
],
"repo": "AdRoll/rustenstein",
"url": "https://github.com/AdRoll/rustenstein/issues/4",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1973261428 | close #5 : Detect html codes in simple description
Solve issue: Códigos html nas descrições simples
close #5 : Detect html codes in simple description
Fix columns names
| gharchive/pull-request | 2023-11-01T23:38:18 | 2025-04-01T06:46:22.364166 | {
"authors": [
"MarioCarvalhoBr"
],
"repo": "AdaptaBrasil/data_validate",
"url": "https://github.com/AdaptaBrasil/data_validate/pull/27",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1274983724 | Merge of Advanced-Scenario Implementation
Closes #23 and #27
| gharchive/pull-request | 2022-06-17T12:40:06 | 2025-04-01T06:46:22.366834 | {
"authors": [
"MACEL94"
],
"repo": "AgicCloud/Demo.Aks.Performance",
"url": "https://github.com/AgicCloud/Demo.Aks.Performance/pull/28",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2109159770 | update packages
:white_check_mark: Build TheIdServer 7.4.7-fix-dependencies1-0205 completed (commit https://github.com/Aguafrommars/TheIdServer/commit/e4bb35750d by @invalid-email-address)
| gharchive/pull-request | 2024-01-31T02:29:36 | 2025-04-01T06:46:22.369226 | {
"authors": [
"AppVeyorBot",
"aguacongas"
],
"repo": "Aguafrommars/TheIdServer",
"url": "https://github.com/Aguafrommars/TheIdServer/pull/1180",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
943984681 | update packages
:white_check_mark: Build TheIdServer 3.0.1-fix-dependencies1-0055 completed (commit https://github.com/Aguafrommars/TheIdServer/commit/de6fb04001 by @)
| gharchive/pull-request | 2021-07-14T02:52:50 | 2025-04-01T06:46:22.370762 | {
"authors": [
"AppVeyorBot",
"aguacongas"
],
"repo": "Aguafrommars/TheIdServer",
"url": "https://github.com/Aguafrommars/TheIdServer/pull/482",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1628225874 | update packages
:white_check_mark: Build TheIdServer 7.2.2-fix-dependencies1-0006 completed (commit https://github.com/Aguafrommars/TheIdServer/commit/b9b7d84aad by @)
| gharchive/pull-request | 2023-03-16T20:30:20 | 2025-04-01T06:46:22.372071 | {
"authors": [
"AppVeyorBot",
"aguacongas"
],
"repo": "Aguafrommars/TheIdServer",
"url": "https://github.com/Aguafrommars/TheIdServer/pull/978",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1557281586 | Updating FreeRTOS and FreeRTOS-Plus libraries to latest FreeRTOS release.
We should probably add Freertos to the filter for running BLE tests since we do use it. In the meantime I am running a BLE test on the changes made in this PR in another test PR #362
| gharchive/pull-request | 2023-01-25T21:14:54 | 2025-04-01T06:46:22.394013 | {
"authors": [
"EdwinFairchild",
"Jacob-Scheiffler"
],
"repo": "Analog-Devices-MSDK/msdk",
"url": "https://github.com/Analog-Devices-MSDK/msdk/pull/361",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2265706789 | Configure selenium grid (node-docker) to be able to be deployable to ACA
Inspo: https://github.com/SeleniumHQ/docker-selenium/blob/trunk/docker-compose-v3.yml
| gharchive/issue | 2024-04-26T12:42:32 | 2025-04-01T06:46:22.395268 | {
"authors": [
"AndersBjerregaard"
],
"repo": "AndersBjerregaard/BetterBoard-BA",
"url": "https://github.com/AndersBjerregaard/BetterBoard-BA/issues/24",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1959503635 | backened logic progress
Backened logic in progress
| gharchive/pull-request | 2023-10-24T15:17:56 | 2025-04-01T06:46:22.398686 | {
"authors": [
"RonSparx"
],
"repo": "Anit2000/calculator-app",
"url": "https://github.com/Anit2000/calculator-app/pull/4",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1330887711 | Create Dockerfile
test
okay
| gharchive/pull-request | 2022-08-07T01:37:59 | 2025-04-01T06:46:22.441154 | {
"authors": [
"ArnabehMB"
],
"repo": "ArnabehMB/hello-github-actions",
"url": "https://github.com/ArnabehMB/hello-github-actions/pull/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2612700298 | Fix typo in README.md
Thank you! I think that paragraph could do with a bigger rewrite, wrote things in too much of a rush, but no typo is better than a typo
| gharchive/pull-request | 2024-10-24T22:55:03 | 2025-04-01T06:46:22.442866 | {
"authors": [
"ArthurBrussee",
"johschmitz"
],
"repo": "ArthurBrussee/brush",
"url": "https://github.com/ArthurBrussee/brush/pull/3",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
341496490 | Update samples for Speech SDK release 0.5.0
Will fix build soon.
| gharchive/pull-request | 2018-07-16T12:21:16 | 2025-04-01T06:46:22.468813 | {
"authors": [
"mahilleb-msft"
],
"repo": "Azure-Samples/cognitive-services-speech-sdk",
"url": "https://github.com/Azure-Samples/cognitive-services-speech-sdk/pull/20",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1573260140 | Credential handlers - Consume from upstream SDK's
Python: https://github.com/Azure/azure-dev/pull/1574
.NET and JS have not released the preview version yet
JS: https://github.com/Azure/azure-dev/pull/1659
Java: https://github.com/Azure/azure-dev/pull/1661
Java blocked by: https://github.com/Azure/azure-sdk-for-java/issues/34255
Manage Identity is not working since Identity version 1.8.1, so, when using the beta library with the Azure Developer CLI credential, the api server cannot init on App-service because ManageIdentity is not detected.
| gharchive/issue | 2023-02-06T20:52:34 | 2025-04-01T06:46:22.472099 | {
"authors": [
"rajeshkamal5050",
"vhvb1989"
],
"repo": "Azure/azure-dev",
"url": "https://github.com/Azure/azure-dev/issues/1505",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1384122652 | Rename ExpiresOn to ExpireOn
/azp run net - storage - mgmt
/azp run net - apimanagement - mgmt
API change check
APIView has identified API level changes in this PR and created following API reviews.
Azure.ResourceManager.ApiManagement
/azp run net - storage - mgmt
/azp run net - apimanagement - mgmt
| gharchive/pull-request | 2022-09-23T17:41:14 | 2025-04-01T06:46:22.474624 | {
"authors": [
"ArthurMa1978",
"azure-sdk"
],
"repo": "Azure/azure-sdk-for-net",
"url": "https://github.com/Azure/azure-sdk-for-net/pull/31398",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1784789775 | Bump central dependency version for Azure.Core.Expressions.DataFactory
API change check
API changes are not detected in this pull request.
| gharchive/pull-request | 2023-07-02T19:16:47 | 2025-04-01T06:46:22.475526 | {
"authors": [
"JoshLove-msft",
"azure-sdk"
],
"repo": "Azure/azure-sdk-for-net",
"url": "https://github.com/Azure/azure-sdk-for-net/pull/37363",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1444421198 | demo 1
API change check
API changes are not detected in this pull request.
| gharchive/pull-request | 2022-11-10T19:05:57 | 2025-04-01T06:46:22.476495 | {
"authors": [
"azure-sdk",
"xiangyan99"
],
"repo": "Azure/azure-sdk-for-python",
"url": "https://github.com/Azure/azure-sdk-for-python/pull/27431",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
527448070 | Only bootstrap libraries when running npm install from root folder to speed up install time
Coverage decreased (-1.2%) to 73.76% when pulling ded56af7e5c4b6c30c083855ed8bb784d0adcad2 on lerna-bootstrap-libraries into 1d8a45b02404f1926464bc48f8cb925ff448442d on dev.
| gharchive/pull-request | 2019-11-22T22:39:14 | 2025-04-01T06:46:22.478055 | {
"authors": [
"coveralls",
"jasonnutter"
],
"repo": "AzureAD/microsoft-authentication-library-for-js",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js/pull/1129",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1639991084 | feat: add Dockerfile
Apologies or the noise
| gharchive/pull-request | 2023-03-24T20:26:51 | 2025-04-01T06:46:22.481242 | {
"authors": [
"misterbisson"
],
"repo": "BKcore/HexGL",
"url": "https://github.com/BKcore/HexGL/pull/61",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2529145435 | consistency with the other tests
Please make sure to label your PR with "bug", "new feature" or "breaking change" label(s).
To prevent this PR from going to the changelog marked it with the "skip changelog" label.
Snapshot stored with reference name:
refs/pull/15581/merge
Test environment:
https://snapshots-cvgtc2eugrd3cgfd.z01.azurefd.net/refs/pull/15581/merge/index.html
To test a playground add it to the URL, for example:
https://snapshots-cvgtc2eugrd3cgfd.z01.azurefd.net/refs/pull/15581/merge/index.html#WGZLGJ#4600
Links to test babylon tools with this snapshot:
https://playground.babylonjs.com/?snapshot=refs/pull/15581/merge
https://sandbox.babylonjs.com/?snapshot=refs/pull/15581/merge
https://gui.babylonjs.com/?snapshot=refs/pull/15581/merge
https://nme.babylonjs.com/?snapshot=refs/pull/15581/merge
To test the snapshot in the playground with a playground ID add it after the snapshot query string:
https://playground.babylonjs.com/?snapshot=refs/pull/15581/merge#BCU1XR#0
WebGL2 visualization test reporter:
https://snapshots-cvgtc2eugrd3cgfd.z01.azurefd.net/refs/pull/15581/merge/testResults/webgl2playwright/index.html
| gharchive/pull-request | 2024-09-16T18:14:46 | 2025-04-01T06:46:22.486022 | {
"authors": [
"RaananW",
"bjsplat"
],
"repo": "BabylonJS/Babylon.js",
"url": "https://github.com/BabylonJS/Babylon.js/pull/15581",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2493062776 | Convert to Rojo
Oops, wrong repository
Well...
| gharchive/issue | 2024-08-28T22:03:42 | 2025-04-01T06:46:22.488452 | {
"authors": [
"Christian-Toney"
],
"repo": "Beastslash/roblox-dialogue-maker",
"url": "https://github.com/Beastslash/roblox-dialogue-maker/issues/94",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1088788255 | Reacted with exclamation to image, but reaction never showed on my side. It sent to everyone though
Backing out and re entering didn't work. Weirdly, reacting to a different message did work and then it finally showed the original exclamation
Closing as I'm betting REST API transition will have solved these message not updating issues
| gharchive/issue | 2021-12-26T14:59:00 | 2025-04-01T06:46:22.498809 | {
"authors": [
"tneotia",
"zlshames"
],
"repo": "BlueBubblesApp/bluebubbles-app",
"url": "https://github.com/BlueBubblesApp/bluebubbles-app/issues/1822",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
186158859 | Set cache headers
duplicate of https://github.com/BostonGlobe/elections-2016/issues/315
| gharchive/issue | 2016-10-30T19:58:05 | 2025-04-01T06:46:22.500461 | {
"authors": [
"gabrielflorit"
],
"repo": "BostonGlobe/elections-2016",
"url": "https://github.com/BostonGlobe/elections-2016/issues/345",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1402431293 | Thinking refactoring
Codecov Report
Base: 2.38% // Head: 2.38% // No change to project coverage :thumbsup:
Coverage data is based on head (e0bcccf) compared to base (41aa8cf).
Patch coverage: 0.00% of modified lines in pull request are covered.
Additional details and impacted files
@@ Coverage Diff @@
## master #6 +/- ##
======================================
Coverage 2.38% 2.38%
======================================
Files 1 1
Lines 42 42
======================================
Hits 1 1
Misses 41 41
Impacted Files
Coverage Δ
lib/app/modules/dashboard/dashboard_page.dart
2.38% <0.00%> (ø)
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
| gharchive/pull-request | 2022-10-09T23:24:26 | 2025-04-01T06:46:22.512350 | {
"authors": [
"Bwolfs2",
"codecov-commenter"
],
"repo": "Bwolfs2/coffsy_movie_app",
"url": "https://github.com/Bwolfs2/coffsy_movie_app/pull/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1967066221 | Create Kafka topic to communicate Order service with Kitchen workers
#16
| gharchive/issue | 2023-10-29T16:51:02 | 2025-04-01T06:46:22.516082 | {
"authors": [
"Marek00Malik"
],
"repo": "C0deH0use/mc-burger-orders",
"url": "https://github.com/C0deH0use/mc-burger-orders/issues/5",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1594992799 | Feature/UI changes
Already merged in #4
| gharchive/pull-request | 2023-02-22T12:08:23 | 2025-04-01T06:46:22.518632 | {
"authors": [
"rohan-couture"
],
"repo": "CAI-TECHNOLOGIES/cai-ext-db-explorer",
"url": "https://github.com/CAI-TECHNOLOGIES/cai-ext-db-explorer/pull/5",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1600232514 | completed, added JavaScript
| gharchive/pull-request | 2023-02-26T22:52:33 | 2025-04-01T06:46:22.522293 | {
"authors": [
"CML120"
],
"repo": "CML120/prework-study-guide",
"url": "https://github.com/CML120/prework-study-guide/pull/8",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2508274292 | update workflows to work with new and updated folder structure
backend tests check still failing because new folder structure is not yet in main branch.
will merge with 4/5 successful checks.
| gharchive/pull-request | 2024-09-05T16:40:57 | 2025-04-01T06:46:22.525238 | {
"authors": [
"Tinogwanz"
],
"repo": "COS301-SE-2024/MyCity",
"url": "https://github.com/COS301-SE-2024/MyCity/pull/686",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2326089069 | Add successful proposal submission
Please update the tests/README.md to check the test which is now done
btw, still not done: Re-applying a proposal that has already passed : make sure the contract rejects the submission of a proposal that has expired in the past
Otherwise LGTM
| gharchive/pull-request | 2024-05-30T16:30:02 | 2025-04-01T06:46:22.529442 | {
"authors": [
"Nerrolol",
"tensojka"
],
"repo": "CarmineOptions/konoha",
"url": "https://github.com/CarmineOptions/konoha/pull/99",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1209851553 | Bump deck.gl to 8.7.7
Pull Request Test Coverage Report for Build 2196688069
0 of 0 changed or added relevant lines in 0 files are covered.
No unchanged relevant lines lost coverage.
Overall coverage remained the same at 74.799%
Totals
Change from base Build 2196660484:
0.0%
Covered Lines:
1444
Relevant Lines:
1825
💛 - Coveralls
| gharchive/pull-request | 2022-04-20T15:28:26 | 2025-04-01T06:46:22.534034 | {
"authors": [
"Clebal",
"coveralls"
],
"repo": "CartoDB/carto-react",
"url": "https://github.com/CartoDB/carto-react/pull/378",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1295978624 | Release 1.3.0-beta.6
Pull Request Test Coverage Report for Build 2623745680
0 of 0 changed or added relevant lines in 0 files are covered.
No unchanged relevant lines lost coverage.
Overall coverage remained the same at 72.015%
Totals
Change from base Build 2623681978:
0.0%
Covered Lines:
1606
Relevant Lines:
2087
💛 - Coveralls
| gharchive/pull-request | 2022-07-06T15:06:15 | 2025-04-01T06:46:22.538562 | {
"authors": [
"Clebal",
"coveralls"
],
"repo": "CartoDB/carto-react",
"url": "https://github.com/CartoDB/carto-react/pull/449",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1730160816 | how we can specify port nd host while running chainlit.. i need to configure it to different port
Port and hostname are configurable through the CHAINLIT_HOST (defaults to 0.0.0.0) and CHAINLIT_PORT (defaults to 8000) env variables. You can also use --host and --port when running chainlit run ....
| gharchive/issue | 2023-05-29T06:26:15 | 2025-04-01T06:46:22.541057 | {
"authors": [
"naimavahab",
"willydouhard"
],
"repo": "Chainlit/chainlit",
"url": "https://github.com/Chainlit/chainlit/issues/14",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1755560906 | DisplayLine: breaking run's to apply's and draw() parameter renaming
How would a user unregister any of these now?
Using the unregister methods provided
Using the unregister methods provided
Ah didn't see that
| gharchive/pull-request | 2023-06-13T19:55:42 | 2025-04-01T06:46:22.550194 | {
"authors": [
"Marvinschs",
"camnwalter"
],
"repo": "ChatTriggers/ctjs",
"url": "https://github.com/ChatTriggers/ctjs/pull/17",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1234832977 | How to train only Single GPU ?
@tysnow2022 The training requires bs at least 2. Could you provide your GPU memory info by nvidia-smi in the console? It may due to your limited GPU memory.
@tysnow2022 For evaluation it may require not that large batch size. You can set TEST.IMS_PER_BATCH = 1 during testing.
@tysnow2022 The GPU memory is only 8G thus is not that sufficient. To disable evaluation during training, you may comment https://github.com/CityU-AIM-Group/NLTE/blob/6c67f8148395e9170a97d6d89e585d14cd14d1f0/maskrcnn_benchmark/engine/trainer.py#L238-L273 and https://github.com/CityU-AIM-Group/NLTE/blob/6c67f8148395e9170a97d6d89e585d14cd14d1f0/maskrcnn_benchmark/engine/trainer.py#L275. Another possible solution is to comment https://github.com/CityU-AIM-Group/NLTE/blob/6c67f8148395e9170a97d6d89e585d14cd14d1f0/maskrcnn_benchmark/modeling/roi_heads/box_head/roi_box_predictors.py#L48-L73 (disable inner domain aggregation). It may affect the performance a little bit, but will save quite a lot GPU memory.
Ok thank you The evaluation works but I think it's not the correct result I use the pretrained model provided and it shows the these results
@tysnow2022 The evaluated results seem fine at my side
Please follow the following instructions to perform evaluation:
Download the trained model and put it under ./NLTE/
Run: python tools/train_net.py --config-file ./configs/da_faster_rcnn/e2e_da_c2f.yaml MODEL.WEIGHT model_best_0.45.pth OUTPUT_DIR ./test_trained_cityscapes SOLVER.TEST_ONLY True
I was using test_net.py and other e2e_da_faster_rcnn_R_50_C4_cityscapes_to_foggy_cityscapes.yaml file. it works now.
Can you please check this error i encountered it during training process?
@tysnow2022 Sorry for my late reply. I have checked the issue and found that a previous version of categoryaware_da_heads.py has been updated. You may clone the current repo again and run it, or follow my latest commit to modify your code.
Oh thank you for the update let me check it now .
when i restart the training it starts from the beginning How can i add a checkpoint or can you update it please?
@tysnow2022 You cannot resume training without saving a checkpoint. You can add
'''
if iteration % 5000== 0:
save_model_only(model2, os.path.join(cfg.OUTPUT_DIR, "model_{:07d}.pth".format(iteration)))
'''
before
https://github.com/CityU-AIM-Group/NLTE/blob/0e9083abea1dbc7818f63a2e9004c02d836044ed/maskrcnn_benchmark/engine/trainer.py#L254
And add MODEL.WEIGHT $YOURCHECKPOINT when resuming training. I recommend you to refer to https://github.com/facebookresearch/maskrcnn-benchmark/blob/main/maskrcnn_benchmark/engine/trainer.py for more details about the training logic in maskrcnn-benchmark framework.
Okay sorry for late reply i got it thanks.
| gharchive/issue | 2022-05-13T07:13:50 | 2025-04-01T06:46:22.574539 | {
"authors": [
"tysnow2022",
"xinyuliu-jeffrey"
],
"repo": "CityU-AIM-Group/NLTE",
"url": "https://github.com/CityU-AIM-Group/NLTE/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1309809395 | Support expressions as IP function arguments
The changes were approved by @kashwy.
| gharchive/pull-request | 2022-07-19T17:01:29 | 2025-04-01T06:46:22.577942 | {
"authors": [
"ltrk2"
],
"repo": "ClibMouse/ClickHouse",
"url": "https://github.com/ClibMouse/ClickHouse/pull/19",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1719875521 | Add ability to initialize ART for android java fuzzers
Friendly bump @fmeum
And while I have your attention, wondering if it's okay if I open a separate PR to add android as a supported platform in the README, as well as including an example.
@marktefftech Could you resolve the conflicts with @TheCoryBarker's PR? README changes, especially including examples, are highly appreciated!
@marktefftech Some conflicts with main remain. I don't know why the CI checks aren't running, hopefully they will when you rebase.
@fmeum Apologies for the delay, I had to connect with Cory for rebasing strategy. Looks like the checks ran successfully now.
| gharchive/pull-request | 2023-05-22T15:00:19 | 2025-04-01T06:46:22.589208 | {
"authors": [
"fmeum",
"marktefftech"
],
"repo": "CodeIntelligenceTesting/jazzer",
"url": "https://github.com/CodeIntelligenceTesting/jazzer/pull/743",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
1190728533 | Slightly tilt the page
How did you generate the UUID?
How did you generate the UUID? Was it from an online generator?
Yes it was lol. I wasn't sure how I was supposed to generate it.
How did you generate the UUID? Was it from an online generator?
Yes it was lol. I wasn't sure how I was supposed to generate it.
Thanks for getting back to me. I ended up doing the same thing. 😅
Can you keep rotating every random minutes? ,🤣
| gharchive/pull-request | 2022-04-02T20:08:37 | 2025-04-01T06:46:22.595379 | {
"authors": [
"Jwiggiff",
"jaas666",
"zayadur"
],
"repo": "CodingGarden/troll-garden",
"url": "https://github.com/CodingGarden/troll-garden/pull/42",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2631526582 | Pull penetration base off of weapon resource
After thinking about this ticket I realized that this isn't really needed.
Both Weapon Resources and Weapons should have there own Penetration, as both ammo and the weapon shooting the ammo can impact the performance of the penetration.
For instance, a heavy bow should have slightly more penetration than a light bow. But they should both get improved penetration from a armor piercing arrow such as a Bodkin Arrow.
| gharchive/issue | 2024-11-03T22:39:37 | 2025-04-01T06:46:22.596582 | {
"authors": [
"JavkWick"
],
"repo": "CogentRoleplayCommunity/FogentRoleplay",
"url": "https://github.com/CogentRoleplayCommunity/FogentRoleplay/issues/60",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1739452788 | Research
setting up this https://github.com/wynddao/wynddex/pull/15
Can you please add some description here?
| gharchive/pull-request | 2023-06-03T11:39:21 | 2025-04-01T06:46:22.598997 | {
"authors": [
"blasrodri",
"dzmitry-lahoda"
],
"repo": "ComposableFi/cosmwasm-vm",
"url": "https://github.com/ComposableFi/cosmwasm-vm/pull/31",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2370467519 | feat: #3 New batch export function for files added
https://github.com/CrazyMrYan/upload-file-service/issues/3
| gharchive/pull-request | 2024-06-24T14:56:19 | 2025-04-01T06:46:22.610052 | {
"authors": [
"CrazyMrYan"
],
"repo": "CrazyMrYan/upload-file-service",
"url": "https://github.com/CrazyMrYan/upload-file-service/pull/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1269913979 | Configurable alerting (dev)
Codecov Report
Merging #786 (52fc0cf) into dev (8baf5e0) will increase coverage by 2.33%.
The diff coverage is 79.75%.
@@ Coverage Diff @@
## dev #786 +/- ##
==========================================
+ Coverage 73.80% 76.14% +2.33%
==========================================
Files 127 138 +11
Lines 11462 14037 +2575
==========================================
+ Hits 8460 10688 +2228
- Misses 3002 3349 +347
Impacted Files
Coverage Δ
assemblyline/common/postprocess.py
78.31% <78.31%> (ø)
assemblyline/odm/__init__.py
85.71% <85.00%> (-14.29%)
:arrow_down:
assemblyline/odm/base.py
85.04% <100.00%> (+3.03%)
:arrow_up:
assemblyline/odm/models/actions.py
100.00% <100.00%> (ø)
assemblyline/odm/models/result.py
91.60% <0.00%> (-5.93%)
:arrow_down:
assemblyline/odm/models/config.py
99.22% <0.00%> (-0.26%)
:arrow_down:
assemblyline/odm/models/alert.py
100.00% <0.00%> (ø)
assemblyline/odm/models/service.py
100.00% <0.00%> (ø)
assemblyline/odm/models/service_delta.py
100.00% <0.00%> (ø)
assemblyline/odm/models/ontology/ontology.py
100.00% <0.00%> (ø)
... and 22 more
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 8baf5e0...52fc0cf. Read the comment docs.
| gharchive/pull-request | 2022-06-13T20:24:15 | 2025-04-01T06:46:22.627982 | {
"authors": [
"cccs-douglass",
"codecov-commenter"
],
"repo": "CybercentreCanada/assemblyline-base",
"url": "https://github.com/CybercentreCanada/assemblyline-base/pull/786",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1114314703 | dar me gusta en una cancion
[ ] El usuario podrá dar “Me gusta” a las canciones,
guardándolas automáticamente en el apartado “Mis
canciones”
| gharchive/issue | 2022-01-25T20:10:03 | 2025-04-01T06:46:22.645774 | {
"authors": [
"Dalamov"
],
"repo": "Dalamov/Bragify",
"url": "https://github.com/Dalamov/Bragify/issues/17",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1416901876 | Added new Scripts to README.md
Please resolve the conflicts @nishantattrey07
Please resolve merge conflicts @nishantattrey07
| gharchive/pull-request | 2022-10-20T16:12:48 | 2025-04-01T06:46:22.676277 | {
"authors": [
"DhanushNehru",
"nishantattrey07"
],
"repo": "DhanushNehru/Python-Scripts",
"url": "https://github.com/DhanushNehru/Python-Scripts/pull/117",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1971089897 | make esteemer convert gaps to absolute value
Esteemer should prioritize candidates based on the absolute value of the gap size, such that larger negative gaps are prioritized over smaller positive gaps.
How to test:
(Given) Create a data set with one measure that has the goal level equal to the recipient's performance level, then set the benchmark data to establish:
(When) - a positive gap for 75th percentile benchmark that is of size 1, and a negative gap for the 90th percentile benchmark of size 10,
(Then) Esteemer should choose the 90th percentile candidate (with social worse) over the 75th percentile candidate (with social better)
(and when)- a positive gap for 75th percentile benchmark that is of size 10, and a negative gap for the 90th percentile benchmark of size 1,
(Then) Esteemer should choose the 75th percentile candidate (with social better) over the 90th percentile candidate (with social worse)
@zachll I am not able to recreate the bug. I have fixed couple of bugs unrelated to the issue, may be that resolved this issue. May be we can test more today.
| gharchive/issue | 2023-10-31T18:34:46 | 2025-04-01T06:46:22.682945 | {
"authors": [
"icejag",
"zachll"
],
"repo": "Display-Lab/precision-feedback-pipeline",
"url": "https://github.com/Display-Lab/precision-feedback-pipeline/issues/104",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2011197789 | Make a safe dataset download script
Zmieniłbym nazwę pliku ze skryptem na jakiś setup niż make, poza tym ok
Warto się zastanowić nad strukturą kodu (i czy jesteśmy w stanie wygrać z setuptools/pyproject), bo najlepiej trzymać to razem z resztą kodu, ale poza pakietem, tzn (za Cookiecutter):
data/
raw/
docs/
notebooks/
src/
data/
make_dataset.py
wimu10/
...
Jak nie jest częścią pakietu to nie trzymajmy w pakiecie. Chcesz to używać gdzieś poza notebookami?
Chcesz to używać gdzieś poza notebookami?
Nie, ale wolę trzymać kod razem (niekoniecznie w ramach biblioteki). Obecna opcja, tzn. trzymanie w tym samym folderze, co dane, jest o tyle niebezpieczna, że ktoś może wylać skrypt z kąpielą przy czyszczeniu. Dlatego IMO powinniśmy go mieć albo pod src/, albo w korzeniu, jak też się czasami robi w projektach ML-owych (czemu tak od razu nie zrobiłem? nie wiem - ale zaraz poprawię).
Dla mnie spoko
Możesz mergować nie umiem dać appr z telefonera
| gharchive/pull-request | 2023-11-26T20:43:41 | 2025-04-01T06:46:22.687354 | {
"authors": [
"MiniaczQ",
"MortonPL"
],
"repo": "Dove6/WIMU10",
"url": "https://github.com/Dove6/WIMU10/pull/13",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2599199086 | Fix space and buttons and emotes
#2599
| gharchive/pull-request | 2024-10-19T13:50:00 | 2025-04-01T06:46:22.689673 | {
"authors": [
"romain22222"
],
"repo": "DraftBot-A-Discord-Adventure/DraftBot",
"url": "https://github.com/DraftBot-A-Discord-Adventure/DraftBot/pull/2602",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1282776178 | Subtask: Storybook with Object Selector
Unfortunately, it seems like this may not be possible in the current state of the application. This component will require the Storybook to have a backend server defined but we don't really have a good means to do that in Storybook today. Thanks for your work on this @kperk103 and sorry we didn't catch that sooner.
I am going to close this as "not planned". We can reconsider some day as part of a more holistic solution (for example, allow viewing any editable components in Storybook in their editing state).
| gharchive/issue | 2022-06-23T18:18:00 | 2025-04-01T06:46:22.707832 | {
"authors": [
"kylelaker",
"tuckerzp"
],
"repo": "EasyDynamics/oscal-react-library",
"url": "https://github.com/EasyDynamics/oscal-react-library/issues/469",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1150298482 | Add how to cite information to chapters
Add record to chapters
| gharchive/pull-request | 2022-02-25T10:41:09 | 2025-04-01T06:46:22.710274 | {
"authors": [
"jlaasonen"
],
"repo": "ElectronicBabylonianLiterature/ebl-frontend",
"url": "https://github.com/ElectronicBabylonianLiterature/ebl-frontend/pull/209",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1061548631 | cors
@EzraWeller I reoganized the endpoints and added cors here. Could you do a quick review and merge?
| gharchive/pull-request | 2021-11-23T17:35:08 | 2025-04-01T06:46:22.713455 | {
"authors": [
"jessebmiller"
],
"repo": "EmblemStudio/Aavenluutn",
"url": "https://github.com/EmblemStudio/Aavenluutn/pull/6",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2132574012 | Use 64 bit interlocked functions for 64 bit operations
Manually merged into dev (at some point over the past month).
| gharchive/pull-request | 2024-02-13T15:23:14 | 2025-04-01T06:46:22.720363 | {
"authors": [
"ravencgg",
"ryanfleury"
],
"repo": "EpicGamesExt/raddebugger",
"url": "https://github.com/EpicGamesExt/raddebugger/pull/153",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1793551509 | Support Java runtimes from PATH which doesn't fit to looksLikeJavaHome
Two concerns:
i) if multiple runtimes (not "looks like" java home) specified in PATH, e.g. PATH=path-to-jdk-a;path-to-jdk-b; This approach will only recognize jdk-a.
ii) executing java command is expensive as it launchs jvm.
One approach is to iterate every entry in PATH, if bin/java exists, mark it as a Java home directory. It would avoid to launch JVM but only filesystem io cost.
Another thing I've been thinking is, provide options to specify whether to search each source for java home directories. E.g.
type Options = {
checkJAVAHOME: boolean
checkSDKMan: boolean
checkPATH: boolean
...
}
Make cheap ones default to true, and expensive ones default to false. Then the new changes won't affect other users, and it also unblock you perform a more aggressive search with more candidates.
WDYT?
Two concerns:
i) if multiple runtimes (not "looks like" java home) specified in PATH, e.g. PATH=path-to-jdk-a;path-to-jdk-b; This approach will only recognize jdk-a.
ii) executing java command is expensive as it launchs jvm.
One approach is to iterate every entry in PATH, if bin/java exists, mark it as a Java home directory. It would avoid to launch JVM but only filesystem io cost.
Another thing I've been thinking is, provide options to specify whether to search each source for java home directories. E.g.
type Options = {
checkJAVAHOME: boolean
checkSDKMan: boolean
checkPATH: boolean
...
}
Make cheap ones default to true, and expensive ones default to false. Then the new changes won't affect other users, and it also unblock you perform a more aggressive search with more candidates.
WDYT?
Agree with both concerns, but the second one is out of scope of this PR.
Will change the current PR to checking bin/java and create a new one with flags for sources later
@nulls I suggest you also add -XX:+IgnoreUnrecognizedVMOptions when launching a JVM.
This way, it'll work even with Java 6.
@nulls I suggest you also add -XX:+IgnoreUnrecognizedVMOptions when launching a JVM.
This way, it'll work even with Java 6.
thanks, but I avoid running java to detect java.home as suggested @Eskibear
@Eskibear
Two concerns:
i) if multiple runtimes (not "looks like" java home) specified in PATH, e.g. PATH=path-to-jdk-a;path-to-jdk-b; This approach will only recognize jdk-a.
ii) executing java command is expensive as it launchs jvm.
One approach is to iterate every entry in PATH, if bin/java exists, mark it as a Java home directory. It would avoid to launch JVM but only filesystem io cost.
Another thing I've been thinking is, provide options to specify whether to search each source for java home directories. E.g.
type Options = {
checkJAVAHOME: boolean
checkSDKMan: boolean
checkPATH: boolean
...
}
Make cheap ones default to true, and expensive ones default to false. Then the new changes won't affect other users, and it also unblock you perform a more aggressive search with more candidates.
WDYT?
Agree with both concerns, but the second one is out of scope of this PR.
Will change the current PR to checking bin/java and create a new one with flags for sources later
@Eskibear,
Updated the PR to check additionally JAVA_FILENAME in entries from PATH.
And created https://github.com/Eskibear/node-jdk-utils/pull/14 for the second suggestion
| gharchive/pull-request | 2023-07-07T13:27:00 | 2025-04-01T06:46:22.730124 | {
"authors": [
"0x6675636b796f75676974687562",
"Eskibear",
"nulls"
],
"repo": "Eskibear/node-jdk-utils",
"url": "https://github.com/Eskibear/node-jdk-utils/pull/13",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
216155517 | fix label rotation
@csmoore please review and merge
| gharchive/pull-request | 2017-03-22T17:53:14 | 2025-04-01T06:46:22.731036 | {
"authors": [
"pHill5136"
],
"repo": "Esri/distance-direction-addin-dotnet",
"url": "https://github.com/Esri/distance-direction-addin-dotnet/pull/356",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1812530663 | feat: support popup sign-in
@Csmith246 the only thing I'm worried about with this PR is the issue with older services and the flow type. I guess we could check the portal version but we might still have issues with older services using the popup workflow. We can test this out to see what happens when older services are used.
Once this is merged we'll want to test on devext to make sure we get the non-popup mode for logging in to apps/data that isn't shared and also check to make sure popup is set correctly for the embed case. unfortunately we can' test the embed workflow on dev/qa due to the sheild page.
| gharchive/pull-request | 2023-07-19T18:50:33 | 2025-04-01T06:46:22.732293 | {
"authors": [
"Csmith246",
"kellyhutchins"
],
"repo": "Esri/templates-common-library",
"url": "https://github.com/Esri/templates-common-library/pull/246",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1040028854 | Discord for iOS/iPadOS Bluetooth Keyboard Support
As of right now, ⌘ + K is the single functioning keyboard shortcut in the Discord for iOS and Discord for iPadOS applications.
Related Correspondence
Keyboard shortcuts on iOS – Discord
| gharchive/issue | 2021-10-30T02:35:59 | 2025-04-01T06:46:22.736841 | {
"authors": [
"extratone"
],
"repo": "ExtraKeys/keys",
"url": "https://github.com/ExtraKeys/keys/issues/50",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1723827391 | Add til
I wanted to try to install this chart with following command:
helm install -n<NAMESPACE> til-demo ./trusted-issuers-list -f trusted-issuers-list/values.yaml
but it throws some errors. Should something be adjusted in default values.yaml to be able to test it?
| gharchive/pull-request | 2023-05-24T12:03:20 | 2025-04-01T06:46:22.741284 | {
"authors": [
"beknazaresenbek",
"wistefan"
],
"repo": "FIWARE/helm-charts",
"url": "https://github.com/FIWARE/helm-charts/pull/159",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1924080716 | Implement leaderboard
Duplicated: https://github.com/FlamingoFiestaStudio/OlympusGoneWild/issues/72
| gharchive/issue | 2023-10-03T12:50:50 | 2025-04-01T06:46:22.784704 | {
"authors": [
"201flaviosilva",
"Gabriel-Sous-a"
],
"repo": "FlamingoFiestaStudio/OlympusGoneWild",
"url": "https://github.com/FlamingoFiestaStudio/OlympusGoneWild/issues/68",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1007125392 | Edited Readme file
Please let me know if anything needs to be changed.
@mohit355
@Buddhad Thank you for your Contribution.
| gharchive/pull-request | 2021-09-25T16:02:42 | 2025-04-01T06:46:22.815838 | {
"authors": [
"Buddhad",
"akshitadixit",
"mohit355"
],
"repo": "GDSC-IIIT-Kalyani/Winter-of-Code-2.0-frontend",
"url": "https://github.com/GDSC-IIIT-Kalyani/Winter-of-Code-2.0-frontend/pull/20",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1701424585 | Update to 1.19.4
Thanks for the contribution :)
| gharchive/pull-request | 2023-05-09T06:23:57 | 2025-04-01T06:46:22.826166 | {
"authors": [
"Globox1997",
"NateMob1"
],
"repo": "Globox1997/TalkBubbles",
"url": "https://github.com/Globox1997/TalkBubbles/pull/10",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1565555042 | 请问只想仿照写一个httpserver,需要阅读搞懂哪部分代码
基本上除了 rpc 的部分
您好,已收到您的来信,谢谢!
| gharchive/issue | 2023-02-01T07:03:53 | 2025-04-01T06:46:22.832099 | {
"authors": [
"AIGC-yuxincai",
"AprilWinds",
"Ed-ivan"
],
"repo": "Gooddbird/tinyrpc",
"url": "https://github.com/Gooddbird/tinyrpc/issues/56",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1740111713 | TEST DEPLOY
.lock
.deploy
.lock
.lock
| gharchive/pull-request | 2023-06-04T04:02:49 | 2025-04-01T06:46:22.835242 | {
"authors": [
"GrantBirki"
],
"repo": "GrantBirki/astrowind",
"url": "https://github.com/GrantBirki/astrowind/pull/103",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1922291163 | Added duolingo actions in the correct section
Thank you for the new PR in the right section @R4yGM .
According to the repository contributing guide, you still need to add a workflow implementation (in the .github/workflows folder), sharing in the PR a workflow run evidence that it has executed successfully.
| gharchive/pull-request | 2023-10-02T16:58:36 | 2025-04-01T06:46:22.840294 | {
"authors": [
"GuillaumeFalourd",
"R4yGM"
],
"repo": "GuillaumeFalourd/useful-actions",
"url": "https://github.com/GuillaumeFalourd/useful-actions/pull/732",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1345239899 | PyMongo[package not installed]
issue resolved on commit 7d37deee7142db37ed270181039d4ae2cd0f68c8
| gharchive/issue | 2022-08-20T17:43:28 | 2025-04-01T06:46:22.851747 | {
"authors": [
"HawkingRadiation42",
"Vansh02"
],
"repo": "HawkingRadiation42/jklu",
"url": "https://github.com/HawkingRadiation42/jklu/issues/12",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1958096337 | Create a function that returns a license badge based on which license is passed in
figured this out., need to pass shields.io install in and it works.
| gharchive/issue | 2023-10-23T22:04:42 | 2025-04-01T06:46:22.857011 | {
"authors": [
"HenegarCodes"
],
"repo": "HenegarCodes/README-Generator",
"url": "https://github.com/HenegarCodes/README-Generator/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1782332413 | update the name of the login page
Nice work!
| gharchive/pull-request | 2023-06-30T10:59:34 | 2025-04-01T06:46:22.867213 | {
"authors": [
"Howell0124",
"frankhit2021"
],
"repo": "Howell0124/stu_system",
"url": "https://github.com/Howell0124/stu_system/pull/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2086649403 | docs: update faq and credentials usage
coverage: 95.274% (-1.2%) from 96.465%
when pulling 19d8a9daa52ef0f3cbfd6c69429a4ebce94ceeef on 0-fix-schema-action-metadata
into 394c88149f9bb875f7336eb3f7c5027b770826a3 on main.
| gharchive/pull-request | 2024-01-17T17:29:34 | 2025-04-01T06:46:22.871545 | {
"authors": [
"Tomas2D",
"coveralls"
],
"repo": "IBM/ibm-generative-ai",
"url": "https://github.com/IBM/ibm-generative-ai/pull/263",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
982954537 | docs: fix javadoc warning
Sorry for missed that, looks good!
no worries :)
:tada: This PR is included in version 9.13.1 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
| gharchive/pull-request | 2021-08-30T16:05:49 | 2025-04-01T06:46:22.873585 | {
"authors": [
"ibm-devx-sdk",
"padamstx"
],
"repo": "IBM/java-sdk-core",
"url": "https://github.com/IBM/java-sdk-core/pull/144",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2030014853 | BaseOptimisticRebalanceAuctionModule for use with the BaseManager in existing products
coverage: 46.089% (-0.8%) from 46.877%
when pulling 8fc395a278a472d6f86cd87fe8611c4be1b78133 on ckoopmann/optimistic-auction-rebalance-extension
into d5ab03004853f068528a1962d9d0b025dd8ef0e5 on master.
LGTM 💯
We may want to peek the flaky optimism integration test
Seems to be an issue on alchemy side for the optimism rpc.
Let's keep an eye on it. Not much we can do about it though beyond considering an alternative rpc provider.
| gharchive/pull-request | 2023-12-07T06:38:06 | 2025-04-01T06:46:22.890971 | {
"authors": [
"ckoopmann",
"coveralls"
],
"repo": "IndexCoop/index-coop-smart-contracts",
"url": "https://github.com/IndexCoop/index-coop-smart-contracts/pull/156",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1086603013 | Fix these Scorpio services to run with non-root user - AtContext Server, Storage Manager & Subscription Manager
docker4maven was updated for the concerned components. All pods are running as non-root users successfully.
| gharchive/issue | 2021-12-22T09:00:45 | 2025-04-01T06:46:22.891864 | {
"authors": [
"subhommitra",
"swathichittajallu"
],
"repo": "IndustryFusion/DigitalTwin",
"url": "https://github.com/IndustryFusion/DigitalTwin/issues/73",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1011822993 | Hvordan Jobbe videre etter Stimulab,
Feilregistrert - lukkes.
| gharchive/issue | 2021-09-30T07:32:49 | 2025-04-01T06:46:22.892765 | {
"authors": [
"HanneHFredheim",
"cathrineswarnes"
],
"repo": "Informasjonsforvaltning/sammenhengende-tjenester-behov-tracker",
"url": "https://github.com/Informasjonsforvaltning/sammenhengende-tjenester-behov-tracker/issues/75",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1275793339 | Allow configuring a custom beat saver endpoint
Comes with the first "Twitch Integration" release
Perfect.
Cuz I have a caching server for api.beatsaver.com.
Any ETA?
If you're fine with getting an Alpha version I can send you an early release today
Yeah.
Works great (after a app restart).
I'll add an info that restart is required and if changed by accident to just clear the field. It will be set to default if empty
Done in 1.4.2.0
| gharchive/issue | 2022-06-18T13:41:10 | 2025-04-01T06:46:22.900833 | {
"authors": [
"InnocentThief",
"peddermaster2"
],
"repo": "InnocentThief/Custom-Songs-Manager",
"url": "https://github.com/InnocentThief/Custom-Songs-Manager/issues/10",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1984480022 | Update ua.json
Thank you!
| gharchive/pull-request | 2023-11-08T22:13:41 | 2025-04-01T06:46:22.909146 | {
"authors": [
"knowbody",
"pomeranch"
],
"repo": "Iternio-Planning-AB/abrp-translations",
"url": "https://github.com/Iternio-Planning-AB/abrp-translations/pull/611",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2133215477 | Create Review Problems page (instructor side)
A few parts to this one:
Add functionality to check if a user is an instructor
If they are, they can see a third tab on learn/* pages (review status)
Clicking to open problems there opens a full view with two buttons (Approve/Deny)
Need comment section for feedback, that's a separate issue
| gharchive/issue | 2024-02-13T22:16:46 | 2025-04-01T06:46:22.913628 | {
"authors": [
"JLambertazzo",
"judy-n"
],
"repo": "JLambertazzo/CSC495",
"url": "https://github.com/JLambertazzo/CSC495/issues/20",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2350615917 | Merge auto-approve.yml into develop
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 10.56%. Comparing base (5c35577) to head (38e9321).
Additional details and impacted files
@@ Coverage Diff @@
## develop #57 +/- ##
========================================
Coverage 10.56% 10.56%
========================================
Files 28 28
Lines 1476 1476
Branches 39 39
========================================
Hits 156 156
Misses 1296 1296
Partials 24 24
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
| gharchive/pull-request | 2024-06-13T09:12:10 | 2025-04-01T06:46:22.927436 | {
"authors": [
"JeremyTremblay2",
"codecov-commenter"
],
"repo": "JeremyTremblay2/games-we-want",
"url": "https://github.com/JeremyTremblay2/games-we-want/pull/57",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1490645030 | ncsnanaimo
@logie87 ncsnanaimo.txt I am sorry, I have to close the request without merging, because you made a mistake in a request and did not specify any filepath. Please ensure that you are familiar with this repository rules located at the bottom of this page and make a new correct request. Thank you for your understanding!
| gharchive/pull-request | 2022-12-12T01:23:08 | 2025-04-01T06:46:22.928637 | {
"authors": [
"logie87",
"philipto"
],
"repo": "JetBrains/swot",
"url": "https://github.com/JetBrains/swot/pull/15992",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2755117023 | Added Noun File
@Umarmuhd I am sorry, the domain noun.edu.ng is removed from our trusted domains list because it was abused in the past. If you are the student of this school, please enroll to GitHub Student Developer Program. Then apply for JetBrains educational subscription with your GitHub account (GitHub tab at https://www.jetbrains.com/shop/eform/students).
| gharchive/pull-request | 2024-12-23T03:15:47 | 2025-04-01T06:46:22.930463 | {
"authors": [
"Umarmuhd",
"philipto"
],
"repo": "JetBrains/swot",
"url": "https://github.com/JetBrains/swot/pull/26010",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1551770741 | Implement AntD layout
Not needed at this time
Might still be usefull
| gharchive/issue | 2023-01-21T11:14:30 | 2025-04-01T06:46:22.933735 | {
"authors": [
"JoranSlingerland"
],
"repo": "JoranSlingerland/Stocktracker-FrontEnd",
"url": "https://github.com/JoranSlingerland/Stocktracker-FrontEnd/issues/88",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1154828309 | Release 0.1.1
Codecov Report
Merging #17 (cfaa095) into master (c13bd73) will increase coverage by 0.27%.
The diff coverage is 100.00%.
@@ Coverage Diff @@
## master #17 +/- ##
==========================================
+ Coverage 81.13% 81.41% +0.27%
==========================================
Files 6 6
Lines 334 339 +5
==========================================
+ Hits 271 276 +5
Misses 63 63
Impacted Files
Coverage Δ
src/backend_lbfgsb.jl
73.84% <100.00%> (+0.40%)
:arrow_up:
src/backend_optim.jl
92.18% <100.00%> (+0.12%)
:arrow_up:
src/optimize.jl
85.71% <100.00%> (+0.18%)
:arrow_up:
src/workspace.jl
78.04% <100.00%> (+0.54%)
:arrow_up:
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6c543c9...cfaa095. Read the comment docs.
| gharchive/pull-request | 2022-03-01T03:51:22 | 2025-04-01T06:46:23.010308 | {
"authors": [
"codecov-commenter",
"goerz"
],
"repo": "JuliaQuantumControl/GRAPE.jl",
"url": "https://github.com/JuliaQuantumControl/GRAPE.jl/pull/17",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1726748724 | Update 윷놀이
_ No description provided. _
| gharchive/pull-request | 2023-05-26T01:53:30 | 2025-04-01T06:46:23.019654 | {
"authors": [
"BoSyeo",
"hakyaung"
],
"repo": "JungHaKyaung/Main",
"url": "https://github.com/JungHaKyaung/Main/pull/30",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2103652558 | Travel Itinerary Planner : Build a platform for users to plan and organize their travel itineraries.
assign it to me plz
| gharchive/issue | 2024-01-27T16:16:09 | 2025-04-01T06:46:23.051357 | {
"authors": [
"Kritika30032002",
"hemant933"
],
"repo": "Kritika30032002/ReactCreations",
"url": "https://github.com/Kritika30032002/ReactCreations/issues/219",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2395455752 | Added git ignore. Somehow got removed from main.
Merged
| gharchive/pull-request | 2024-07-08T12:07:18 | 2025-04-01T06:46:23.051934 | {
"authors": [
"KulbhushanBhalerao",
"kulbhushan-tibco"
],
"repo": "KulbhushanBhalerao/kb-tibco-be-samples",
"url": "https://github.com/KulbhushanBhalerao/kb-tibco-be-samples/pull/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1050970406 | Custom Form stílusok implementálása
Szükséges elemek:
Button (több fajta)
Screen választó
Infó sáv
Lista Container (görgethető)
Lista (legördülő)
Kapcsoló
Slider
Tab-rendszer
Szám kiválasztó
Speed választó (custom gomb)
| gharchive/issue | 2021-11-11T13:16:56 | 2025-04-01T06:46:23.066172 | {
"authors": [
"Lebeg134"
],
"repo": "Lebeg134/TradeCity",
"url": "https://github.com/Lebeg134/TradeCity/issues/43",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2210392854 | firmware: stax: positions: Update settings exit for new SDK v15.2.0
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 80.22%. Comparing base (d037ee6) to head (c3079bb).
Additional details and impacted files
@@ Coverage Diff @@
## master #175 +/- ##
=======================================
Coverage 80.22% 80.22%
=======================================
Files 34 34
Lines 1704 1704
=======================================
Hits 1367 1367
Misses 337 337
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
| gharchive/pull-request | 2024-03-27T10:16:05 | 2025-04-01T06:46:23.070123 | {
"authors": [
"codecov-commenter",
"xchapron-ledger"
],
"repo": "LedgerHQ/ragger",
"url": "https://github.com/LedgerHQ/ragger/pull/175",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1188947649 | feat(website): suspense charts load
Codecov Report
Merging #94 (8f337c9) into master (d9f8898) will decrease coverage by 1.68%.
The diff coverage is n/a.
@@ Coverage Diff @@
## master #94 +/- ##
==========================================
- Coverage 56.38% 54.69% -1.69%
==========================================
Files 53 35 -18
Lines 1293 788 -505
Branches 266 171 -95
==========================================
- Hits 729 431 -298
+ Misses 564 357 -207
Impacted Files
Coverage Δ
service/src/utils/promiseUtils.ts
service/src/controllers/subprojectsController.ts
service/src/framework/mongo.ts
service/src/consts/commitRecords.ts
service/src/consts/schemas.ts
service/src/utils/hashUtils.ts
...e/src/controllers/utils/markdownReportGenerator.ts
service/src/routes/api/v1.ts
service/src/controllers/commitRecordsController.ts
service/src/controllers/githubController.ts
... and 8 more
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d9f8898...8f337c9. Read the comment docs.
| gharchive/pull-request | 2022-03-31T22:40:33 | 2025-04-01T06:46:23.086854 | {
"authors": [
"LironEr",
"codecov-commenter"
],
"repo": "LironEr/bundlemon",
"url": "https://github.com/LironEr/bundlemon/pull/94",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2236703497 | removed extend content and started readme file
I only closed it to prevent merge conflict but I saved teh readme. the root code in the css and some of the login page code and contact!
| gharchive/pull-request | 2024-04-11T01:08:04 | 2025-04-01T06:46:23.101116 | {
"authors": [
"LorenzoRiosWeb",
"prappleman"
],
"repo": "LorenzoRiosWeb/youtrails",
"url": "https://github.com/LorenzoRiosWeb/youtrails/pull/22",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1647120091 | Demo
@ranking-helper, give @zhongsp 5 points for innovation.
@bot
@ranking-helper, give @zhongsp 100 points for innovation.
| gharchive/issue | 2023-03-30T08:05:04 | 2025-04-01T06:46:23.102272 | {
"authors": [
"Louis-7",
"zhongsp"
],
"repo": "Louis-7/ranking-board",
"url": "https://github.com/Louis-7/ranking-board/issues/4",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2444219211 | feat: faster batched matrix multiply on CPU
Will open a new PR for this.
| gharchive/pull-request | 2024-08-02T06:57:03 | 2025-04-01T06:46:23.105092 | {
"authors": [
"avik-pal"
],
"repo": "LuxDL/LuxLib.jl",
"url": "https://github.com/LuxDL/LuxLib.jl/pull/116",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1357288346 | Backmerge master to develop
mistake
| gharchive/pull-request | 2022-08-31T12:47:51 | 2025-04-01T06:46:23.105673 | {
"authors": [
"sevaru"
],
"repo": "Luxoft/gengen",
"url": "https://github.com/Luxoft/gengen/pull/122",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1011841369 | add test
XD
| gharchive/pull-request | 2021-09-30T07:53:33 | 2025-04-01T06:46:23.107551 | {
"authors": [
"littlefish0331",
"samtsai15"
],
"repo": "MF-GCP/anthos-config-management-samples",
"url": "https://github.com/MF-GCP/anthos-config-management-samples/pull/1",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1640002479 | MB: See if Automated Ships allows automated flagships to be recoverable even if they shouldn't be
This is apparently working as intended.
fleet_flagship_recoverable is actually for whether the flagship is ALWAYS recoverable. The default, false, means normal vanilla recovery behavior.
I have renamed the variable to fleet_flagship_alwaysRecoverable (backwards compatible) to be less confusing.
| gharchive/issue | 2023-03-24T20:38:48 | 2025-04-01T06:46:23.119614 | {
"authors": [
"wispborne"
],
"repo": "MagicLibStarsector/MagicLib",
"url": "https://github.com/MagicLibStarsector/MagicLib/issues/31",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.