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
942071832
[3.x] Skip rendering of Light2D with zero size texture Fix #41756 Using light with not yet set texture cause spam of det==0 error to the console both in editor and in the game. (See issue #41756). Error is coming from no yet set texture which seems to have size of (0,0) by default. See explanation here: https://gith...
gharchive/pull-request
2021-07-12T13:35:23
2025-04-01T06:38:49.257823
{ "authors": [ "JestemStefan", "akien-mga" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/50397", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1323220824
Fix TranslatedLocal method in C# affecting the original transform This bug was discovered by @bluenote10, thanks! https://github.com/godotengine/godot/pull/55923#discussion_r933804096 Thanks!
gharchive/pull-request
2022-07-30T16:56:49
2025-04-01T06:38:49.259159
{ "authors": [ "aaronfranke", "akien-mga" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/63684", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1419431285
Improve support for 64-bit types on Android. Fixes #67193. This update mappings in the JNI functions to better support 64-bit integers, and adds support for 64-bit float arrays. The code is mostly reused from 32-bit types. I have now added support for 64-bit integer arrays and updated get_jni_type and get_jni_sig....
gharchive/pull-request
2022-10-22T18:03:57
2025-04-01T06:38:49.261995
{ "authors": [ "TechnoPorg", "akien-mga" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/67759", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1482376634
Improve tooltip for CanvasLayer.layer For #69716 Improve description to make it clear that layers with a lower value are drawn behind layers with higher values Production edit: Closes https://github.com/godotengine/godot/issues/69716 Thanks!
gharchive/pull-request
2022-12-07T16:56:02
2025-04-01T06:38:49.263907
{ "authors": [ "YuriSizov", "hackenshaw" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/69731", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
195130821
Added rad2vec and deg2vec functions Implements #7263 BTW, you could have used a force-push.. but, no big problem with this approach either :smiley: Code looks good, but the following code: print(rad2deg(deg2vec(20).angle())) print(rad2deg(deg2vec(70).angle())) Results in: 70 20 Which is obviously wrong (values ...
gharchive/pull-request
2016-12-13T00:58:18
2025-04-01T06:38:49.271801
{ "authors": [ "Tybobobo", "akien-mga", "bojidar-bg", "jxfaith", "tagcup" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/7285", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1759930083
Add String.strip_bbcode() and String.bbcode_escape() BBCode methods String.strip_bbcode() can be used to display text from a RichTextLabel in places that don't support rich formatting. String.bbcode_escape() can be used to prevent BBCode injection in RichTextLabels that display user input. This closes https://github...
gharchive/pull-request
2023-06-16T05:08:39
2025-04-01T06:38:49.308537
{ "authors": [ "AThousandShips", "Calinou", "Jael-G", "Mickeon", "dalexeev", "markdibarry", "tumblewed" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/78310", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1913035670
[macOS] Fix borderless mode on macOS 13.6+. Seems like the behavior changed in macOS 13.6 and 14.x. Fixes https://github.com/godotengine/godot/issues/82349 Does this need a check for older macOS versions, or does this fix the borderless behavior across all versions? Does this need a check for older macOS version...
gharchive/pull-request
2023-09-26T08:58:47
2025-04-01T06:38:49.312504
{ "authors": [ "BrixsterPlanet", "YuriSizov", "akien-mga", "bruvzg" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/82357", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1916060648
N1cko m99 patch 1 Please do not submit testing pull requests to this repository. Submit them against your repository's fork instead (or create another source repository if you can't use a fork for some reason).
gharchive/pull-request
2023-09-27T17:55:00
2025-04-01T06:38:49.313500
{ "authors": [ "Calinou", "N1ckoM99" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/82457", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2005042011
Subemitter emission at end now correctly emits at end Particles were previously arbitrarily emitting "at end" at 95% of lifetime. Probably worked ok for most particles, but for long living particles it's really really visible. Remember to capitalize your commit messages ;) Thanks!
gharchive/pull-request
2023-11-21T20:04:22
2025-04-01T06:38:49.314765
{ "authors": [ "QbieShay", "akien-mga" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/85189", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2458517049
Fix check in Object._ValidateProperty example The GDScript version above makes the number property read only whenever is_number_editable is false. func _validate_property(property: Dictionary): if property.name == "number" and not is_number_editable: property.usage |= PROPERTY_USAGE_READ_ONLY The C# version is si...
gharchive/pull-request
2024-08-09T19:10:25
2025-04-01T06:38:49.316565
{ "authors": [ "akien-mga", "esainane" ], "repo": "godotengine/godot", "url": "https://github.com/godotengine/godot/pull/95341", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
279434493
confusing docstrings The docstring for stan() says that the data and ProjDir arguments are required, but in the source they're defined as optional positional arguments. Also, the way they're described is confusing since you don't call the method with the argument name (while you do for the keyword arguments, which a...
gharchive/issue
2017-12-05T16:12:34
2025-04-01T06:38:49.319918
{ "authors": [ "goedman", "kleinschmidt" ], "repo": "goedman/Stan.jl", "url": "https://github.com/goedman/Stan.jl/issues/50", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1999159014
Support for dynamic gosec matrix Dynamically generate a matrix for testing with gosec CI still not working, pending https://github.com/tchupp/actions-detect-directory-changes/issues/18
gharchive/pull-request
2023-11-17T13:40:02
2025-04-01T06:38:49.329799
{ "authors": [ "gaby" ], "repo": "gofiber/storage", "url": "https://github.com/gofiber/storage/pull/1091", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2325166657
os/glog/glog_logger_rotate.go:The time for slicing should be based on the file creation time rather than the update time Go version go1.22.3 darwin/amd64 GoFrame version v2.7.1 Can this bug be reproduced with the latest release? Option Yes What did you do? 日志配置了按时间切片。配置如下: rotateSize: 100000000 rotateExpir...
gharchive/issue
2024-05-30T09:16:07
2025-04-01T06:38:49.334318
{ "authors": [ "yiqiang3344" ], "repo": "gogf/gf", "url": "https://github.com/gogf/gf/issues/3620", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2666887158
OpenTelemetry V2.8 improvement suggestions Is your feature request related to a problem? Option No Describe the solution you'd like 目前工作中存在以下痛点,V2.8 中不支持。 可以定制一个参数,开启实现SQL记录 可以定制一个参数,开启实现请求参数的记录 可以定制一个参数,开启实现返回参数的记录 需要增加HTTP请求方法的记录 GET/PUT/POST/DELETE Describe alternatives you've considered 暂无 Additional No respons...
gharchive/issue
2024-11-18T02:33:18
2025-04-01T06:38:49.339579
{ "authors": [ "gqcn", "houseme", "macnie", "wisonlau", "yiqiniu" ], "repo": "gogf/gf", "url": "https://github.com/gogf/gf/issues/3931", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1231968596
gf-cli Bug of generating Dao file of MSSQL [mssql中的TableFields产生的field的key是小写的,gdb.TableField.Name是大写的导致生成dao文件失败 bug #1780 Codecov Report Merging #1818 (89f77a2) into develop (583d576) will decrease coverage by 0.10%. The diff coverage is n/a. @@ Coverage Diff @@ ## develop #...
gharchive/pull-request
2022-05-11T03:52:32
2025-04-01T06:38:49.355819
{ "authors": [ "codecov-commenter", "wenzi1" ], "repo": "gogf/gf", "url": "https://github.com/gogf/gf/pull/1818", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
146488324
gogs_v0.9.0_linux_amd64 升级 gogs_v0.9.13_linux_amd64 失败. We DO NOT take questions or config/deploy problems on GitHub, please use our forum: https://discuss.gogs.io Please take a moment to search that an issue doesn't already exist. For bug reports, please give the relevant info: Gogs version (or commit ref): 0.9.13....
gharchive/issue
2016-04-07T02:15:01
2025-04-01T06:38:49.364329
{ "authors": [ "Unknwon", "terrywh", "yzdel200" ], "repo": "gogits/gogs", "url": "https://github.com/gogits/gogs/issues/2944", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
165982657
v0.9.46 missing release binaries Some binaries including linux_amd64 are missing at https://github.com/gogits/gogs/releases/tag/v0.9.46 Thanks for the release! :tada: I don't have enough machines and no good internet to setup VMs yet, will upload ASAP. @Unknwon What do you think about create a building platform l...
gharchive/issue
2016-07-17T15:59:47
2025-04-01T06:38:49.368582
{ "authors": [ "BurakDev", "Unknwon", "Xe", "gramakri", "techzilla", "xor-gate" ], "repo": "gogits/gogs", "url": "https://github.com/gogits/gogs/issues/3277", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
278139678
Build returned "matched no package" and didn't produce output. I am trying to build the project github.com/pseudomuto/protoc-gen-doc. Here is my build.gradle ` buildscript { repositories { repositories { mavenLocal() maven { url "${artifactoryContextUrl}/libs-release" } maven { url "${artifactoryContextUrl}/libs-sna...
gharchive/issue
2017-11-30T14:31:04
2025-04-01T06:38:49.378640
{ "authors": [ "timleung22" ], "repo": "gogradle/gogradle", "url": "https://github.com/gogradle/gogradle/issues/158", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2324356772
Add: Statistics Command Overview: This PR adds stats command which shows the overall statistic information about the projects and repositories. Screenshots: I would put this information into info becuase, this here so little for having its own command While you are at info you can also add this fields in here S...
gharchive/pull-request
2024-05-29T22:44:44
2025-04-01T06:38:49.389459
{ "authors": [ "Vad1mo", "bupd" ], "repo": "goharbor/harbor-cli", "url": "https://github.com/goharbor/harbor-cli/pull/93", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
539258967
Array of bundle.hash is reversed The array of the bundle you get back after a TX is 'upside down' (reversed), which means that the address where the tokens are send to normally is bundle[0].hash, but now it is the address of the remainder tokens. In short: In IRI the bundle[0].hash is the address you want to send to....
gharchive/issue
2019-12-17T19:15:24
2025-04-01T06:38:49.406887
{ "authors": [ "HarmvandenBrink", "Thoralf-M", "muXxer" ], "repo": "gohornet/hornet", "url": "https://github.com/gohornet/hornet/issues/63", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
445802815
Add a .Markdownify on Page Find a better name, but this is related to #5975 -- the markdownify has no page context so it just renders the content as "Blackfriday markdown", which is not ... perfect if in a shortcode and the surrounding content is Asciidoc. To me markdownify is a misleading function name. All other ...
gharchive/issue
2019-05-19T10:15:51
2025-04-01T06:38:49.411314
{ "authors": [ "bep", "cluck", "larzza", "regisphilibert" ], "repo": "gohugoio/hugo", "url": "https://github.com/gohugoio/hugo/issues/5976", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
320264044
Update README.md Centered the logo because it looks visually better? Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.You have signed the CLA already but the status is still pending?...
gharchive/pull-request
2018-05-04T12:54:02
2025-04-01T06:38:49.414258
{ "authors": [ "CLAassistant", "EOussama", "RealOrangeOne" ], "repo": "gohugoio/hugo", "url": "https://github.com/gohugoio/hugo/pull/4697", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
335077908
Add plugin support Plugins add support for sending request metrics, and logging #2 @sohamkamani A major change to the structure of the API has landed on master, can you plz rebase with master and inculcate the new changes. Thanks @rShetty fixed @sohamkamani You want to look at fixing merge conflicts, will have ...
gharchive/pull-request
2018-06-23T07:35:18
2025-04-01T06:38:49.418691
{ "authors": [ "coveralls", "jjafuller", "rShetty", "sohamkamani", "unmultimedio" ], "repo": "gojek/heimdall", "url": "https://github.com/gojek/heimdall/pull/40", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
207561917
CRLF in golden files Git on PC's has an autoCRLF feature - automatically converting to CRLF line endings when populating files, but storing those files with Unix-style LF-only endings. This is an issue with the golden-file test pattern - the golden files on a PC with autoCRLF on will have CRLF endings, but the inter...
gharchive/issue
2017-02-14T16:16:23
2025-04-01T06:38:49.426889
{ "authors": [ "carolynvs", "tro3" ], "repo": "golang/dep", "url": "https://github.com/golang/dep/issues/243", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
65432048
gccgo: crash on reference to undefined name package main func crash() { xpc := pc } gccgo (GCC) 5.0.0 20150331 (experimental) on ppc64le error: reference to undefined name ‘pc’ xpc := pc go1: internal compiler error: in set_type, at go/gofrontend/expressions.cc:15628 0x101d2b0f Numeric_constant::set_type(...
gharchive/issue
2015-03-31T11:39:06
2025-04-01T06:38:49.432723
{ "authors": [ "h4ck3rm1k3", "ianlancetaylor", "minux" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/10296", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
90284889
pprof: weird allocation counts after reading a file of a certain minimum size Here is a gist containing a program that does the following: Set runtime.MemProfileRate to 1. Read a flag-controlled number of zeroes from /dev/zero using ioutil.ReadAll and io.LimitReader. Call io.MultiWriter 1024 times in a loop, encoura...
gharchive/issue
2015-06-23T04:34:37
2025-04-01T06:38:49.441151
{ "authors": [ "bradfitz", "jacobsa", "rsc" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/11343", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
107688331
proposal: different octal base literal representation Shortly Proposal is to add an alternative syntax for representing octal literals and deprecate the current syntax in Go 2+. Deprecation is not necessary, but is personally perceived to be inline with Go's idioms Current syntax: octal_lit = "0" { octal_digit } . ...
gharchive/issue
2015-09-22T10:44:34
2025-04-01T06:38:49.458289
{ "authors": [ "DisposaBoy", "RomanSaveljev", "cznic", "griesemer", "ianlancetaylor", "robpike", "rsc" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/12711", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
228394608
cmd/compile: improve the help message of go tool compile -d ssa/help I noticed it was somewhat difficult to read the ssa/help output: $ go tool compile -d ssa/help compile: GcFlag -d=ssa/<phase>/<flag>[=<value>]|[:<function_name>] <phase> is one of: check, all, build, intrinsics, early_phielim, early_copyelim...
gharchive/issue
2017-05-12T20:05:33
2025-04-01T06:38:49.461732
{ "authors": [ "bradfitz", "dlespiau", "josharian" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/20349", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
270141795
cmd/compile: treat pointer-to-go:notinheap types as scalar In the runtime, we have the go:notinheap directive to flag types that can never appear in the Go heap. The compiler currently uses this directive to omit write barriers for *T-typed slots when T is marked go:notinheap. However, we still mark *T-typed slots as...
gharchive/issue
2017-10-31T22:41:51
2025-04-01T06:38:49.464715
{ "authors": [ "cuonglm", "mdempsky" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/22519", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
317555094
cmd/link: some packages don't build with -buildmode=shared Please answer these questions before submitting your issue. Thanks! What version of Go are you using (go version)? go version go1.9.5 linux/amd64 go version go1.10.1 linux/amd64 Does this issue reproduce with the latest release? yes What operating system and ...
gharchive/issue
2018-04-25T09:49:04
2025-04-01T06:38:49.470383
{ "authors": [ "ianlancetaylor", "mwhudson", "pebbe" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/25065", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
325767501
Add encoding/base58 Besides being wide spread in the cryptocurrency world, base58 is generally great for data humans interact with manually (url shorteners, password reset tokens etc). https://en.m.wikipedia.org/wiki/Base58 Usual question: why has this to be in the standard library? https://golang.org/doc/faq#x_in_...
gharchive/issue
2018-05-23T15:47:56
2025-04-01T06:38:49.474952
{ "authors": [ "ALTree", "FlorianUekermann" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/25522", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
453696878
cmd/compile: extendslice contains n.SetLikely(false), which does nothing extendslice contains: nifneg.SetLikely(false). But the Likely flag on Node is boolean; setting it to false has no effect at all. To make it do something, we'd need to invert the condition and set it to true. But given that the body contains a pa...
gharchive/issue
2019-06-07T21:16:21
2025-04-01T06:38:49.476964
{ "authors": [ "josharian", "martisch" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/32486", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
488205695
runtime: some programs broken on Wine after removing time compatibility hacks go version devel +03ac39ce5e Mon Sep 2 12:57:37 2019 +0000 linux/amd64 I've started seeing panics like the one below when running some of my tests via GOOS=windows go test -exec=wine: fatal error: nanotime returning zero goroutine 1 [runn...
gharchive/issue
2019-09-02T14:01:44
2025-04-01T06:38:49.483178
{ "authors": [ "mvdan", "zx2c4" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/34021", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
679517547
You are neither in a module nor in your GOPATH What version of Go are you using (go version)? $ go version Does this issue reproduce with the latest release? What operating system and processor architecture are you using (go env)? go env Output $ go env What did you do? What did you expect to see? What did you ...
gharchive/issue
2020-08-15T07:21:01
2025-04-01T06:38:49.485714
{ "authors": [ "martisch", "youda-online" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/40810", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
717081232
doc: update install from source page after GO386 changes The Installing Go from source page says (in the section dedicated to Env Variables): $GO386 (for 386 only, default is auto-detected if built on either 386 or amd64, 387 otherwise) This controls the code generated by gc to use either the 387 floating-point unit...
gharchive/issue
2020-10-08T07:01:47
2025-04-01T06:38:49.490001
{ "authors": [ "ALTree", "dmitshur" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/41861", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1067492715
runtime/metrics: add contention metrics Right now lock contention is only possible to debug with pprof using the block profile. This is very useful once contention has been identified as the issue, but since it has to be turned on manullay it doesn't help in identifying that contention is an issue. Exporting the cumu...
gharchive/issue
2021-11-30T17:24:49
2025-04-01T06:38:49.494157
{ "authors": [ "aclements", "ianlancetaylor", "mknyszek", "prattmic", "znkr" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/49881", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1088627773
unicode/utf8: invalid memory address or nil pointer dereference What version of Go are you using (go version)? $ go version go version go1.17.5 linux/amd64 Does this issue reproduce with the latest release? yes What operating system and processor architecture are you using (go env)? go env Output $ go env GO111MOD...
gharchive/issue
2021-12-25T16:53:56
2025-04-01T06:38:49.498836
{ "authors": [ "heavenisme", "mvdan", "yaa110" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/50346", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1090683243
x/pkgsite: link to custom links is broken. What is the URL of the page with the issue? https://pkg.go.dev/about What is your user agent? (N/A) Mozilla/5.0 (X11; CrOS x86_64 14268.51.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.77 Safari/537.36 Screenshot N/A What did you do? Click on the link to "this ...
gharchive/issue
2021-12-29T18:25:25
2025-04-01T06:38:49.503316
{ "authors": [ "jamalc", "lostluck" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/50387", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1248464115
reflect: undeprecate StringHeader, SliceHeader? CL https://go-review.googlesource.com/c/go/+/401434 marked these as deprecated, but if you want to do something like extract the pointer inside a string or a slice, it is unclear what you should use instead. We need to have an available answer before we ship a release w...
gharchive/issue
2022-05-25T17:55:51
2025-04-01T06:38:49.505628
{ "authors": [ "bcmills", "dmitshur", "rsc" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/53079", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1375766034
affected/package: net/http What version of Go are you using (go version)? $ go version latest Does this issue reproduce with the latest release? not What operating system and processor architecture are you using (go env)? go env Output $ go env darwin arm64 What did you do? There might be a potential safety probl...
gharchive/issue
2022-09-16T10:41:10
2025-04-01T06:38:49.509518
{ "authors": [ "Shawn-Huang-Tron", "seankhliao" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/55103", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1619519368
x/build: missing host-openbsd-mips64-joelsing host Currently at https://farmer.golang.org/#pools: host-openbsd-mips64-joelsing: 0/0 (1 missing) CC @golang/release cc @4a6f656c
gharchive/issue
2023-03-10T19:33:41
2025-04-01T06:38:49.511182
{ "authors": [ "cagedmantis" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/58970", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1803471948
x/vuln: Trojan:Win32/Randet.A!plock asm.exe Issue: Potential trojan detection: asm.exe flagged as Trojan:Win32/Randet.A!plock Description I have encountered a potential trojan detection on the Go programming language version 1.20.6. The file "asm.exe" located at "C:\Program Files\Go\pkg\tool\windows_amd64" has been f...
gharchive/issue
2023-07-13T17:30:37
2025-04-01T06:38:49.516052
{ "authors": [ "ayoubzulfiqar", "seankhliao" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/61339", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2353762795
os/exec: document subtleties around Cmd.Dir, PWD, os.Getwd and C's getcwd The interaction of exec.Cmd and os.Getwd is rather subtle: the working directory of a POSIX process is represented by a file descriptor, not a string, so C's getcwd will always return a real (symlink-free) path. By contrast, Go's os.Getwd will ...
gharchive/issue
2024-06-14T17:01:08
2025-04-01T06:38:49.521250
{ "authors": [ "adonovan", "gabyhelp" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/68000", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
2673802402
fatal error: runtime: mcall called on m->g0 stack while concurrently fetching /profile and /trace Go version go version go1.23.3 linux/amd64 Output of go env in your module/workspace: GO111MODULE='' GOARCH='amd64' GOBIN='' GOCACHE='/home/piob/.cache/go-build' GOENV='/home/piob/.config/go/env' GOEXE='' GOEXPERIMENT=''...
gharchive/issue
2024-11-19T22:53:42
2025-04-01T06:38:49.539534
{ "authors": [ "ajwerner", "gabyhelp", "ianlancetaylor", "piob-io", "rhysh" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/70454", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1719957798
samples: move parts of prj.conf to Kconfig.defconfig The general idea is to reduce duplication across different samples' prj.conf files and configure common settings using Kconfig default values. I think moving these configurations out of the prj.conf makes them less visible to the user. When I'm working on adding ...
gharchive/pull-request
2023-05-22T15:44:15
2025-04-01T06:38:49.608567
{ "authors": [ "mniestroj", "sam-golioth", "szczys" ], "repo": "golioth/golioth-zephyr-sdk", "url": "https://github.com/golioth/golioth-zephyr-sdk/pull/382", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2242041382
add alce asqa benchmark add alce asqa benchmark Do you have any reproduciable results for this benchmark? The result of a llama2-7b model on the gtr dataset is currently being generated and will be uploaded together with README tomorrow. Do you have any reproduciable results for this benchmark? The result of...
gharchive/pull-request
2024-04-14T08:28:10
2025-04-01T06:38:49.618136
{ "authors": [ "QianHaosheng" ], "repo": "gomate-community/rageval", "url": "https://github.com/gomate-community/rageval/pull/95", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
345048857
mat: add error handling when asking to slice to 0 Addresses #551 . WIP - needs tests and clarifications on any other edge cases I have missed from @kortschak. So far I have only one condition to check if i is relative to k and j is relative to l. All tests pass and code is formatted. I think it probably doesn't mat...
gharchive/pull-request
2018-07-27T00:22:37
2025-04-01T06:38:49.628665
{ "authors": [ "ahlusar1989", "btracey", "kortschak" ], "repo": "gonum/gonum", "url": "https://github.com/gonum/gonum/pull/558", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
104691922
tintAdjustmentMode is not inherited for controller First of all thank you for this library it is great, better than all other suggested If I set tintAdjustmentMode for application window to Normal, controller where alert is presented anyway becomes dimmed, as you set Automatic adjustment mode in code Hi, I'm grad y...
gharchive/issue
2015-09-03T13:21:52
2025-04-01T06:38:49.681416
{ "authors": [ "Igor-Palaguta", "roothybrid7" ], "repo": "goodpatch/PKAlertController", "url": "https://github.com/goodpatch/PKAlertController/issues/12", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1098605218
Issue: Records 100-200 cause failure in link activity or persist activity Issue: Records 100-200 cause failure in link activity or persist activity Corrected with aligning async activity with the AsyncTaskActivity base class.
gharchive/issue
2022-01-11T03:18:20
2025-04-01T06:38:49.683545
{ "authors": [ "goodtocode" ], "repo": "goodtocode/analytics", "url": "https://github.com/goodtocode/analytics/issues/57", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2301455177
Repeated token generation for gpu-based gemma models on device Have I written custom code (as opposed to using a stock example script provided in MediaPipe) No OS Platform and Distribution Windows 11, Android 14 MediaPipe Tasks SDK version No response Task name (e.g. Image classification, Gesture recognition etc.) LL...
gharchive/issue
2024-05-16T22:05:21
2025-04-01T06:38:49.692469
{ "authors": [ "adityak6798", "kuaashish" ], "repo": "google-ai-edge/mediapipe", "url": "https://github.com/google-ai-edge/mediapipe/issues/5414", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
926904891
Excuse me,I want to ask how to input jpeg mendel@deft-dog:~/project-posenet$ python3 pose_camera.py --jpeg /home/mendel/project-posenet/gstreamer.py:15: PyGIWarning: Gst was imported without specifying a version first. Use gi.require_version('Gst', '1.0') before import to ensure that the right version gets loaded. ...
gharchive/issue
2021-06-22T07:07:34
2025-04-01T06:38:49.989804
{ "authors": [ "XuTZ0912", "hjonnala", "maiermic" ], "repo": "google-coral/project-posenet", "url": "https://github.com/google-coral/project-posenet/issues/67", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2415049960
Replace flat list of available games with a table. Fixes #1246. Nice!! Thanks
gharchive/pull-request
2024-07-18T02:05:07
2025-04-01T06:38:49.990942
{ "authors": [ "carlosgmartin", "lanctot" ], "repo": "google-deepmind/open_spiel", "url": "https://github.com/google-deepmind/open_spiel/pull/1251", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
774305319
Android Basics: polished-user-experience URL of codelab In which task and step of the codelab can this issue be found? Describe the problem Steps to reproduce? Go to... Click on... See error... Versions Android Studio version: API version of the emulator: Additional information Include screenshots if they would be ...
gharchive/issue
2020-12-24T09:58:00
2025-04-01T06:38:49.996065
{ "authors": [ "sachin-koparde" ], "repo": "google-developer-training/android-basics-kotlin-tip-calculator-app-solution", "url": "https://github.com/google-developer-training/android-basics-kotlin-tip-calculator-app-solution/issues/57", "license": "apache-2.0", "license_type": "permissive", "license_s...
1284692904
Functions in Kotlin: Android Basics in Compose URL of codelab https://developer.android.com/codelabs/basic-android-kotlin-compose-functions?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-basics-compose-unit-1-pathway-1%3Fhl%3Den%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fb...
gharchive/issue
2022-06-25T19:24:34
2025-04-01T06:38:50.000679
{ "authors": [ "Nazir23", "osuleymanova" ], "repo": "google-developer-training/basic-android-kotlin-compose-birthday-card-app", "url": "https://github.com/google-developer-training/basic-android-kotlin-compose-birthday-card-app/issues/27", "license": "Apache-2.0", "license_type": "permissive", "li...
2594234570
First Android app: Android Basics with Compose URL of codelab In which task and step of the codelab can this issue be found? Describe the problem Steps to reproduce? Go to... Click on... See error... Versions Android Studio version: API version of the emulator: Additional information Include screenshots if they wou...
gharchive/issue
2024-10-17T09:59:13
2025-04-01T06:38:50.004954
{ "authors": [ "guidozoe" ], "repo": "google-developer-training/basic-android-kotlin-compose-birthday-card-app", "url": "https://github.com/google-developer-training/basic-android-kotlin-compose-birthday-card-app/issues/882", "license": "Apache-2.0", "license_type": "permissive", "license_source": "gi...
1737439628
I can't run "python3 -m pip install ." 🟥When I run the quick start on vscode, I got this error message🟥 %python3 -m pip install . "Collecting gym==0.21.0 (from kaggle-environments==1.13.0) Using cached gym-0.21.0.tar.gz (1.5 MB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python s...
gharchive/issue
2023-06-02T04:22:08
2025-04-01T06:38:50.010571
{ "authors": [ "m19089mamada", "wind-knows" ], "repo": "google-research/football", "url": "https://github.com/google-research/football/issues/355", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
909060820
Adding Moral Permissibility Test Judging moral permissibility This task tests whether ultra-large language models are able to read a short story where a moral scenario is presented and answer "Is it morally permissible to do X?" in the same manner as humans would. Authors: Allen Nie (anie@stanford.edu) and Tobias Ger...
gharchive/pull-request
2021-06-02T03:50:26
2025-04-01T06:38:50.051051
{ "authors": [ "Sohl-Dickstein", "ajslone", "chiafullo", "demelin", "nfiedel", "taoyds", "windweller" ], "repo": "google/BIG-bench", "url": "https://github.com/google/BIG-bench/pull/416", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1046843323
HHH Alignment Adds helpfulness / honesty / harmlessness binary comparison evaluations. Note I used the same readme for all sub-folders. I can update this if needed. Thank you for submitting this! The task topic addresses an important area that needs more coverage in BIG-bench, and I'm happy to see it. A quick requ...
gharchive/pull-request
2021-11-07T20:35:22
2025-04-01T06:38:50.058874
{ "authors": [ "Sohl-Dickstein", "diazmark", "guygurari", "jareddk" ], "repo": "google/BIG-bench", "url": "https://github.com/google/BIG-bench/pull/603", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
49481643
Feedback for: /fundamentals/getting-started/web-starter-kit/setting-up.html Under the Sass section you say that once you install Gulp globally that Sass will be available to you. I am pretty sure that the gulp-ruby-sass still relies on ruby and sass, so you still need to install ruby and sass separately for Windows ...
gharchive/issue
2014-11-20T02:13:06
2025-04-01T06:38:50.120953
{ "authors": [ "PaulKinlan", "addyosmani", "delebash", "dturner", "gauntface", "petele" ], "repo": "google/WebFundamentals", "url": "https://github.com/google/WebFundamentals/issues/1010", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
206703140
Object comparison always returns true. I've found a code smell and a possibly bug in a recent snapshot. Path: src/main/java/com/google/security/zynamics/binnavi/disassembly/CFunction.java 439 @Override 440 public boolean inSameDatabase(final SQLProvider provider) { 441 return provider.equals(provider); 442 ...
gharchive/issue
2017-02-10T04:00:09
2025-04-01T06:38:50.130760
{ "authors": [ "cblichmann", "lifove" ], "repo": "google/binnavi", "url": "https://github.com/google/binnavi/issues/102", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
54341333
State now saves amount of parsed entries. Piggied back crash if entries won't verify. Since logs grew to 6 millions and are still growing, it would be good to not start from 0 if something goes wrong while fetching. PS: I hate Twisted. LGTM
gharchive/pull-request
2015-01-14T16:18:44
2025-04-01T06:38:50.178057
{ "authors": [ "laiqu", "pphaneuf" ], "repo": "google/certificate-transparency", "url": "https://github.com/google/certificate-transparency/pull/394", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1526313679
Recursive record types fail silently, documentation lacks Recursive record types are seemingly not supported. However, it is not directly documented (that I know of). The behavior of the compiler is that it assigns unknown type to the recursive part. /** * @typedef {{ name: string, next: Car }} // should produce err...
gharchive/issue
2023-01-09T20:59:59
2025-04-01T06:38:50.181831
{ "authors": [ "fingerartur", "rishipal" ], "repo": "google/closure-compiler", "url": "https://github.com/google/closure-compiler/issues/4031", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
828445715
Wrong placement of negative sign in currency for Norwegian locale I originally reported this as an Angular bug pertaining to the currency pipe, and was told to report it here. The locale for Norway places the negative sign in front of the symbol rather than in front of the digits. Negative currency values will curren...
gharchive/issue
2021-03-10T23:00:53
2025-04-01T06:38:50.194813
{ "authors": [ "12wrigja", "Akisan98", "NorseJedi", "ensnared", "shicks" ], "repo": "google/closure-library", "url": "https://github.com/google/closure-library/issues/1124", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
31523057
goog.net.IframeIo doesn't clear state after use This issue was imported from Closure Library's previous home at http://closure-library.googlecode.com The link to the original issue is: https://code.google.com/p/closure-library/issues/detail?id=561 Can't repro.
gharchive/issue
2014-04-15T03:12:49
2025-04-01T06:38:50.197025
{ "authors": [ "joeltine", "nanaze" ], "repo": "google/closure-library", "url": "https://github.com/google/closure-library/issues/57", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
631432960
Add mwc-probability A little extra for mwc-random, bringing common distributions and their sampling. @googlebot I signed it! Done and deployed. Thanks!
gharchive/pull-request
2020-06-05T09:00:46
2025-04-01T06:38:50.198495
{ "authors": [ "cdsmith", "dpwiz" ], "repo": "google/codeworld", "url": "https://github.com/google/codeworld/pull/1358", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1676115480
Add DEA/NIDEM dataset Adding national intertidal DEM (NIDEM) dataset from Digital Earth Australia (DEA) to the catalog. The dataset is under ngis-cat. ngis-cat directory and necessary files were added under catalog/ and example/. Keywords "dea_australia" and "nidem" were added to the exception list so it can be more...
gharchive/pull-request
2023-04-20T06:56:53
2025-04-01T06:38:50.225153
{ "authors": [ "ShiruiH" ], "repo": "google/earthengine-catalog", "url": "https://github.com/google/earthengine-catalog/pull/486", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
173803844
Remove @CheckReturnValue error in last line of assertThrows/expectThrows Coming in JUnit 4.13: https://github.com/junit-team/junit4/pull/1154 Created internal bug b/31151913 so we don't lose track of this. Fixed by https://github.com/google/error-prone/commit/f9ea34b52ace79c5f3e1d39fd0f1ade2eba9b06a
gharchive/issue
2016-08-29T15:38:29
2025-04-01T06:38:50.228950
{ "authors": [ "cpovirk", "eaftan" ], "repo": "google/error-prone", "url": "https://github.com/google/error-prone/issues/452", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
309394894
IndexOutOfBoundsException What version of Error Prone are you using? 2.2.0 Does this issue reproduce with the latest release? 2.2.0 is the latest release What did you do? mvn clean compile An unhandled exception was thrown by the Error Prone static analysis plugin. Please report this at https://github.com/google...
gharchive/issue
2018-03-28T14:36:06
2025-04-01T06:38:50.234509
{ "authors": [ "ctcpip" ], "repo": "google/error-prone", "url": "https://github.com/google/error-prone/issues/980", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
547544943
MOE Sync 2020-01-09 This code has been reviewed and submitted internally. Feel free to discuss on the PR, and we can submit follow-up changes as necessary. Commits: Make visit methods more consistent follow-up to c6c372c06186d09a9011be9a2728deec591ff860 8de68069dabac5ca313e9ed5e5a76ad3b51f1313 MissingSummary: don'...
gharchive/pull-request
2020-01-09T15:22:10
2025-04-01T06:38:50.238138
{ "authors": [ "netdpb" ], "repo": "google/error-prone", "url": "https://github.com/google/error-prone/pull/1468", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2003424821
In every FHIR resources being copied from A to B, is it good enough to add capability to overwrite meta.source as such it tells where does the FHIR resource actually sourced from? Proposed scenario GIVEN a federated architecture setting of multiple FHIR Servers, assigned one of the FHIR servers as the "central", WHEN...
gharchive/issue
2023-11-21T04:15:58
2025-04-01T06:38:50.244760
{ "authors": [ "bashir2", "muhammad-levi" ], "repo": "google/fhir-data-pipes", "url": "https://github.com/google/fhir-data-pipes/issues/886", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
546018431
Request for headless swapChain support with Vulkan Is your feature request related to a problem? Please describe. I am building an app that is rendering a given scene from lots of different viewpoints. The rendered images are then passed back to the CPU and further used there. They are not displayed on-screen. My mai...
gharchive/issue
2020-01-07T00:59:01
2025-04-01T06:38:50.253132
{ "authors": [ "danlehmann", "prideout", "romainguy" ], "repo": "google/filament", "url": "https://github.com/google/filament/issues/2007", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
731783697
Weird artifacts when I upgraded from version 1.4.5 -> 1.9.4 When I did the following dependency upgrades implementation 'com.google.android.filament:filament-android:1.4.5' -> 1.9.4 implementation 'com.google.android.filament:filament-utils-android:1.4.5' -> 1.9.4 implementation 'com.google.android.filament:gltfio-an...
gharchive/issue
2020-10-28T20:54:39
2025-04-01T06:38:50.258344
{ "authors": [ "MarkMurillo", "romainguy" ], "repo": "google/filament", "url": "https://github.com/google/filament/issues/3228", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1254979523
GLX + GLFW: BadMatch with combination of shared context & native window handle Describe the bug When passing a GL context to share into Filament and a native window handle to createSwapChain(), I get a BadMatch error thrown by the X server in the call to glXMakeContextCurrent() in PlatformGLX::makeCurrent(). Interest...
gharchive/issue
2022-06-01T05:14:09
2025-04-01T06:38:50.266559
{ "authors": [ "jfaust", "romainguy" ], "repo": "google/filament", "url": "https://github.com/google/filament/issues/5617", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2120158101
rework how we size the HandleAllocator's pools update the pools sizes for metal and vulkan, which were very outdated. add debug code on all backends to print the size of each handle (with a compile time switch) The most important change is that now the 3 pools of HandleAllocator are sized so that each can accommod...
gharchive/pull-request
2024-02-06T07:45:20
2025-04-01T06:38:50.273264
{ "authors": [ "bejado", "pixelflinger" ], "repo": "google/filament", "url": "https://github.com/google/filament/pull/7557", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
440293871
Add default enterprise suffix when create an enterprise method (#958) Add more descriptions help users to utilize the method and default suffix format to prevent from the 406 status code. I'm LGTM on these changes, but is there a bug or GitHub API docs explaining the usage pattern of the api/v3/ pattern? Just want...
gharchive/pull-request
2019-05-04T07:13:24
2025-04-01T06:38:50.322001
{ "authors": [ "Daoq", "gmlewis" ], "repo": "google/go-github", "url": "https://github.com/google/go-github/pull/1165", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
80598338
Feature add get issue by url Several parts of the Github API expose hypermedia links to other API resources. Webhook payloads also make heavy use of URLs to link to to resources affected by the webhook's event. This PR refactors a few methods to allow consumers to fetch issues and their comments by URL (mainly becaus...
gharchive/pull-request
2015-05-25T16:57:41
2025-04-01T06:38:50.335612
{ "authors": [ "BRMatt", "willnorris" ], "repo": "google/go-github", "url": "https://github.com/google/go-github/pull/202", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
322014571
fix: use reject handler instead of catch for callbacks Plus a bonus sample fix. Resolves #1159 @ofrobots @alexander-fenster gentle ping why package-lock.json? Thanks! It was just picking up the version change.
gharchive/pull-request
2018-05-10T17:29:07
2025-04-01T06:38:50.337955
{ "authors": [ "JustinBeckwith", "alexander-fenster" ], "repo": "google/google-api-nodejs-client", "url": "https://github.com/google/google-api-nodejs-client/pull/1161", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1872580836
Delete deprecated mbtiles impl Towards #1715. @shobhitagarwal1612 PTAL? /gcbrun /gcbrun /gcbrun /gcbrun /gcbrun
gharchive/pull-request
2023-08-29T22:22:01
2025-04-01T06:38:50.345189
{ "authors": [ "gino-m" ], "repo": "google/ground-android", "url": "https://github.com/google/ground-android/pull/1818", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2278814743
Re-center the viewport when reverting the polygon's last vertex Fixes #2145 Things done: Expose a new method in map fragments to allow moving the map camera on a one-off basis Request moving the map camera to polygon's last known vertex center-prev-vertex.webm @gino-m @sufyanAbbasi PTAL? @sufyanAbbasi PTAL...
gharchive/pull-request
2024-05-04T07:32:02
2025-04-01T06:38:50.347902
{ "authors": [ "gino-m", "shobhitagarwal1612" ], "repo": "google/ground-android", "url": "https://github.com/google/ground-android/pull/2458", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2470958164
[Terms of service] Sign user out and show toast when ToS cannot be loaded To simplify error handling, this PR also stops loading ToS from remote before directing to the fragment; instead, we always direct to the fragment. An empty ToS will be shown if not found. Fixes #2657 @shobhitagarwal1612 @sufyanAbbasi @scolsen ...
gharchive/pull-request
2024-08-16T20:36:00
2025-04-01T06:38:50.349778
{ "authors": [ "gino-m" ], "repo": "google/ground-android", "url": "https://github.com/google/ground-android/pull/2661", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
215157759
Homebrew gflags has no libgflags.pc Building from master (c78689c5e020c0cd3580783213798b6323eaa454) on macOS gives me the following error: ==== Building guetzli (release) ==== Creating obj/Release butteraugli_comparator.cc Package libgflags was not found in the pkg-config search path. Perhaps you should add the direc...
gharchive/issue
2017-03-18T01:42:01
2025-04-01T06:38:50.363458
{ "authors": [ "donat-b", "msbit", "pornel", "robryk" ], "repo": "google/guetzli", "url": "https://github.com/google/guetzli/issues/61", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2175846443
Update docker documentation Updating the docker readme with some debugging guidance based on #61 LGMT, thanks a lot!
gharchive/pull-request
2024-03-08T11:21:17
2025-04-01T06:38:50.402240
{ "authors": [ "jkppr", "meeehow" ], "repo": "google/hashr", "url": "https://github.com/google/hashr/pull/63", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
504151405
Add SwiftShader support to the Vulkan HAL We can use SwiftShader as a software Vulkan ICD. At first, this will let us run tests and other CI on machines with no hardware Vulkan driver. Needs a bit more work to get working on Linux. I have some fixes, just need to make them flexible enough to merge.
gharchive/issue
2019-10-08T16:33:38
2025-04-01T06:38:50.403406
{ "authors": [ "ScottTodd" ], "repo": "google/iree", "url": "https://github.com/google/iree/issues/9", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
619900602
Updated validations.py python script. Updated validations.py python script. Fixed the behavior of validate_user function in validations.py. Closes: #1 Fixes #<issue_number_goes_here> It's a good idea to open an issue first for discussion. [ ] Tests pass [ ] Appropriate changes to README are included in PR @goog...
gharchive/pull-request
2020-05-18T04:33:55
2025-04-01T06:38:50.406792
{ "authors": [ "bobleha" ], "repo": "google/it-cert-automation-practice", "url": "https://github.com/google/it-cert-automation-practice/pull/2334", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
640203704
Closes: #1 Updated validations.py python scrip. Fixed the behavior of validate_user function in validations.py. The username can only start with a letter. Fixes #<issue_number_goes_here> It's a good idea to open an issue first for discussion. [ ] Tests pass [ ] Appropriate changes to README are included in PR @...
gharchive/pull-request
2020-06-17T07:21:14
2025-04-01T06:38:50.409581
{ "authors": [ "mdolak" ], "repo": "google/it-cert-automation-practice", "url": "https://github.com/google/it-cert-automation-practice/pull/3527", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2583107287
Regex fixed to match the first letter Closes: #1 Fixes #<issue_number_goes_here> It's a good idea to open an issue first for discussion. [ ] Tests pass [ ] Appropriate changes to README are included in PR CLA signed CLA done
gharchive/pull-request
2024-10-12T14:36:02
2025-04-01T06:38:50.411693
{ "authors": [ "DodoJota" ], "repo": "google/it-cert-automation-practice", "url": "https://github.com/google/it-cert-automation-practice/pull/35933", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
749839569
Introduce triplet function for three-body interactions and associated tests. Introduce a triplet function in smap (extension of pair) that enables functions that operate on three-body interactions (two displacements or distances) to operate on an entire system. Design decision: Flexibility of parameters sharing ens...
gharchive/pull-request
2020-11-24T16:02:44
2025-04-01T06:38:50.413959
{ "authors": [ "amilmerchant" ], "repo": "google/jax-md", "url": "https://github.com/google/jax-md/pull/108", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1686077630
Non-deterministic NaN in cho_factor Description The following code gives me NaNs about half the time, and a correct factorization the other half: import jax import jax.numpy as jnp mat = jax.random.normal(jax.random.PRNGKey(0), (4096, 4096)) mat = mat @ mat.T mat /= jnp.max(jnp.abs(mat)) cho, upper = jax....
gharchive/issue
2023-04-27T04:21:12
2025-04-01T06:38:50.425977
{ "authors": [ "davisyoshida", "hawkinsp" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/15769", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2401993027
Accidentally exponential-time analysis pass in compiler? Description JAX is unexpectedly slow to compile this simple recursive Fibonacci function. My understanding is that it should cache each JIT-compilation of fib with a fresh (static) t, so I would expect compilation to take linear time in t, even though at runtim...
gharchive/issue
2024-07-11T00:52:06
2025-04-01T06:38:50.439692
{ "authors": [ "hawkinsp", "jakevdp", "kach" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/22385", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
588555032
optix.adam produces NaNs with sloppy hyper-parameters I was doing something like this ... opt_init, opt_update = optix.adam(lr, b1=0) opt_state = opt_init(params) ... grads = jax.grad(loss)(params, data) updates, opt_state = opt_update(grads, opt_state) params = optix.apply_updates(params, updates) ... and I got NaN...
gharchive/issue
2020-03-26T16:30:57
2025-04-01T06:38:50.444542
{ "authors": [ "Hwhitetooth", "mtthss" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/2517", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
427350182
np.arange weirdness with jit. I found an issue related to jit compilation with np.arange when it is indexed dynamically. In particular, the code below produces the produces the following error. def fun(x): r = np.arange(x.shape[0])[x] return r jit(fun)(np.array([0, 1, 2], dtype=np.int32)) Thanks for raising t...
gharchive/issue
2019-03-31T02:32:43
2025-04-01T06:38:50.451353
{ "authors": [ "Justin-Tan", "mattjj", "sschoenholz" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/553", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2395331703
[Pallas TPU] Add lowering for lax.erf_inv 64 bit Add lowering for lax.erf_inv 64 bit. This is a follow-up of #22282 I don't think we test the lowering logic in x64 and at least on GPU there are known bugs with x64 support. So, I would maybe delay this until we have a concrete use-case. I am looking at the test fa...
gharchive/pull-request
2024-07-08T11:07:23
2025-04-01T06:38:50.454398
{ "authors": [ "ayaka14732", "superbobry" ], "repo": "google/jax", "url": "https://github.com/google/jax/pull/22310", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
709367643
(Fix #191) Add required go version to docs KO gives an error for the wrong go versions. The error is not very verbose.It is diffcult to decipher the logs of the error given. As a developer, adding a note to the installation process would prevent me from stumbling onto this issue. /cc @jonjohnsonjr @ImJasonH /assi...
gharchive/pull-request
2020-09-26T00:17:38
2025-04-01T06:38:50.458596
{ "authors": [ "popcor255" ], "repo": "google/ko", "url": "https://github.com/google/ko/pull/204", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
335604650
Insert size=small annotations for subset of tests [phab:D920] Created by djrenren at 2016-06-06 20:47:55: Bazel has optional test size annotations that describe resource usage and timeouts. We should probably use these (if only to get rid of that annoying warning when you run build). I've added some annotations so we...
gharchive/issue
2018-06-25T23:34:16
2025-04-01T06:38:50.468825
{ "authors": [ "kythe" ], "repo": "google/kythe", "url": "https://github.com/google/kythe/issues/1231", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2143293787
[NEW CONTENT TYPE REQUEST] GoldSrc Valve Map Format File What type of file would you like magika to detect? GoldSrc Valve Map Format file (.vmf) What software can create/open these files? Hammer version 3, in the Half-Life SDK, available on Steam under the "Tools" section. J.A.C.K. Sledge QuArK Where can these files ...
gharchive/issue
2024-02-19T23:43:25
2025-04-01T06:38:50.472720
{ "authors": [ "MichaelHinrichs", "reyammer" ], "repo": "google/magika", "url": "https://github.com/google/magika/issues/130", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
932133930
Use clang-12 for the docker and add easier option to make dev docker Exmaple usage: docker build --build-arg DOCKER_UID="$(id -u)" --build-arg DOCKER_USER=$USER -t maldoca_dev -f docker/Dockerfile . docker run -e USER="$(id -u)" -u="$(id -u)" -v $HOME/github/maldoca:/maldoca -v /tmp/build_output:/tmp/build_o...
gharchive/pull-request
2021-06-29T02:02:13
2025-04-01T06:38:50.477639
{ "authors": [ "b-maldoca", "dtao-oss" ], "repo": "google/maldoca", "url": "https://github.com/google/maldoca/pull/39", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
382584579
Input range CSS update Ask Question up vote I'm in trouble with my inputs. Both of the inputs are connected. When you click on the first one, the second inputs will move but the css will not update. Here is the fiddle to reproduce : https://jsfiddle.net/j7rqb96t/ Solution: https://jsfiddle.net/j7rqb96t/1/ use inst...
gharchive/issue
2018-11-20T10:00:06
2025-04-01T06:38:50.480027
{ "authors": [ "aburai", "vipera7" ], "repo": "google/material-design-lite", "url": "https://github.com/google/material-design-lite/issues/5250", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1073452751
Hotspot: button position is wrong in the HotspotAnnotation Description Situation: I have a hotspot and annotation-box as a child of this hotspot. In my annotation-box I want to place text, and a button. When I add a button to my annotation-box, the button appears not IN the annotation-box but in the top-left corner ...
gharchive/issue
2021-12-07T14:58:59
2025-04-01T06:38:50.487589
{ "authors": [ "elalish", "llllkatjallll" ], "repo": "google/model-viewer", "url": "https://github.com/google/model-viewer/issues/3034", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
70051833
「〜がわりに」と入力したとき「代わりに」の候補がない 耳栓がわりに(耳栓代わりに) 「がわりに」で「代わりに」が出ない この辺りに「がわり」の読みが必要? (品詞も要検討) かわり 1941 1941 4555 代わり かわり 1941 1941 6379 代り かわりに 1037 380 2873 代わりに かわりに 1037 380 5191 代りに 平仮名の「がわりに」という表記も必要。 がわり 1941 1941 6379 がわり がわりに 1037 380 2873 がわりに Original...
gharchive/issue
2015-04-22T07:53:24
2025-04-01T06:38:50.489195
{ "authors": [ "GoogleCodeExporter", "hiroyuki-komatsu" ], "repo": "google/mozc", "url": "https://github.com/google/mozc/issues/142", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
2100567050
neuroglancer default framebuffer size artificially limits resolution When taking screenshots it seems that in many cases neuroglancer in many cases downsamples the underlying data it has in doing its rendering. Currently I use a hacky workaround to solve this, which is 'zooming out' using the browser functionality i...
gharchive/issue
2024-01-25T14:54:25
2025-04-01T06:38:50.501652
{ "authors": [ "dyf", "fcollman", "jbms" ], "repo": "google/neuroglancer", "url": "https://github.com/google/neuroglancer/issues/520", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }