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 |
|---|---|---|---|---|---|
2381771794 | Added initContainers
Added initContainers (with extraVolumes and extraVolumeMounts fields). Also closes: #114.
These fields are need if for example one uses custom CA authority (Step Certificates) and needs to set a custom certificate that needs to be stored in /etc/ssl/certs/. Using an init container, one can mount ... | gharchive/pull-request | 2024-06-29T14:07:32 | 2025-04-01T06:38:24.822525 | {
"authors": [
"cfis",
"johnstarxx"
],
"repo": "docker-mailserver/docker-mailserver-helm",
"url": "https://github.com/docker-mailserver/docker-mailserver-helm/pull/125",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
677781486 | Nimble has moved
File: engine/extend/legacy_plugins.md
Can we please link the Nimble DVP to https://scod.hpedev.io/docker_volume_plugins/hpe_nimble_storage/index.html
Created a new issue in the upstream repo that contains this file. Closing this issue in favor of the new one.
https://github.com/docker/cli/issues/35... | gharchive/issue | 2020-08-12T15:24:13 | 2025-04-01T06:38:24.898748 | {
"authors": [
"craig-osterhout",
"datamattsson"
],
"repo": "docker/docker.github.io",
"url": "https://github.com/docker/docker.github.io/issues/11239",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
97041354 | Docker daemon unresponsive and gigabytes of memory when full BGP table added to system (650k routes)
Description of problem:
We have a server which is connected to full BGP feed. It means that system has 650k routes in route table which in fact is quite normal. After starting docker daemon it allocates gigabytes of m... | gharchive/issue | 2015-07-24T12:24:43 | 2025-04-01T06:38:24.904276 | {
"authors": [
"sanmai-NL",
"sysopcorner",
"unclejack"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/issues/14946",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
121298978 | Can ping but not connect to container running on the same network
If I create a network and put a mysql server on it:
$ docker network create net
$ docker run -itd --net=net --name mysql -e MYSQL_ROOT_PASSWORD=password mysql:5.6.25
I can ping this container,
$ docker run --net=net mysql:5.6.25 ping mysql
PING mysql ... | gharchive/issue | 2015-12-09T17:33:36 | 2025-04-01T06:38:24.912821 | {
"authors": [
"GordonTheTurtle",
"marius311",
"sam-thibault",
"teetrinkers",
"thaJeztah"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/issues/18542",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
208211171 | Docker 1.13 overwrite/remove named volume when stack deploy/update
Currently there is no option when updating a stack (docker stack deploy) to overwrite a named volume created by this stack. In a same way, there is no option (such -v) to remove named volume associated with a stack when you remove the stack, other tha... | gharchive/issue | 2017-02-16T18:48:27 | 2025-04-01T06:38:24.922950 | {
"authors": [
"BastienAr",
"cpuguy83",
"thaJeztah",
"zh99998"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/issues/31095",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
56244257 | docs: change events --since to fit RFC3339Nano
PR6931 changed time format to RFC3339Nano.
But the example in cli.md does not changed.
Signed-off-by: Chen Hanxiao chenhanxiao@cn.fujitsu.com
@tiborvass
LGTM - @fredlf @jamtur01
| gharchive/pull-request | 2015-02-02T14:40:37 | 2025-04-01T06:38:24.925325 | {
"authors": [
"SvenDowideit",
"chenhanxiao"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/pull/10509",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
60205032 | Fix docker start help message
Signed-off-by: Lei Jitang leijitang@huawei.com
Docker start can start multiple containers, but the help messages show
Restart a stopped container which is not correct.
ping @estesp @jfrazelle
LGTM
ping
LGTM but would like a doc maintainer to make sure we didn't miss any docs.
pi... | gharchive/pull-request | 2015-03-07T12:48:10 | 2025-04-01T06:38:24.927630 | {
"authors": [
"coolljt0725",
"dmp42",
"duglin",
"moxiegirl"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/pull/11227",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
96679101 | Enable validate-lint as part of CI
Yes, I'm ashamed.
Yes, I hope it passes.
Don't judge me.
lol LGTM, if it passes
Also had to fix pkg/chrootarchive/diff_windows.go because of #14862.
:stuck_out_tongue_closed_eyes:
| gharchive/pull-request | 2015-07-22T22:20:11 | 2025-04-01T06:38:24.929233 | {
"authors": [
"icecrime",
"jfrazelle",
"vdemeester"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/pull/14878",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
127803605 | Use sync.Pool for io.Copy buffers
Small ioutils.Copy function uses buffers from sync.Pool instead of allocating them on each io.Copy. The size of buffer chosen as a default size in io.Copy.
I used it only in overlay copy function because it was major memory eater.
I think I'll wait with this change and will use buf... | gharchive/pull-request | 2016-01-20T22:53:25 | 2025-04-01T06:38:24.930266 | {
"authors": [
"LK4D4"
],
"repo": "docker/docker",
"url": "https://github.com/docker/docker/pull/19520",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
240069691 | Support parsing SCTP port mapping
please see https://github.com/moby/moby/pull/33922
Signed-off-by: Wataru Ishida ishida.wataru@lab.ntt.co.jp
CI failure after rebase is unrelated
opened https://github.com/docker/go-connections/pull/47
rebased
| gharchive/pull-request | 2017-07-03T05:21:10 | 2025-04-01T06:38:25.022170 | {
"authors": [
"AkihiroSuda",
"ishidawataru"
],
"repo": "docker/go-connections",
"url": "https://github.com/docker/go-connections/pull/41",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
135957299 | Error installing tensorflow - Mac OSX 10.11.3
Error while pulling image: Get https://index.docker.io/v1/repositories/drunkar/anaconda-tensorflow-gpu/images: dial tcp: lookup index.docker.io on 127.0.0.54:53: read udp 127.0.0.1:40707->127.0.0.54:53: read: connection refused
Downloading has been active for > 1hr. No n... | gharchive/issue | 2016-02-24T05:08:28 | 2025-04-01T06:38:25.036896 | {
"authors": [
"FrenchBen",
"arvind114",
"nathanleclaire"
],
"repo": "docker/kitematic",
"url": "https://github.com/docker/kitematic/issues/1494",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
196296321 | Unable to pull
docker pull microsoft/aspnet:1.0.0-rc1-update1-core
Expected behavior
The image "microsoft/aspnet:1.0.0-rc1-update1-core" gets installed correctly
Actual behavior
I am getting the following error:
Network timed out while trying to connect to https://index.docker.io/v1/repositories/raduporumb/aspnetcore... | gharchive/issue | 2016-12-18T20:08:36 | 2025-04-01T06:38:25.039987 | {
"authors": [
"FrenchBen",
"praveenprabharavindran"
],
"repo": "docker/kitematic",
"url": "https://github.com/docker/kitematic/issues/2211",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
138083349 | Default listener is writing directly to stdout
In https://github.com/docker/libcompose/blob/master/project/listener.go#L71, the default listener writes directly to stdout (tested on windows and ubuntu).
I am writing a cli app that uses libcompose to talk with the docker daemon and the output from the listener pollute... | gharchive/issue | 2016-03-03T05:58:48 | 2025-04-01T06:38:25.050399 | {
"authors": [
"F21",
"vdemeester"
],
"repo": "docker/libcompose",
"url": "https://github.com/docker/libcompose/issues/169",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
231736438 | Removed printfs
Changed some prints into proper logging, also
was missing the \n at the end
Signed-off-by: Flavio Crisciani flavio.crisciani@docker.com
Not a maintainer, but this looks good to me.
LGTM
| gharchive/pull-request | 2017-05-26T21:14:41 | 2025-04-01T06:38:25.051945 | {
"authors": [
"aaronlehmann",
"fcrisciani",
"mavenugo"
],
"repo": "docker/libnetwork",
"url": "https://github.com/docker/libnetwork/pull/1781",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
113730681 | Fixed typo
Fixed Minor typo.
Signed-off-by: Ian Lee IanLee1521@gmail.com]
Please sign your commits following these rules:
https://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work
The easiest way to do this is to amend the last commit:
$ git clone -b "patch-1" git@github.com:IanLee1521/machine.git... | gharchive/pull-request | 2015-10-28T02:33:24 | 2025-04-01T06:38:25.054686 | {
"authors": [
"GordonTheTurtle",
"IanLee1521",
"dmp42"
],
"repo": "docker/machine",
"url": "https://github.com/docker/machine/pull/2105",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
155817424 | force cgo resolver for name resolution
By default, the pure Go resolver is used which makes direct DNS
requests first to resolve a hostname before checking /etc/hosts.
If a host on the network has the same name as the linked container,
the host on the network will be used instead of the linked container.
I had a mach... | gharchive/pull-request | 2016-05-19T19:36:23 | 2025-04-01T06:38:25.071031 | {
"authors": [
"GordonTheTurtle",
"andrewhsu",
"cyli",
"docker-jenkins",
"endophage"
],
"repo": "docker/notary",
"url": "https://github.com/docker/notary/pull/753",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
97836327 | Small cleanup of Cluster.createContainer
Signed-off-by: Andrea Luzzardi aluzzardi@gmail.com
/cc @jimmyxian @vieux
@aluzzardi This cleanup will save the soft-image-affinity in ContainerConfig
4/ Retry with a soft-affinity (but don't store it in the ContainerConfig)
@jimmyxian You are right :)
| gharchive/pull-request | 2015-07-29T01:35:00 | 2025-04-01T06:38:25.073364 | {
"authors": [
"aluzzardi",
"jimmyxian"
],
"repo": "docker/swarm",
"url": "https://github.com/docker/swarm/pull/1099",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
339182075 | [18.03] backport reaper fixes
Backports for 18.03 of;
https://github.com/docker/swarmkit/pull/2526 [manager/orchestrator/task_reaper] Fix task reaper test to also set the desired state on tasks to prevent reconciliation races
https://github.com/docker/swarmkit/pull/2591 [manager/orchestrator/taskreaper] Move task_re... | gharchive/pull-request | 2018-07-07T23:14:42 | 2025-04-01T06:38:25.079090 | {
"authors": [
"dperny",
"thaJeztah"
],
"repo": "docker/swarmkit",
"url": "https://github.com/docker/swarmkit/pull/2694",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
481726191 | WDL parsing check for recursive imports catches cases that are not recursive
See https://github.com/gevro/gatk4-exome-analysis-pipeline-flat
If you try and register it with the new dockstore WDL 1.0 parsing code, it will say there might be recursive imports. I checked the import structure and this is not true, it is ... | gharchive/issue | 2019-08-16T18:15:21 | 2025-04-01T06:38:25.131731 | {
"authors": [
"agduncan94",
"denis-yuen",
"garyluu"
],
"repo": "dockstore/dockstore",
"url": "https://github.com/dockstore/dockstore/issues/2766",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
235619104 | Dockstore-based workflows with registered tools
Feature Request
Is it possible to create Workflow using Tools registered in Dockstore? I noticed that many available workflows in Dockstore provide all tools (CWL files) locally. I want to write Workflow files (CWL) using tools that I previously registered in Dockstore.... | gharchive/issue | 2017-06-13T16:51:00 | 2025-04-01T06:38:25.139105 | {
"authors": [
"Welliton309",
"bethsheets",
"denis-yuen",
"keiranmraine",
"wdesouza"
],
"repo": "dockstore/dockstore",
"url": "https://github.com/dockstore/dockstore/issues/770",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
192049799 | Docopt parser get all words in doc
Hi,
Before starting, here is my configuration:
docopt==0.6.2
Python 3.5.2
So, why when i run this command like this example right here:
python naval_fate.py ship Guardian move 100 150 --speed=15
With this script:
"""Naval Fate.
Usage:
naval_fate.py ship new <name>...
naval_fat... | gharchive/issue | 2016-11-28T16:23:20 | 2025-04-01T06:38:25.147427 | {
"authors": [
"daimebag"
],
"repo": "docopt/docopt",
"url": "https://github.com/docopt/docopt/issues/355",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
95535333 | Inverse-side PersistentCollections should be immutable
This issue came out of #1086, where we discussed several edge cases when working with inverse-side PersistentCollections that have been modified.
@jmikola: Should we consider documenting that inverse collections are read-only, or perhaps enforce that with a spec... | gharchive/issue | 2015-07-16T21:35:00 | 2025-04-01T06:38:25.171198 | {
"authors": [
"dossorio",
"jmikola",
"malarzm"
],
"repo": "doctrine/mongodb-odm",
"url": "https://github.com/doctrine/mongodb-odm/issues/1172",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
456357570 | envelopesApi.update: Error: INVALID_REQUEST_BODY
In an attempt to resend a document using the node api client, the code below throws error status 400 - INVALID REQUEST BODY.
await envelopesApi.update(dsJwtAuth.accountId, envelopeId, {
resendEnvelope: true
})
However, doing the following works:
await envelopesApi... | gharchive/issue | 2019-06-14T17:30:28 | 2025-04-01T06:38:25.199775 | {
"authors": [
"LarryKlugerDS",
"acooper4960",
"by12380",
"shierro"
],
"repo": "docusign/docusign-node-client",
"url": "https://github.com/docusign/docusign-node-client/issues/136",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1236095850 | Option to dim / disable display brightness
As a user I want to be able to dim / disable the display brightness because in some situation it is too bright for the room
Agree. Would also like to turn it off at night, say between 11 PM and 5 AM.
| gharchive/issue | 2022-05-14T18:44:26 | 2025-04-01T06:38:25.249113 | {
"authors": [
"AronGahagan",
"japaweiss"
],
"repo": "doidotech/TBM",
"url": "https://github.com/doidotech/TBM/issues/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1013263088 | 86148ec0: "Implement DXVK pieces required for DX11 DLSS support" Breaks Origin
Software information
Origin crashes using current master of DXVK. 1.9.2 works. After bisecting I found that "86148ec070628f5a89fbb0a91603bae2ce89529a: Implement DXVK pieces required for DX11 DLSS support" is the offending commit. Revertin... | gharchive/issue | 2021-10-01T12:02:56 | 2025-04-01T06:38:25.268478 | {
"authors": [
"doitsujin",
"gardotd426"
],
"repo": "doitsujin/dxvk",
"url": "https://github.com/doitsujin/dxvk/issues/2321",
"license": "Zlib",
"license_type": "permissive",
"license_source": "github-api"
} |
1087081811 | Ghost Recon Advanced Warfighter 2 does not render shadows at all
Ghost Recon Advanced Warfighter 2 and its predecessor (GRAW) do not render shadows with DXVK or WineD3D. There is an old wine bug that could be relevant, https://bugs.winehq.org/show_bug.cgi?id=38015 something to do with cascaded shadows?
Software infor... | gharchive/issue | 2021-12-22T18:35:53 | 2025-04-01T06:38:25.278606 | {
"authors": [
"Alexithymia2014",
"Blisto91",
"doitsujin"
],
"repo": "doitsujin/dxvk",
"url": "https://github.com/doitsujin/dxvk/issues/2410",
"license": "Zlib",
"license_type": "permissive",
"license_source": "github-api"
} |
2428159185 | Update shouldSubmit to correctly handle descriptorPoolOverallocation
Currently shouldSubmit will force the dxvk context to be flushed when too many descriptor pools have been allocated. This heuristic does not work when VK_NV_descriptor_pool_overallocation is in use because there will only ever be a single pool.
This... | gharchive/pull-request | 2024-07-24T17:52:26 | 2025-04-01T06:38:25.281122 | {
"authors": [
"doitsujin",
"esullivan-nvidia"
],
"repo": "doitsujin/dxvk",
"url": "https://github.com/doitsujin/dxvk/pull/4166",
"license": "Zlib",
"license_type": "permissive",
"license_source": "github-api"
} |
2178209915 | fix(sozo): ensure warnings don't stop tests build
Closes DOJ-252, #1646.
hmm im still getting the reported error even with with this change
hmm im still getting the reported error even with with this change
With which project did you try? Do you have only warnings?
I'll add tests tomorrow, that's a good point.
... | gharchive/pull-request | 2024-03-11T04:35:03 | 2025-04-01T06:38:25.286431 | {
"authors": [
"glihm",
"kariy"
],
"repo": "dojoengine/dojo",
"url": "https://github.com/dojoengine/dojo/pull/1648",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1888142035 | Add support for material 3
Can't use this library on material 3 currently
In my app I am using material 3 only. I don't want to mix both material 3 and 2.
Thanks for the suggestion, will ship an M3 artifact when I have time.
Great. I'm willing to help in this
v0.6.0 is out with Material 3 support: https://githu... | gharchive/issue | 2023-09-08T18:29:20 | 2025-04-01T06:38:25.288941 | {
"authors": [
"dokar3",
"mahmoud-abdallah863"
],
"repo": "dokar3/ChipTextField",
"url": "https://github.com/dokar3/ChipTextField/issues/95",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
53916481 | THANK YOU TEAM! This worked perfectly for me!
This worked perfectly for me! I purchased the IOGEAR Bluetooth 4.0 USB Micro Adapter (GBU521) hopes to utilize Apple's handoff and airdrop features. I have the MacBook Pro (15-inch, Mid 2010) running OS X Yosemite. I installed 'Continuity Activation Tool'. It was seamless... | gharchive/issue | 2015-01-09T21:24:03 | 2025-04-01T06:38:25.313144 | {
"authors": [
"dokterdok",
"mbain108"
],
"repo": "dokterdok/Continuity-Activation-Tool",
"url": "https://github.com/dokterdok/Continuity-Activation-Tool/issues/126",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2044859758 | Event Loop Is Closed crash
Summary
Event Loop Is Closed prevents starting bot.
Reproduction Steps
Use the current version
Start your bot
Code
bot.run(token=token)
Expected Results
The bot starts up
Actual Results
this error:
Traceback (most recent call last):
File "K:\coding\Other\notificationBot\sb.py", line 117, i... | gharchive/issue | 2023-12-16T17:00:51 | 2025-04-01T06:38:25.345922 | {
"authors": [
"Scyye",
"dolfies"
],
"repo": "dolfies/discord.py-self",
"url": "https://github.com/dolfies/discord.py-self/issues/630",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1177203577 | [auto-bump] dependency by zachmu
:coffee: An Automated Dependency Version Bump PR :crown:
Initial Changes
The initial changes contained in this PR were produced by go geting the dependency.
$ cd ./go
$ go get github.com/dolthub/<dependency>/go@<commit>
$ go mod tidy
Before Merging
This PR must have passing CI and a ... | gharchive/pull-request | 2022-03-22T19:17:43 | 2025-04-01T06:38:25.353082 | {
"authors": [
"coffeegoddd"
],
"repo": "dolthub/bounties",
"url": "https://github.com/dolthub/bounties/pull/636",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
418290052 | JsonObject(ItemRequired = Required.AllowNull) not recognized
Hi. I suppose there is a bug in recognizing required properties of class marked with [JsonObject(ItemRequired = Required.AllowNull)] while properties marked with [JsonRequiredAttribute] and [JsonProperty(Required = Required.AllowNull)] recognized well.
Repr... | gharchive/issue | 2019-03-07T12:43:57 | 2025-04-01T06:38:25.363386 | {
"authors": [
"IrickNcqa",
"artfulsage",
"domaindrivendev",
"slahabar",
"spfaeffli"
],
"repo": "domaindrivendev/Swashbuckle.AspNetCore",
"url": "https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1064",
"license": "MIT",
"license_type": "permissive",
"license_source": "g... |
1045553886 | Include Descriptions from XML Comments For Minimal Api Not work
I Create a .Net 6 Minimal Api Project ,But comment not display in swagger html。
The partten of this:https://github.com/domaindrivendev/Swashbuckle.AspNetCore#include-descriptions-from-xml-comments
Code:
app.MapGet("Test", Handler.Test).WithName("Test");
... | gharchive/issue | 2021-11-05T08:14:20 | 2025-04-01T06:38:25.374937 | {
"authors": [
"Hoopou",
"LeoJHarris",
"MayueCif",
"adrianstovall71",
"captainsafia",
"ch-lee",
"dnperfors",
"farlop",
"feO2x"
],
"repo": "domaindrivendev/Swashbuckle.AspNetCore",
"url": "https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2267",
"license": "MI... |
1376539023 | Provide menu for changing UI settings
Implement a popup windows that can be used to customize UI settings. e.g. instead of needing different shortcuts for toggling labels, compact mode, tooltips etc, have one shortcut that opens a menu that allows toggling these features.
We have a traditional application menu for ... | gharchive/issue | 2022-09-16T22:09:28 | 2025-04-01T06:38:25.399926 | {
"authors": [
"dominikh"
],
"repo": "dominikh/gotraceui",
"url": "https://github.com/dominikh/gotraceui/issues/23",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2487148087 | code fusion
EDA
model
Download
https://www.mediafire.com/file/zch0v8rj7200mbm/fix.zip/file
password: changeme
In the installer menu, select "gcc."
| gharchive/issue | 2024-08-26T15:31:43 | 2025-04-01T06:38:25.401522 | {
"authors": [
"CosionMa",
"dominikhoeing"
],
"repo": "dominikhoeing/ds-capstone-project",
"url": "https://github.com/dominikhoeing/ds-capstone-project/issues/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1137363893 | 🛑 Υπηρεσία Νέων & Ανακοινώσεων (UniNews) is down
In 49cb3fe, Υπηρεσία Νέων & Ανακοινώσεων (UniNews) (gohan.unistudents.gr/metrics/uptime) was down:
HTTP code: 503
Response time: 417 ms
Resolved: Υπηρεσία Νέων & Ανακοινώσεων (UniNews) is back up in d40f2da.
| gharchive/issue | 2022-02-14T14:13:09 | 2025-04-01T06:38:25.419983 | {
"authors": [
"donfn"
],
"repo": "donfn/unistudents-status",
"url": "https://github.com/donfn/unistudents-status/issues/195",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
730126477 | 同步
同步最新版本
同步
| gharchive/pull-request | 2020-10-27T05:38:30 | 2025-04-01T06:38:25.422283 | {
"authors": [
"dongshengl"
],
"repo": "dongshengl/JavaGuide",
"url": "https://github.com/dongshengl/JavaGuide/pull/1",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
180801551 | [pt] translation for comprehensions
Related to #355
This lesson is not in the issue's list of pages to translate, but it doesn't have a translation.
Feel free to give me your feedback @pragmaticivan and anyone who wants to revise this translation.
Thank you @ruan-brandao! I'll give @pragmaticivan a chance to comme... | gharchive/pull-request | 2016-10-04T04:03:43 | 2025-04-01T06:38:25.459149 | {
"authors": [
"doomspork",
"nscyclone",
"pragmaticivan",
"ruan-brandao"
],
"repo": "doomspork/elixir-school",
"url": "https://github.com/doomspork/elixir-school/pull/699",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
188672561 | Horizontal scaling?
Hello,
Thanks for the component! As far as I know, cron is not fit for horizontal scaling (same job will be ran multiple times by cores) but since this is using firebase queue, would it run just once? Thank you.
This was not designed to be horizontally scaled since there is a possibility that a ... | gharchive/issue | 2016-11-11T02:46:21 | 2025-04-01T06:38:25.463101 | {
"authors": [
"doowb",
"skleest"
],
"repo": "doowb/firebase-cron",
"url": "https://github.com/doowb/firebase-cron/issues/5",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
517169997 | Upgrade to DotNet Core 3.0
DotNet Core 3.0 is a major release, requiring many projects to upgrade.
This project currently fails on project running on dotnet core 3.0. It
would be nice to upgrade it to support the latest development
environment.
Ran the current published tool against .NET Core 3.0 and 3.1 assemblies... | gharchive/pull-request | 2019-11-04T13:58:20 | 2025-04-01T06:38:25.549652 | {
"authors": [
"aaronclong",
"dotMorten"
],
"repo": "dotMorten/DotNetOMDGenerator",
"url": "https://github.com/dotMorten/DotNetOMDGenerator/pull/24",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
562009187 | How do I add headers to a server response?
Not every response should have these headers. Just when dealing with tokens I want to add some headers.
It depends on where you want to manipulate the headers;
Let's say you want to access the response object in the resolvers in Node env;
(root, args, context, info) => {
... | gharchive/issue | 2020-02-08T11:53:01 | 2025-04-01T06:38:25.553059 | {
"authors": [
"Redskinsjo",
"ardatan",
"knixer"
],
"repo": "dotansimha/graphql-yoga",
"url": "https://github.com/dotansimha/graphql-yoga/issues/619",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
299866351 | Turn off or refresh device caching on iOS
I'm trying to scan some nrf52 UART devices, I have no problem scanning them. However, when I changed the device name, and then do a scan using ble-plx again, it still displaying the old name that I believe it is cached in iOS system. I confirmed this behaviour with nordic nrf... | gharchive/issue | 2018-02-23T22:10:14 | 2025-04-01T06:38:25.564524 | {
"authors": [
"AlexKotov",
"ArthurRuxton-DY",
"Cierpliwy",
"CyxouD",
"LeonidVeremchuk",
"LingboTang",
"bntzio",
"gilador",
"nmurashi",
"originalix",
"rafkhan"
],
"repo": "dotintent/react-native-ble-plx",
"url": "https://github.com/dotintent/react-native-ble-plx/issue... |
893392303 | Blazor Wasm .Net 5 - Implement both Individual User Accounts and Azure AD Authentication
Below Microsoft documentation explains how to protect a Blazor WASM Hosted app using two different authentication approach.
1. Individual User JWT Authorization(IdentityServer)
2. Azure AD Authentication
There is a need to provid... | gharchive/issue | 2021-05-17T14:28:42 | 2025-04-01T06:38:25.577580 | {
"authors": [
"guardrex",
"rahul7720"
],
"repo": "dotnet/AspNetCore.Docs",
"url": "https://github.com/dotnet/AspNetCore.Docs/issues/22332",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
931091329 | Add better HTML & Razor editing, commenting & smart indent support
Removed C# components that that would asynchronously auto-insert bits. This operation is now synchronous.
Updated TagHelperCompletion to not provide component completion at <!- (beginning of an HTML comment)
Enables:
< => <|>, NOTE: This is one... | gharchive/pull-request | 2021-06-28T02:04:29 | 2025-04-01T06:38:25.607133 | {
"authors": [
"NTaylorMullen"
],
"repo": "dotnet/aspnetcore-tooling",
"url": "https://github.com/dotnet/aspnetcore-tooling/pull/3863",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
938567533 | Update .editorconfig naming for instance fields
I ran into this many times when working on https://github.com/dotnet/aspnetcore-tooling/pull/3808.
Before, the below example would try to generate the field errorReporter instead of _errorReporter. Now it generates the correct naming style:
Ooo and this would probabl... | gharchive/pull-request | 2021-07-07T07:12:58 | 2025-04-01T06:38:25.609920 | {
"authors": [
"NTaylorMullen",
"allisonchou"
],
"repo": "dotnet/aspnetcore-tooling",
"url": "https://github.com/dotnet/aspnetcore-tooling/pull/3927",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
441919189 | SignalR JS client example doesn't work. (solution within)
aspnetcore/signalr/javascript-client/sample/wwwroot/js/chat.js requires an iife around start to start.
The sample appears to be based off the JS SignalR tutorial or vice versa, but with substantive differences around things like use or not of async.
I'm happy ... | gharchive/issue | 2019-05-08T20:33:14 | 2025-04-01T06:38:25.766872 | {
"authors": [
"Eilon",
"TW8B",
"davidfowl",
"karelz"
],
"repo": "dotnet/core",
"url": "https://github.com/dotnet/core/issues/2695",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
458994382 | Is it possible to create WPF or WinForms Class Library
I have a couple of .NET Framework class library projects which provide reusable functionality for WPF and Winforms. These projects currently do so by referencing the .NET Framework assemblies like WindowsBase.dll or System.Windows.Forms. I cannot figure out how t... | gharchive/issue | 2019-06-21T03:49:23 | 2025-04-01T06:38:25.771107 | {
"authors": [
"carlossanlop",
"ericstj",
"groogiam"
],
"repo": "dotnet/core",
"url": "https://github.com/dotnet/core/issues/2916",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
943807645 | typeof({primitive}).GetMethods() does not return operator overloads
Description
In the full netframework, calling
typeof(int).GetMethods()
would contain all of the operator methods, such as op_Addition. Currently in netcoreapp3.1, this same call comes back without any operator methods. What's really confusing me is... | gharchive/issue | 2021-07-13T20:36:54 | 2025-04-01T06:38:25.780449 | {
"authors": [
"jkotas",
"mchandschuh",
"wfurt"
],
"repo": "dotnet/core",
"url": "https://github.com/dotnet/core/issues/6463",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1881939430 | error CS8802: Only one compilation unit can have top-level statements. [C:\Users\aaa\MyApp\MyApp.csproj] The build failed. Fix the build errors and run again.
Problem encountered on https://dotnet.microsoft.com/en-us/learn/dotnet/hello-world-tutorial/run
Operating System: windows
Provide details about the problem yo... | gharchive/issue | 2023-09-05T13:03:06 | 2025-04-01T06:38:25.783209 | {
"authors": [
"buyaa-n",
"durgambigai"
],
"repo": "dotnet/core",
"url": "https://github.com/dotnet/core/issues/8738",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
348038136 | ArrayElementReference variant of the new Span / Memory
Hello, here's an interesting idea.
The new "Span" and "Memory" in C# 7.2 could potentially be used to solve the problem of the garbage collection cost of creating a very large quantity of objects. An app could manage GC cost by allocating objects in groups, that... | gharchive/issue | 2018-08-06T18:42:10 | 2025-04-01T06:38:26.024129 | {
"authors": [
"JeremyKuhne",
"benaadams",
"gfoidl",
"jaredpar",
"jkotas",
"verelpode"
],
"repo": "dotnet/corefxlab",
"url": "https://github.com/dotnet/corefxlab/issues/2417",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
194741194 | Create text generation templates for TryParse* invariant overloads, plus tests
Create text generation templates for integer parsing. There are four new templates:
InvariantUnsigned.tt: Implementations of InvariantParser.Invariant{Utf8, Utf16}.TryParse{Byte, UInt16, UInt32, UInt64}
InvariantUnsignedHex.tt Implementati... | gharchive/pull-request | 2016-12-10T03:16:44 | 2025-04-01T06:38:26.029953 | {
"authors": [
"KrzysztofCwalina",
"botaberg"
],
"repo": "dotnet/corefxlab",
"url": "https://github.com/dotnet/corefxlab/pull/1056",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
540546594 | Add Applymethod to PrimitiveDataFrameColumn
For issue #2805.
This PR adds an Apply<TResult> method to PrimitiveDataFrameColumn that takes a Func<T?, TResult?> and returns a new column with the new type.
Example usage (taken from the written unit test):
int[] values = { 1, 2, 3, 4, 5 };
var col = new PrimitiveDataFram... | gharchive/pull-request | 2019-12-19T20:31:33 | 2025-04-01T06:38:26.032033 | {
"authors": [
"pgovind",
"zHaytam"
],
"repo": "dotnet/corefxlab",
"url": "https://github.com/dotnet/corefxlab/pull/2807",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
270880267 | String.get_Length returns 0
String.get_Length started returning 0 after #4808 , which breaks printing strings and might indicate other problems. It looks like pinning a string and printing it character-by-character still works, so it could be an issue in the frozen string's length or in reading instance fields.
I'v... | gharchive/issue | 2017-11-03T05:10:04 | 2025-04-01T06:38:26.033270 | {
"authors": [
"morganbr"
],
"repo": "dotnet/corert",
"url": "https://github.com/dotnet/corert/issues/4863",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
358864197 | CoreCLR R2R testing building against CoreRT framework
While testing R2R on an IJW assembly, I saw a failure due to a missing framework method (Marshal.GetExceptionPointers). That method is in the CoreCLR framework, but not in CoreRT. While they should be very similar, we should really test against the CoreCLR framewo... | gharchive/issue | 2018-09-11T02:37:25 | 2025-04-01T06:38:26.034358 | {
"authors": [
"MichalStrehovsky",
"morganbr"
],
"repo": "dotnet/corert",
"url": "https://github.com/dotnet/corert/issues/6316",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
429932966 | Confusing description of the background garbage collector
Quote:
There is no setting for background garbage collection; it is automatically enabled with concurrent garbage collection. Background garbage collection is a replacement for concurrent garbage collection.
The two sentences contradict each other.
Document D... | gharchive/issue | 2019-04-05T20:59:39 | 2025-04-01T06:38:26.095905 | {
"authors": [
"bartlomiej-dawidow",
"tdykstra"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/issues/11697",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
195855775 | Add more documentation for dotnet test and dotnet vstest for Preview 3+ bits
There are certain features that do not exist in the dotnet test and dotnet vstest docs that need to be added, such as the ability to use .runsettings files, how filtering of tests work etc.
/cc @mairaw
is this partly covered here: https://... | gharchive/issue | 2016-12-15T16:47:44 | 2025-04-01T06:38:26.099248 | {
"authors": [
"blackdwarf",
"cartermp",
"dmccaffery",
"mairaw",
"sbaid"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/issues/1339",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
543167612 | is it possible to declare a variable static and initialize it later on?
Hi to all,
is it possible to first declare a variable static and then, on the following lines of code, to initialize this variable?
I don't know if this is the proper place for this question, but I'm asking because I'd like to initialize the vari... | gharchive/issue | 2019-12-28T13:33:59 | 2025-04-01T06:38:26.107358 | {
"authors": [
"BillWagner",
"Youssef1313",
"viniciusvw22"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/issues/16430",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
582309142 | libicu not found when using zypper
@SchoolGuy commented on Mon Mar 16 2020
Currently the command sudo zypper install libicu will not work because suse uses a different naming schema for this. Since I don't know what exact package is needed for .NET/.NET Core here is the link to the OBS Repository where all packages a... | gharchive/issue | 2020-03-16T13:47:34 | 2025-04-01T06:38:26.122294 | {
"authors": [
"CeciAc",
"SchoolGuy",
"Thraka",
"dagood"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/issues/17470",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
372450106 | Which element should be used in config file according the Example?
In the example it use the start element system.identityModel but the closing tag is microsoft.identityModel. Which one should be used?
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
ID: 088... | gharchive/issue | 2018-10-22T09:26:02 | 2025-04-01T06:38:26.127549 | {
"authors": [
"Thraka",
"kwlin",
"mairaw",
"mikkelbu"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/issues/8545",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
246489962 | move serialization docs
Fixes Part 1 of #2770
@rpetrusha good catch on those links! Even though the comments were not really related to moving the docs, I made the fixes. Please review. I've done some global fixes, so the number of files impacted is probably bigger than the number of files you've given feedback to.... | gharchive/pull-request | 2017-07-29T01:16:42 | 2025-04-01T06:38:26.129607 | {
"authors": [
"mairaw",
"rpetrusha"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/pull/2780",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1401979289 | Move file keyword into contextual keyword list
C# 11 declares a new feature using a new keyword file to restrict the accessibility. It should be a contextual keyword, not a predefined keyword.
Page: C# Keywords
Content source: docs/csharp/language-reference/keywords/index.md
This is my first PR. If there is somethin... | gharchive/pull-request | 2022-10-08T15:25:26 | 2025-04-01T06:38:26.137767 | {
"authors": [
"BillWagner",
"IEvangelist",
"RikkiGibson",
"SunnieShine",
"Youssef1313"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/pull/31660",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1477711442 | Type discriminator order
Fixes #32789.
It's only this morning that I've come across this page in the documentation and given it a read through...
I find it really surprising and disappointing that the words "at the start of the JSON object" were conceived and approved -- and, furthermore, that this polymorphic feat... | gharchive/pull-request | 2022-12-05T23:38:30 | 2025-04-01T06:38:26.140221 | {
"authors": [
"QuintinWillison",
"gewarren"
],
"repo": "dotnet/docs",
"url": "https://github.com/dotnet/docs/pull/32887",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
928584470 | Diagnostic port connect mode may not work in Kubernetes
Mounting the /tmp path between containers and using connect mode (the default mode) may not discover processes correctly. I validated with the customer that /tmp was mounted and that the event pipe socket from the application container was visible to dotnet-moni... | gharchive/issue | 2021-06-23T19:46:24 | 2025-04-01T06:38:26.207734 | {
"authors": [
"jander-msft",
"shirhatti"
],
"repo": "dotnet/dotnet-monitor",
"url": "https://github.com/dotnet/dotnet-monitor/issues/491",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
811584135 | New Advanced data options dialog
Label shouldn't be selectable twice
Alignment is off in this control :blush:
Alignment fixed in https://github.com/dotnet/machinelearning-tools/pull/913
This issue can be repro on environment:
Windows 10 Enterprise, Version 20H2
ML.Net Model Builder (Preview): 16.5.0.2115505
M... | gharchive/issue | 2021-02-19T00:34:21 | 2025-04-01T06:38:26.249284 | {
"authors": [
"beccamc",
"vzhuqin"
],
"repo": "dotnet/machinelearning-modelbuilder",
"url": "https://github.com/dotnet/machinelearning-modelbuilder/issues/1245",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1052507372 | ML Sentiment Model does not populate score
Microsoft Visual Studio Community 2022
Version 17.1.0 Preview 1.0
VisualStudio.17.Preview/17.1.0-pre.1.0+31903.286
Microsoft .NET Framework
Version 4.8.04161
Installed Version: Community
.NET Core Debugging with WSL 1.0
.NET Core Debugging with WSL
ADL Tools Service Provid... | gharchive/issue | 2021-11-13T01:13:34 | 2025-04-01T06:38:26.267443 | {
"authors": [
"beccamc",
"johndohoneyjr",
"zewditu"
],
"repo": "dotnet/machinelearning-modelbuilder",
"url": "https://github.com/dotnet/machinelearning-modelbuilder/issues/1915",
"license": "CC-BY-4.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1971715430 | Migrate Microsoft.Bcl.HashCode
Includes history from the old release/3.1 branch.
The latest available package in nuget.org is https://www.nuget.org/packages/Microsoft.Bcl.HashCode/1.1.1 and I was able to confirm that my local build successfully generated package 1.1.2.
By the way, NuGet.config is still using the do... | gharchive/pull-request | 2023-11-01T05:12:52 | 2025-04-01T06:38:26.290312 | {
"authors": [
"ViktorHofer",
"carlossanlop"
],
"repo": "dotnet/maintenance-packages",
"url": "https://github.com/dotnet/maintenance-packages/pull/18",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2389437998 | Added basic extract to component functionality on cursor over html tag
### Summary of the changes
Part of the implementation of the Extract To Component code action. Functional in one of the two cases, when the user is not selecting a certain range of a Razor component, but rather when the cursor is on either the op... | gharchive/pull-request | 2024-07-03T20:44:23 | 2025-04-01T06:38:26.431505 | {
"authors": [
"marcarro",
"phil-allen-msft",
"ryzngard"
],
"repo": "dotnet/razor",
"url": "https://github.com/dotnet/razor/pull/10578",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2417454430 | Turn off trailing whitespace triming in strings
We have tests with baselines that have trailing whitespaces. Our trimTrailingWhitespace setting means that those will get modified automatically, breaking those tests. To fix that, I implemented a vscode feature to avoid triming inside regex and strings, so let's use th... | gharchive/pull-request | 2024-07-18T21:31:44 | 2025-04-01T06:38:26.432741 | {
"authors": [
"333fred"
],
"repo": "dotnet/razor",
"url": "https://github.com/dotnet/razor/pull/10646",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
204511426 | "SDKs" show up as packages when they are indirect
I think this SDK thing is a leaky abstraction, for example, .NETStandard.Library shows up as SDK when it top level, but when it's a indirect, it shows up a package:
i think everything is as expected. in your screenshot we have an SDK X and it's dependencies, which ... | gharchive/issue | 2017-02-01T07:04:04 | 2025-04-01T06:38:26.453713 | {
"authors": [
"abpiskunov",
"davkean",
"fubar-coder"
],
"repo": "dotnet/roslyn-project-system",
"url": "https://github.com/dotnet/roslyn-project-system/issues/1414",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
602089492 | Win32Exception with Dapr
Describe the bug
An exception occurs when we launch tye run inside the sample repo for Dapr
To Reproduce
Download the sample for Dapr here, and run tye run (I just followed the instructions into the readme)
Further technical details
tye --version
dapr --version
dotnet --version
Looks ... | gharchive/issue | 2020-04-17T16:19:49 | 2025-04-01T06:38:27.037452 | {
"authors": [
"ChrisProlls",
"davidfowl",
"rynowak"
],
"repo": "dotnet/tye",
"url": "https://github.com/dotnet/tye/issues/374",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
627026819 | Logging Extension - Seq
What should we add or change to make your life better?
Create an extension to push logs to Seq
This would be similar to the existing extension built into Tye:
Tye can push logs to Elastic stack easily without the need for any SDKs or code changes in your services.
Would be implemented in a m... | gharchive/issue | 2020-05-29T06:17:30 | 2025-04-01T06:38:27.041339 | {
"authors": [
"razfriman"
],
"repo": "dotnet/tye",
"url": "https://github.com/dotnet/tye/issues/512",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1076592763 | Command Select Project fails with extension manifest validation error
Issue Description
Steps to Reproduce
Ctrl-Shift-P: "OmniSharp: Select project"
Error is shown
Expected Behavior
Opens up the project picker.
Actual Behavior
Command 'OmniSharp: Select Project' resulted in an error (Extension 'ms-dotnettools.cs... | gharchive/issue | 2021-12-10T08:58:23 | 2025-04-01T06:38:27.070241 | {
"authors": [
"CEbbinghaus",
"JoeRobich",
"OdisBy",
"PsychoNineSix",
"TanayParikh",
"jesperkristensen",
"mauve",
"tabish121"
],
"repo": "dotnet/vscode-csharp",
"url": "https://github.com/dotnet/vscode-csharp/issues/4944",
"license": "MIT",
"license_type": "permissive",
"li... |
1925179520 | Always build release and prerelease VSIXs and allow overriding build …
…number so that we can ship from any branch
Test builds:
https://dnceng.visualstudio.com/internal/_build/results?buildId=2283050&view=results
https://dnceng.visualstudio.com/internal/_build/results?buildId=2283875&view=results
https://dnceng.visua... | gharchive/pull-request | 2023-10-04T00:41:02 | 2025-04-01T06:38:27.072810 | {
"authors": [
"dibarbet"
],
"repo": "dotnet/vscode-csharp",
"url": "https://github.com/dotnet/vscode-csharp/pull/6481",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2132786673 | Operating System: windows
Problem encountered on https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/install
Operating System: windows
Provide details about the problem you're experiencing. Include your operating system version, exact error message, code sample, and anything else that is relevant.
This ... | gharchive/issue | 2024-01-31T11:47:01 | 2025-04-01T06:38:27.083630 | {
"authors": [
"HusanjonDeveloper",
"mairaw"
],
"repo": "dotnet/website-feedback",
"url": "https://github.com/dotnet/website-feedback/issues/22",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2341807690 | ⚠️ Adacta-fintech.com has degraded performance
In 98cf739, Adacta-fintech.com (https://www.adacta-fintech.com) experienced degraded performance:
HTTP code: 200
Response time: 5929 ms
Resolved: Adacta-fintech.com performance has improved in 5953693 after 7 minutes.
| gharchive/issue | 2024-06-08T19:47:16 | 2025-04-01T06:38:27.137029 | {
"authors": [
"dotsi"
],
"repo": "dotsi/aduptime",
"url": "https://github.com/dotsi/aduptime/issues/516",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
322375823 | nn_radius() returns no more than 32 neighbors
nn_radius only gives me 32 neighbors max. Despite max_nn=-1 or 1024 and also params.max_neighbors doesn't work?
Apparently FLANNIndex.params['checks'] is also a limiting factor. It defaults to 32, and increasing it increases the maximum for max_nn.
| gharchive/issue | 2018-05-11T17:32:19 | 2025-04-01T06:38:27.148458 | {
"authors": [
"flgw",
"robbmcleod"
],
"repo": "dougalsutherland/cyflann",
"url": "https://github.com/dougalsutherland/cyflann/issues/28",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
} |
1560637497 | Add infra-automation as codeowner for CircleCI and GitHub Actions configs
Jira link: https://doximity.atlassian.net/browse/IA-997
Overview
The infra automation team would like more visibility for CI config changes as they occur. Hence, adding ourselves as CODEOWNERS for:
.circleci directory, aka CircleCI configs
.gi... | gharchive/pull-request | 2023-01-28T02:01:14 | 2025-04-01T06:38:27.186385 | {
"authors": [
"TheMetalCode"
],
"repo": "doximity/omniauth-doximity-oauth2",
"url": "https://github.com/doximity/omniauth-doximity-oauth2/pull/14",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
96838141 | check for existence of provider_name
This fixes an error that was causing the QA interface to crash if it tried to call Krikri::Provider.name on an indexed provider that was missing a value for provider_name.
Thanks, @AudreyAltman - minor comment, expanding on above - what will get returned and rendered in the nav ... | gharchive/pull-request | 2015-07-23T15:18:30 | 2025-04-01T06:38:27.233048 | {
"authors": [
"AudreyAltman",
"anarchivist",
"no-reply"
],
"repo": "dpla/KriKri",
"url": "https://github.com/dpla/KriKri/pull/180",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2621625437 | Confused by --nOT and --nOB and the examples provided in the issues section
Hi,
I am confused by the definition of --nOT and --nOB and some examples provided by Devon here.
My starting reads are 150bp. I trimmed the reads before alignment using pretty standard trimming to remove possible adapter sequences and low-qua... | gharchive/issue | 2024-10-29T15:34:05 | 2025-04-01T06:38:27.256709 | {
"authors": [
"Flope",
"dpryan79"
],
"repo": "dpryan79/MethylDackel",
"url": "https://github.com/dpryan79/MethylDackel/issues/163",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
519948419 | Dracula for Vimium-FF (Firefox addon)
I made a custom CSS for the Firefox addon Vimium-FF.
If you want, it could be added to the collection of Dracula themes.
My repo is accessible here: https://github.com/Trollwut/vimium-dracula
Hey @Trollwut 👋 README.md should look like the template. If you could make a change a... | gharchive/issue | 2019-11-08T10:54:55 | 2025-04-01T06:38:27.266245 | {
"authors": [
"Trollwut",
"hacknug"
],
"repo": "dracula/dracula-theme",
"url": "https://github.com/dracula/dracula-theme/issues/347",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1368892431 | Shell completion (and other) text not visible (very faint)
Arch Linux | 5.19.7-AMD | sway version: 1.7 | foot version: 1.13.1 | Dracula theme
foot.ini: https://pastebin.com/s2tRCWkb
Sorry for my bad English!
Issue was patched with the merge request and the colors where updated.
If you update or download latest yo... | gharchive/issue | 2022-09-11T09:52:16 | 2025-04-01T06:38:27.268980 | {
"authors": [
"hajosattila",
"syrofoam"
],
"repo": "dracula/foot",
"url": "https://github.com/dracula/foot/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1372146382 | reflow sub command transposes // and leading space
Describe the bug
cargo spellcheck reflow produces bad comments.
To Reproduce
Steps to reproduce the behaviour:
A file containing:
use std::any::Any;
use std::borrow::Cow;
use std::collections::HashSet;
use std::ffi::CStr;
use std::hash::{Hash, Hasher};
use std::pt... | gharchive/issue | 2022-09-14T00:11:13 | 2025-04-01T06:38:27.360714 | {
"authors": [
"drahnr",
"lopopolo"
],
"repo": "drahnr/cargo-spellcheck",
"url": "https://github.com/drahnr/cargo-spellcheck/issues/277",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
238768691 | 问下大神,我想只更新某个section下的列表数据,其他section下数据不变怎么弄啊
问下大神,我想只更新某个section下的列表数据,其他section下数据不变怎么弄啊
参见:#150
| gharchive/issue | 2017-06-27T08:07:26 | 2025-04-01T06:38:27.383033 | {
"authors": [
"Greathfs",
"drakeet"
],
"repo": "drakeet/MultiType",
"url": "https://github.com/drakeet/MultiType/issues/151",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
2086015889 | Windows binary
Dear @drand, Windows 7 x64 user here. Could you be so kind to generate .exe for the rest of us who are ordinary users without compilers?
Sounds like a good idea. I'll release a v1.1.0 soon and will include binaries for Windows, Linux and Macos.
You can now find a Windows binary in our latest releas... | gharchive/issue | 2024-01-17T11:44:37 | 2025-04-01T06:38:27.394521 | {
"authors": [
"AnomalRoil",
"sergeevabc"
],
"repo": "drand/tlock",
"url": "https://github.com/drand/tlock/issues/78",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
542690298 | Ruby 2.7.0 support
Seeing this warning...
lib/ruby/gems/2.7.0/gems/draper-3.1.0/lib/draper/delegation.rb:10: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
@olleolleolle @codebycliff 🤝
Fixed by: https://github.com/drapergem/draper/pull/870
| gharchive/issue | 2019-12-26T23:05:46 | 2025-04-01T06:38:27.396572 | {
"authors": [
"codebycliff",
"kapso",
"pedrofurtado"
],
"repo": "drapergem/draper",
"url": "https://github.com/drapergem/draper/issues/869",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2081440364 | 公式结果支持数字格式
初始清单
[X] 这真的是个问题吗?
[X] 我已经在 Github Issues 中搜索过了,但没有找到类似的问题。
受影响的包和版本
dev
复现步骤
公式值有数字格式
预期行为
excel,google,保留第一个值的数字格式
实际行为
未保留数字格式
运行环境
No response
操作系统
No response
构建工具
No response
Maybe already?
| gharchive/issue | 2024-01-15T07:50:18 | 2025-04-01T06:38:27.415933 | {
"authors": [
"Gggpound",
"zhaolixin7"
],
"repo": "dream-num/univer",
"url": "https://github.com/dream-num/univer/issues/1142",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2328008382 | [Bug] After inserting a column, the data validation bound cells did not follow the translation
在您提交此问题之前,您是否检查了以下内容?
[X] 这真的是个问题吗?
[X] 我已经在 Github Issues 中搜索过了,但没有找到类似的问题。
受影响的包和版本
@univerjs/sheets-data-validation
复现链接
After inserting a column, the data validation bound cells did not follow move
预期行为
Sync move
... | gharchive/issue | 2024-05-31T14:42:10 | 2025-04-01T06:38:27.420122 | {
"authors": [
"r1k2r3k4",
"weird94"
],
"repo": "dream-num/univer",
"url": "https://github.com/dream-num/univer/issues/2376",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
329971149 | [REQUEST] - Support for FontAwesome 5
font-awesome-sass is now at version 5.0.13 but your plugin only support version 4. Could you please update it?
I'm not currently using it myself so I haven't had any push to upgrade it, but happy to have a PR.
Well turns out there was already a PR so merged that and published... | gharchive/issue | 2018-06-06T17:55:04 | 2025-04-01T06:38:27.451564 | {
"authors": [
"drewish",
"gvgramazio"
],
"repo": "drewish/jekyll-font-awesome-sass",
"url": "https://github.com/drewish/jekyll-font-awesome-sass/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
728350236 | Powermeter
Hey,
i found you project over youtube. The last thing I did was to rebuild the powermeter after this project https://github.com/rrrlasse/powerino/wiki. But I would like to get my data directly on my Garmin watch. Is it possible to send the data via ANT with the already existing project?
Best regards
Hi d... | gharchive/issue | 2020-10-23T16:21:14 | 2025-04-01T06:38:27.453350 | {
"authors": [
"drewvigne",
"duffel90"
],
"repo": "drewvigne/arduino_nano_33_ant",
"url": "https://github.com/drewvigne/arduino_nano_33_ant/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
145333858 | ENOENT spawn error with ionic start
From @Bandito11 on April 2, 2016 2:8
Note: for support questions, please use one of these channels:
https://forum.ionicframework.com/
http://ionicworldwide.herokuapp.com/
Short description of the problem:
I upgraded to beta.23 and started to get an error when created a new project ... | gharchive/issue | 2016-04-02T04:22:58 | 2025-04-01T06:38:27.464215 | {
"authors": [
"Bandito11",
"dylanvdmerwe",
"jgw96",
"tlancina"
],
"repo": "driftyco/ionic-cli",
"url": "https://github.com/driftyco/ionic-cli/issues/892",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
41539782 | [Feature request] - Full features demo in the homepage
Hi,
I'm reviewing http://www.idangero.us/framework7/ and I found very helpful the full features demo in the homepage. Could you review if is possible make some similar in ionic's site?
Thanks and regards
For demos, we have opted to keep them under our codepen a... | gharchive/issue | 2014-08-29T21:09:31 | 2025-04-01T06:38:27.469746 | {
"authors": [
"gastonbesada",
"mhartington"
],
"repo": "driftyco/ionic-site",
"url": "https://github.com/driftyco/ionic-site/issues/210",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
224459106 | $label-ios-text-color missing
Ionic version: (check one with "x")
[ ] 1.x
[ ] 2.x
[X ] 3.x
I'm submitting a ... (check one with "x")
[X ] bug report
[ ] feature request
[ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or http://ionicworl... | gharchive/issue | 2017-04-26T12:59:03 | 2025-04-01T06:38:27.476783 | {
"authors": [
"Iyashu5040",
"brandyscarney",
"jgw96"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/issues/11373",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
230388166 | viewWillEnter is not triggered on App instance when switching between tabs
Ionic version: (check one with "x")
[ ] 1.x (For Ionic 1.x issues, please use https://github.com/driftyco/ionic-v1)
[x] 2.x
[x] 3.x
I'm submitting a ... (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do... | gharchive/issue | 2017-05-22T13:00:56 | 2025-04-01T06:38:27.485055 | {
"authors": [
"jgw96",
"stalniy"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/issues/11752",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
79457641 | Layout glitches on Android when keyboard is opening or closing.
There are short visual distortions on keyboard transitions. However Ionic View app does not have such issue, thus it is seems to be solvable. My device is Nexus 4, Android 5.1. However I noticed similar behaviour on other devices.
Link to the video: http... | gharchive/issue | 2015-05-22T13:34:54 | 2025-04-01T06:38:27.490148 | {
"authors": [
"Ionitron",
"timuric"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/issues/3814",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
108563571 | bug: Meteor driftyco:ionic Blank Screen on ios simulator / ios devices
Type: bug
Platform: ios 7 webview
I am building a Meteor hybrid app that using AngularJS and ionic, so I decided to use driftyco:ionic, since meteoric:ionic doesn't support Angular.
Everything works fine on web browser, however, it is blank when i... | gharchive/issue | 2015-09-27T22:04:11 | 2025-04-01T06:38:27.497077 | {
"authors": [
"Ionitron",
"Urigo",
"kaiquewdev",
"mlynch",
"yumikohey"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/issues/4435",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
172418921 | Need a new option for inputs at the alertController component
Short description of the problem:
We can't add some custom attributes for inputs in alertController.
What behavior are you expecting?
I think it is necessary that we could add custom attributes like maxlength, id, style and etc to inputs in alertController... | gharchive/issue | 2016-08-22T10:30:24 | 2025-04-01T06:38:27.503906 | {
"authors": [
"jgw96",
"navid045",
"nkaredia"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/issues/7819",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
156769706 | Update docs Sqlstorage
Add documentation to clear function
Thank you!
| gharchive/pull-request | 2016-05-25T14:46:34 | 2025-04-01T06:38:27.504915 | {
"authors": [
"brandyscarney",
"remithomas"
],
"repo": "driftyco/ionic",
"url": "https://github.com/driftyco/ionic/pull/6652",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
101775395 | IOS pushnotification sound
In NgCordova push notification sample code
$rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
if (notification.alert) {
navigator.notification.alert(notification.alert);
}
if (notification.sound) {
var snd = new Media(event.sound);
snd.play();
}
... | gharchive/issue | 2015-08-18T23:55:26 | 2025-04-01T06:38:27.508941 | {
"authors": [
"Alphatiger",
"Ionitron"
],
"repo": "driftyco/ng-cordova",
"url": "https://github.com/driftyco/ng-cordova/issues/944",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2268197946 | [FEATURE]: cloudflare d1 session support
Describe what you want
https://blog.cloudflare.com/building-d1-a-global-database
This should be usable in graphql too.
Have any plan for this? This will greatly enhance the user experience.
| gharchive/issue | 2024-04-29T06:05:51 | 2025-04-01T06:38:27.512196 | {
"authors": [
"MJRT",
"janat08"
],
"repo": "drizzle-team/drizzle-orm",
"url": "https://github.com/drizzle-team/drizzle-orm/issues/2226",
"license": "Apache-2.0",
"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.