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
1748489481
runtime: avoid unnecessary sysmon preemptions sysmon preempts long running goroutines to allow scheduling other goroutines. Today this is done unconditionally. However, the scheduler guarantees work conservation. This means that if there is runnable work, we must start a P to run the work. From this, we can deduce the reverse: if there are idle Ps, then there must not be runnable work. sysmon could use this property to reduce its preemptions: only preempt if there are no idle Ps. This came up recently when investigating #55160, which is a bug in the scheduler causing it to lose work conservation. Unconditional sysmon preemptions masked the bug by inducing preemptions, which allows (most) programs to continue making forward progress with fewer Ps. If sysmon preempted only if there were no idle Ps, programs would hang in the presence of this bug, making it more apparent. @felixge proposed this earlier this year in https://go.dev/cl/460541. We held off due to two sources of work that break our work conservation guarantee: fractional GC workers, and the trace reader goroutine. Neither of these have a direct waker that does a wakeup when the work is runnable. Instead, they both depend on the scheduler eventually running and noticing the work. In light of new information about how this can be useful in uncovering scheduler bugs, I think we should reconsider addresses these cases. We could also introduce this change as a debug mode without addressing these; neither fractional GC workers nor the trace reader are required for general correctness. cc @mknyszek @aclements neither fractional GC workers nor the trace reader are required for general correctness. Small note: fractional GC workers are supposed to be required for GC progress, they just aren't because their scheduling is too loose and idle-time GC workers are the current backstop required for progress (if there's only a fractional worker).
gharchive/issue
2023-06-08T19:14:12
2025-04-01T06:44:20.974280
{ "authors": [ "mknyszek", "prattmic" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/60693", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
1755593290
runtime/trace: execution tracer overhaul Execution tracer overhaul Authored by mknyszek@google.com with a mountain of input from others. In no particular order, thank you to Felix Geisendorfer, Nick Ripley, Michael Pratt, Austin Clements, Rhys Hiltner, thepudds, Dominik Honnef, and Bryan Boreham for your invaluable feedback. Background Original design document. Go execution traces provide a moment-to-moment view of what happens in a Go program over some duration. This information is invaluable in understanding program behavior over time and can be leveraged to achieve significant performance improvements. Because Go has a runtime, it can provide deep information about program execution without any external dependencies, making traces particularly attractive for large deployments. Unfortunately limitations in the trace implementation prevent widespread use. For example, the process of analyzing execution traces scales poorly with the size of the trace. Traces need to be parsed in their entirety to do anything useful with them, making them impossible to stream. As a result, trace parsing and validation has very high memory requirements for large traces. Also, Go execution traces are designed to be internally consistent, but don't provide any way to align with other kinds of traces, for example OpenTelemetry traces and Linux sched traces. Alignment with higher level tracing mechanisms is critical to connecting business-level tasks with resource costs. Meanwhile alignment with lower level traces enables a fully vertical view of application performance to root out the most difficult and subtle issues. Lastly, the implementation of the execution tracer has evolved organically over time and it shows. The codebase also has many old warts and some age-old bugs that make collecting traces difficult, and seem broken. Furthermore, many significant decision decisions were made over the years but weren't thoroughly documented; those decisions largely exist solely in old commit messages and breadcrumbs left in comments within the codebase itself. Thanks to work in Go 1.21 cycle, the execution tracer's run-time overhead was reduced from about -10% throughput and +10% request latency in web services to about 1% in both for most applications. This reduced overhead in conjunction with making traces more scalable enables some exciting and powerful new opportunities for traces. Goals The goal of this document is to define an alternative implementation for Go execution traces that scales up to large Go deployments. Specifically, the design presented aims to achieve: Make trace parsing require a small fraction of the memory it requires today. Streamable traces, to enable analysis without storage. Partially self-describing traces, to reduce the upgrade burden on trace consumers. Fix age-old bugs and present a path to clean up the implementation. This document also describes the existing state of the tracer in detail and explains how we got there. Design Link to design document. CC @felixge @nsrip-dd @prattmic @aclements @rhysh @dominikh @bboreham @thepudds @mknyszek the Future work section of the proposal mentions the following: Each event has a single header word that includes the event type (8 bits), space for a 4-bit event reason, and the timestamp delta (20 bits). Note that every event requires a timestamp. At a granularity of 64 nanoseconds, this gives us a timestamp range of ~1 second, which is more than enough for most cases. In the case where we can‘t fit the delta in 24 bits [...] Does the timestamp delta have 20 bits or 24? At 20 bits and 64 ns resolution, it'd only be 67 ms, not 1s. Furthermore, I'm not convinced that 64 ns granularity is sufficient. In a trace produced by go test net/http I am seeing delta times as short as 1ns. For example, for a gcBgMarkWorker goroutine, I am seeing the sequence Runnable, Running, Waiting, Runnable, Running, with the following durations for each state: 6ns, 2ns, 4ns, 3ns, 45ns. That entire sequence of events would get squished down to the same timestamp at 64 ns resolution. Although I'm not quite sure how we transitioned from Running to Waiting in just 2ns. @dominikh Unfortunately that document is out of date; I plan to rewrite a good chunk of it in the new year. There are things I didn't get to, and things I didn't get to change. Timestamps are encoded the same way they were before, but the new timestamp resolution is indeed 64 ns. The parser will avoid equal timestamps by incrementing by 1 ns; it will do the same thing if timestamps are out-of-order. Increasing the resolution is easy, it's just one constant and changing it is backwards compatible. If you're finding that 64 ns is not good enough, we can change it.
gharchive/issue
2023-06-13T20:22:08
2025-04-01T06:44:20.984219
{ "authors": [ "dominikh", "mknyszek" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/60773", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
55408798
runtime: Invalid heap pointer on Windows 386 This is using go1.4.1 windows-386 fatal error: invalid heap pointer runtime stack: runtime.throw(0xb98de3) c:/go/src/runtime/panic.go:491 +0x83 fp=0x3144fd1c sp=0x3144fd04 scanblock(0xbadb80, 0x9240, 0x3122c608) c:/go/src/runtime/mgc0.c:378 +0x48d fp=0x3144fdbc sp=0x3144fd1c markroot(0x11214140, 0x1) c:/go/src/runtime/mgc0.c:496 +0x139 fp=0x3144fdf4 sp=0x3144fdbc runtime.parfordo(0x11214140) c:/go/src/runtime/parfor.c:91 +0x115 fp=0x3144fe50 sp=0x3144fdf4 gc(0x3144ff8c) c:/go/src/runtime/mgc0.c:1439 +0x1fb fp=0x3144ff7c sp=0x3144fe50 runtime.gc_m() c:/go/src/runtime/mgc0.c:1368 +0xd2 fp=0x3144ff9c sp=0x3144ff7c runtime.onM(0x11222500) c:/go/src/runtime/asm_386.s:266 +0x50 fp=0x3144ffa0 sp=0x3144ff9c runtime.mstart() c:/go/src/runtime/proc.c:818 fp=0x3144ffa4 sp=0x3144ffa0 goroutine 1 [garbage collection]: runtime.switchtoM() c:/go/src/runtime/asm_386.s:208 fp=0x112b6ab4 sp=0x112b6ab0 runtime.gogc(0x0) c:/go/src/runtime/malloc.go:469 +0x1aa fp=0x112b6ad4 sp=0x112b6ab4 runtime.mallocgc(0x477a000, 0x7a22c0, 0x1, 0x20) c:/go/src/runtime/malloc.go:341 +0x2c4 fp=0x112b6b2c sp=0x112b6ad4 runtime.newarray(0x7a22c0, 0x4779001, 0x0) c:/go/src/runtime/malloc.go:365 +0xb5 fp=0x112b6b4c sp=0x112b6b2c runtime.makeslice(0x798040, 0x46e7b9b, 0x0, 0x4779001, 0x0, 0x0, 0x0, 0x0) c:/go/src/runtime/slice.go:32 +0x165 fp=0x112b6b7c sp=0x112b6b4c github.com/syndtr/goleveldb/leveldb.(*Batch).grow(0x1216c040, 0xfb) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:64 +0x160 fp=0x112b6bcc sp=0x112b6b7c github.com/syndtr/goleveldb/leveldb.(*Batch).appendRec(0x1216c040, 0x0, 0x112ba380, 0xf5, 0x1c0, 0x0, 0x0, 0x0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:75 +0x49 fp=0x112b6c24 sp=0x112b6bcc github.com/syndtr/goleveldb/leveldb.(*Batch).Delete(0x1216c040, 0x112ba380, 0xf5, 0x1c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:103 +0x60 fp=0x112b6c48 sp=0x112b6c24 github.com/syncthing/syncthing/internal/db.func·002(0x31492400, 0x113e8180, 0x31492418, 0x1216c040, 0x112fe2a0, 0xc, 0x10, 0x1216c360, 0x20, 0x20, ...) C:/src/github.com/syncthing/syncthing/internal/db/leveldb.go:302 +0x3d2 fp=0x112b6d00 sp=0x112b6c48 github.com/syncthing/syncthing/internal/db.ldbGenericReplace(0x112e41c0, 0x112fe2a0, 0xc, 0x10, 0x1216c360, 0x20, 0x20, 0x0, 0x0, 0x0, ...) C:/src/github.com/syncthing/syncthing/internal/db/leveldb.go:273 +0x15af fp=0x112b6f70 sp=0x112b6d00 github.com/syncthing/syncthing/internal/db.ldbReplace(0x112e41c0, 0x112fe2a0, 0xc, 0x10, 0x1216c360, 0x20, 0x20, 0x0, 0x0, 0x0, ...) C:/src/github.com/syncthing/syncthing/internal/db/leveldb.go:304 +0x79 fp=0x112b6fa8 sp=0x112b6f70 github.com/syncthing/syncthing/internal/db.(*FileSet).Replace(0x121d4ea0, 0x3c932dfc, 0x8f4dbf21, 0x98d29632, 0xed6e823e, 0xa7f302e3, 0x3ee1f3fc, 0x3dea7048, 0xcca7077e, 0x0, ...) C:/src/github.com/syncthing/syncthing/internal/db/set.go:91 +0x2aa fp=0x112b7048 sp=0x112b6fa8 github.com/syncthing/syncthing/internal/model.(*Model).Index(0x123fa4d0, 0x3c932dfc, 0x8f4dbf21, 0x98d29632, 0xed6e823e, 0xa7f302e3, 0x3ee1f3fc, 0x3dea7048, 0xcca7077e, 0x1121b690, ...) C:/src/github.com/syncthing/syncthing/internal/model/model.go:499 +0x89b fp=0x112b7158 sp=0x112b7048 main.syncthingMain() C:/src/github.com/syncthing/syncthing/cmd/syncthing/main.go:525 +0x260d fp=0x112b7b74 sp=0x112b7158 main.main() C:/src/github.com/syncthing/syncthing/cmd/syncthing/main.go:365 +0x1bfb fp=0x112b7fcc sp=0x112b7b74 runtime.main() c:/go/src/runtime/proc.go:63 +0xcc fp=0x112b7ff0 sp=0x112b7fcc runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x112b7ff4 sp=0x112b7ff0 goroutine 2 [force gc (idle), 2 minutes]: runtime.gopark(0x44ede0, 0xbae8e0, 0x8bfa08, 0xf) c:/go/src/runtime/proc.go:130 +0xde fp=0x1122afcc sp=0x1122afb4 runtime.goparkunlock(0xbae8e0, 0x8bfa08, 0xf) c:/go/src/runtime/proc.go:136 +0x42 fp=0x1122afe0 sp=0x1122afcc runtime.forcegchelper() c:/go/src/runtime/proc.go:99 +0xa3 fp=0x1122aff0 sp=0x1122afe0 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1122aff4 sp=0x1122aff0 created by runtime.init·4 c:/go/src/runtime/proc.go:87 +0x25 goroutine 3 [GC sweep wait]: runtime.gopark(0x44ede0, 0xbb7520, 0x8b8f48, 0xd) c:/go/src/runtime/proc.go:130 +0xde fp=0x1122cfcc sp=0x1122cfb4 runtime.goparkunlock(0xbb7520, 0x8b8f48, 0xd) c:/go/src/runtime/proc.go:136 +0x42 fp=0x1122cfe0 sp=0x1122cfcc runtime.bgsweep() c:/go/src/runtime/mgc0.go:98 +0x97 fp=0x1122cff0 sp=0x1122cfe0 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1122cff4 sp=0x1122cff0 created by gc c:/go/src/runtime/mgc0.c:1383 goroutine 4 [finalizer wait, 2 minutes]: runtime.gopark(0x44ede0, 0xbb751c, 0x8bf4c8, 0xe) c:/go/src/runtime/proc.go:130 +0xde fp=0x11227f98 sp=0x11227f80 runtime.goparkunlock(0xbb751c, 0x8bf4c8, 0xe) c:/go/src/runtime/proc.go:136 +0x42 fp=0x11227fac sp=0x11227f98 runtime.runfinq() c:/go/src/runtime/malloc.go:727 +0x9c fp=0x11227ff0 sp=0x11227fac runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11227ff4 sp=0x11227ff0 created by runtime.createfing c:/go/src/runtime/malloc.go:707 +0x59 goroutine 5 [syscall, 2 minutes]: runtime.notetsleepg(0xbb9ca0, 0xffffffff, 0xffffffff, 0xbaf401) c:/go/src/runtime/lock_sema.go:266 +0x6f fp=0x1122dfb0 sp=0x1122df88 runtime.signal_recv(0x0) c:/go/src/runtime/sigqueue.go:109 +0x11f fp=0x1122dfd0 sp=0x1122dfb0 os/signal.loop() c:/go/src/os/signal/signal_unix.go:21 +0x21 fp=0x1122dff0 sp=0x1122dfd0 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1122dff4 sp=0x1122dff0 created by os/signal.init·1 c:/go/src/os/signal/signal_unix.go:27 +0x34 goroutine 9 [syscall]: runtime.notetsleepg(0xbaeafc, 0x373d33a8, 0x0, 0x0) c:/go/src/runtime/lock_sema.go:266 +0x6f fp=0x11253f90 sp=0x11253f68 runtime.timerproc() c:/go/src/runtime/time.go:207 +0xf6 fp=0x11253ff0 sp=0x11253f90 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11253ff4 sp=0x11253ff0 created by runtime.addtimerLocked c:/go/src/runtime/time.go:113 +0x185 goroutine 7 [select]: runtime.gopark(0x435ef0, 0x1122bf00, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x1122bd5c sp=0x1122bd44 runtime.selectgoImpl(0x1122bf00, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x1122be3c sp=0x1122bd5c runtime.selectgo(0x1122bf00) c:/go/src/runtime/select.go:183 +0xf fp=0x1122be4c sp=0x1122be3c github.com/syncthing/syncthing/internal/events.(*Subscription).Poll(0x1128aa00, 0xf8475800, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) C:/src/github.com/syncthing/syncthing/internal/events/events.go:179 +0x33f fp=0x1122bf54 sp=0x1122be4c github.com/syncthing/syncthing/internal/events.(*BufferedSubscription).pollingLoop(0x112186f0) C:/src/github.com/syncthing/syncthing/internal/events/events.go:215 +0x44 fp=0x1122bfe8 sp=0x1122bf54 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1122bfec sp=0x1122bfe8 created by github.com/syncthing/syncthing/internal/events.NewBufferedSubscription C:/src/github.com/syncthing/syncthing/internal/events/events.go:209 +0x175 goroutine 8 [chan receive]: runtime.gopark(0x44ede0, 0x112132f0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:130 +0xde fp=0x11226e68 sp=0x11226e50 runtime.goparkunlock(0x112132f0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:136 +0x42 fp=0x11226e7c sp=0x11226e68 runtime.chanrecv(0x798380, 0x112132c0, 0x11226fcc, 0xc0000001, 0xc0000000) c:/go/src/runtime/chan.go:467 +0x6fc fp=0x11226ed4 sp=0x11226e7c runtime.chanrecv2(0x798380, 0x112132c0, 0x11226fcc, 0xbaebc0) c:/go/src/runtime/chan.go:316 +0x24 fp=0x11226eec sp=0x11226ed4 main.trackCPUUsage() C:/src/github.com/syncthing/syncthing/cmd/syncthing/gui_windows.go:46 +0x45d fp=0x11226ff0 sp=0x11226eec runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11226ff4 sp=0x11226ff0 created by main.init·2 C:/src/github.com/syncthing/syncthing/cmd/syncthing/gui_windows.go:26 +0x25 goroutine 10 [chan receive, 2 minutes]: runtime.gopark(0x44ede0, 0x1125f7b0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:130 +0xde fp=0x11251c4c sp=0x11251c34 runtime.goparkunlock(0x1125f7b0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:136 +0x42 fp=0x11251c60 sp=0x11251c4c runtime.chanrecv(0x798780, 0x1125f780, 0x11251ef4, 0x1, 0x0) c:/go/src/runtime/chan.go:410 +0x3a2 fp=0x11251cb8 sp=0x11251c60 runtime.chanrecv2(0x798780, 0x1125f780, 0x11251ef4, 0x0) c:/go/src/runtime/chan.go:316 +0x24 fp=0x11251cd0 sp=0x11251cb8 github.com/syncthing/syncthing/internal/config.(*Wrapper).Serve(0x11211320) C:/src/github.com/syncthing/syncthing/internal/config/wrapper.go:88 +0x6a fp=0x11251fe8 sp=0x11251cd0 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11251fec sp=0x11251fe8 created by github.com/syncthing/syncthing/internal/config.Wrap C:/src/github.com/syncthing/syncthing/internal/config/wrapper.go:63 +0x10b goroutine 11 [select]: runtime.gopark(0x435ef0, 0x11250f94, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11250e64 sp=0x11250e4c runtime.selectgoImpl(0x11250f94, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11250f44 sp=0x11250e64 runtime.selectgo(0x11250f94) c:/go/src/runtime/select.go:183 +0xf fp=0x11250f54 sp=0x11250f44 github.com/syndtr/goleveldb/leveldb/util.(*BufferPool).drain(0x11296000) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go:205 +0x1c5 fp=0x11250fe8 sp=0x11250f54 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11250fec sp=0x11250fe8 created by github.com/syndtr/goleveldb/leveldb/util.NewBufferPool C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go:236 +0x1bb goroutine 12 [select, 2 minutes]: runtime.gopark(0x435ef0, 0x1124fe8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x1124fd60 sp=0x1124fd48 runtime.selectgoImpl(0x1124fe8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x1124fe40 sp=0x1124fd60 runtime.selectgo(0x1124fe8c) c:/go/src/runtime/select.go:183 +0xf fp=0x1124fe50 sp=0x1124fe40 github.com/syndtr/goleveldb/leveldb.(*DB).compactionError(0x112e41c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:120 +0x414 fp=0x1124ffe8 sp=0x1124fe50 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1124ffec sp=0x1124ffe8 created by github.com/syndtr/goleveldb/leveldb.openDB C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:126 +0x731 goroutine 13 [select]: runtime.gopark(0x435ef0, 0x11252f94, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11252e88 sp=0x11252e70 runtime.selectgoImpl(0x11252f94, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11252f68 sp=0x11252e88 runtime.selectgo(0x11252f94) c:/go/src/runtime/select.go:183 +0xf fp=0x11252f78 sp=0x11252f68 github.com/syndtr/goleveldb/leveldb.(*DB).mpoolDrain(0x112e41c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_state.go:73 +0x11d fp=0x11252fe8 sp=0x11252f78 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11252fec sp=0x11252fe8 created by github.com/syndtr/goleveldb/leveldb.openDB C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:127 +0x746 goroutine 14 [select, 2 minutes]: runtime.gopark(0x435ef0, 0x11228edc, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11228d28 sp=0x11228d10 runtime.selectgoImpl(0x11228edc, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11228e08 sp=0x11228d28 runtime.selectgo(0x11228edc) c:/go/src/runtime/select.go:183 +0xf fp=0x11228e18 sp=0x11228e08 github.com/syndtr/goleveldb/leveldb.(*DB).tCompaction(0x112e41c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:812 +0x68a fp=0x11228fe8 sp=0x11228e18 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11228fec sp=0x11228fe8 created by github.com/syndtr/goleveldb/leveldb.openDB C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:130 +0x780 goroutine 15 [select, 2 minutes]: runtime.gopark(0x435ef0, 0x11229f94, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11229e60 sp=0x11229e48 runtime.selectgoImpl(0x11229f94, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11229f40 sp=0x11229e60 runtime.selectgo(0x11229f94) c:/go/src/runtime/select.go:183 +0xf fp=0x11229f50 sp=0x11229f40 github.com/syndtr/goleveldb/leveldb.(*DB).mCompaction(0x112e41c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:759 +0x221 fp=0x11229fe8 sp=0x11229f50 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11229fec sp=0x11229fe8 created by github.com/syndtr/goleveldb/leveldb.openDB C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:131 +0x795 goroutine 16 [select, 2 minutes]: runtime.gopark(0x435ef0, 0x11b1df94, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b1de80 sp=0x11b1de68 runtime.selectgoImpl(0x11b1df94, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11b1df60 sp=0x11b1de80 runtime.selectgo(0x11b1df94) c:/go/src/runtime/select.go:183 +0xf fp=0x11b1df70 sp=0x11b1df60 github.com/syndtr/goleveldb/leveldb.(*DB).jWriter(0x112e41c0) C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_write.go:37 +0x153 fp=0x11b1dfe8 sp=0x11b1df70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b1dfec sp=0x11b1dfe8 created by github.com/syndtr/goleveldb/leveldb.openDB C:/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:132 +0x7aa goroutine 19 [select, 2 minutes]: runtime.gopark(0x435ef0, 0x11b1cf94, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b1ce10 sp=0x11b1cdf8 runtime.selectgoImpl(0x11b1cf94, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11b1cef0 sp=0x11b1ce10 runtime.selectgo(0x11b1cf94) c:/go/src/runtime/select.go:183 +0xf fp=0x11b1cf00 sp=0x11b1cef0 github.com/syncthing/syncthing/internal/model.(*ProgressEmitter).Serve(0x121d4e60) C:/src/github.com/syncthing/syncthing/internal/model/progressemitter.go:57 +0x6d8 fp=0x11b1cfe8 sp=0x11b1cf00 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b1cfec sp=0x11b1cfe8 created by github.com/syncthing/syncthing/internal/model.NewModel C:/src/github.com/syncthing/syncthing/internal/model/model.go:153 +0x617 goroutine 20 [sleep, 2 minutes]: runtime.gopark(0x44ede0, 0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:130 +0xde fp=0x1124cf8c sp=0x1124cf74 runtime.goparkunlock(0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:136 +0x42 fp=0x1124cfa0 sp=0x1124cf8c runtime.timeSleep(0xd964b800, 0x45) c:/go/src/runtime/time.go:58 +0xe9 fp=0x1124cfbc sp=0x1124cfa0 github.com/syncthing/syncthing/internal/model.func·024() C:/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x57 fp=0x1124cff0 sp=0x1124cfbc runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1124cff4 sp=0x1124cff0 created by github.com/syncthing/syncthing/internal/model.deadlockDetect C:/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0xb8 goroutine 21 [sleep, 2 minutes]: runtime.gopark(0x44ede0, 0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:130 +0xde fp=0x1124df8c sp=0x1124df74 runtime.goparkunlock(0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:136 +0x42 fp=0x1124dfa0 sp=0x1124df8c runtime.timeSleep(0xd964b800, 0x45) c:/go/src/runtime/time.go:58 +0xe9 fp=0x1124dfbc sp=0x1124dfa0 github.com/syncthing/syncthing/internal/model.func·024() C:/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x57 fp=0x1124dff0 sp=0x1124dfbc runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1124dff4 sp=0x1124dff0 created by github.com/syncthing/syncthing/internal/model.deadlockDetect C:/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0xb8 goroutine 22 [sleep, 2 minutes]: runtime.gopark(0x44ede0, 0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:130 +0xde fp=0x1124ef8c sp=0x1124ef74 runtime.goparkunlock(0xbaeaf0, 0x898f68, 0x5) c:/go/src/runtime/proc.go:136 +0x42 fp=0x1124efa0 sp=0x1124ef8c runtime.timeSleep(0xd964b800, 0x45) c:/go/src/runtime/time.go:58 +0xe9 fp=0x1124efbc sp=0x1124efa0 github.com/syncthing/syncthing/internal/model.func·024() C:/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x57 fp=0x1124eff0 sp=0x1124efbc runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x1124eff4 sp=0x1124eff0 created by github.com/syncthing/syncthing/internal/model.deadlockDetect C:/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0xb8 goroutine 39 [select, 1 minutes]: runtime.gopark(0x435ef0, 0x11b1bf8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b1be80 sp=0x11b1be68 runtime.selectgoImpl(0x11b1bf8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11b1bf60 sp=0x11b1be80 runtime.selectgo(0x11b1bf8c) c:/go/src/runtime/select.go:183 +0xf fp=0x11b1bf70 sp=0x11b1bf60 github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x12278330, 0x61714000, 0x68c) C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x192 fp=0x11b1bfe0 sp=0x11b1bf70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b1bfe4 sp=0x11b1bfe0 created by github.com/syncthing/syncthing/internal/ignore.New C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xb4 goroutine 40 [select]: runtime.gopark(0x435ef0, 0x11b17f8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b17e80 sp=0x11b17e68 runtime.selectgoImpl(0x11b17f8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11b17f60 sp=0x11b17e80 runtime.selectgo(0x11b17f8c) c:/go/src/runtime/select.go:183 +0xf fp=0x11b17f70 sp=0x11b17f60 github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x12061440, 0x61714000, 0x68c) C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x192 fp=0x11b17fe0 sp=0x11b17f70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b17fe4 sp=0x11b17fe0 created by github.com/syncthing/syncthing/internal/ignore.New C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xb4 goroutine 41 [select]: runtime.gopark(0x435ef0, 0x11b16f8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b16e80 sp=0x11b16e68 runtime.selectgoImpl(0x11b16f8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x11b16f60 sp=0x11b16e80 runtime.selectgo(0x11b16f8c) c:/go/src/runtime/select.go:183 +0xf fp=0x11b16f70 sp=0x11b16f60 github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x11c9f860, 0x61714000, 0x68c) C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x192 fp=0x11b16fe0 sp=0x11b16f70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b16fe4 sp=0x11b16fe0 created by github.com/syncthing/syncthing/internal/ignore.New C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xb4 goroutine 42 [select]: runtime.gopark(0x435ef0, 0x116d1f8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x116d1e80 sp=0x116d1e68 runtime.selectgoImpl(0x116d1f8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x116d1f60 sp=0x116d1e80 runtime.selectgo(0x116d1f8c) c:/go/src/runtime/select.go:183 +0xf fp=0x116d1f70 sp=0x116d1f60 github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x123264e0, 0x61714000, 0x68c) C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x192 fp=0x116d1fe0 sp=0x116d1f70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x116d1fe4 sp=0x116d1fe0 created by github.com/syncthing/syncthing/internal/ignore.New C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xb4 goroutine 43 [select]: runtime.gopark(0x435ef0, 0x116d0f8c, 0x898b98, 0x6) c:/go/src/runtime/proc.go:130 +0xde fp=0x116d0e80 sp=0x116d0e68 runtime.selectgoImpl(0x116d0f8c, 0x0, 0xc) c:/go/src/runtime/select.go:366 +0x9c1 fp=0x116d0f60 sp=0x116d0e80 runtime.selectgo(0x116d0f8c) c:/go/src/runtime/select.go:183 +0xf fp=0x116d0f70 sp=0x116d0f60 github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x121b4660, 0x61714000, 0x68c) C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x192 fp=0x116d0fe0 sp=0x116d0f70 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x116d0fe4 sp=0x116d0fe0 created by github.com/syncthing/syncthing/internal/ignore.New C:/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xb4 goroutine 44 [chan receive, locked to thread]: runtime.gopark(0x44ede0, 0x125289b0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:130 +0xde fp=0x116cff34 sp=0x116cff1c runtime.goparkunlock(0x125289b0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:136 +0x42 fp=0x116cff48 sp=0x116cff34 runtime.chanrecv(0x798980, 0x12528980, 0x116cffd4, 0x4c1701, 0x12250000) c:/go/src/runtime/chan.go:410 +0x3a2 fp=0x116cffa0 sp=0x116cff48 runtime.chanrecv2(0x798980, 0x12528980, 0x116cffd4, 0x1) c:/go/src/runtime/chan.go:316 +0x24 fp=0x116cffb8 sp=0x116cffa0 net.(*ioSrv).ProcessRemoteIO(0x11fee2a8) c:/go/src/net/fd_windows.go:144 +0x6d fp=0x116cffe8 sp=0x116cffb8 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x116cffec sp=0x116cffe8 created by net.startServer c:/go/src/net/fd_windows.go:244 +0xba goroutine 45 [chan receive, locked to thread]: runtime.gopark(0x44ede0, 0x12528df0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:130 +0xde fp=0x11b18f34 sp=0x11b18f1c runtime.goparkunlock(0x12528df0, 0x8bdaa8, 0xc) c:/go/src/runtime/proc.go:136 +0x42 fp=0x11b18f48 sp=0x11b18f34 runtime.chanrecv(0x798980, 0x12528dc0, 0x11b18fd4, 0x4c1601, 0x0) c:/go/src/runtime/chan.go:410 +0x3a2 fp=0x11b18fa0 sp=0x11b18f48 runtime.chanrecv2(0x798980, 0x12528dc0, 0x11b18fd4, 0x0) c:/go/src/runtime/chan.go:316 +0x24 fp=0x11b18fb8 sp=0x11b18fa0 net.(*ioSrv).ProcessRemoteIO(0x11fee2b0) c:/go/src/net/fd_windows.go:144 +0x6d fp=0x11b18fe8 sp=0x11b18fb8 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x11b18fec sp=0x11b18fe8 created by net.startServer c:/go/src/net/fd_windows.go:246 +0x109 goroutine 46 [IO wait]: runtime.gopark(0x431b20, 0x31491c04, 0x88e048, 0x7) c:/go/src/runtime/proc.go:130 +0xde fp=0x116cdd18 sp=0x116cdd00 runtime.netpollblock(0x31491bf0, 0x72, 0x0, 0x798601) c:/go/src/runtime/netpoll.go:347 +0x13f fp=0x116cdd38 sp=0x116cdd18 runtime.netpollWait(0x31491bf0, 0x72, 0x116cdd6c) c:/go/src/runtime/netpoll.go:150 +0x5c fp=0x116cdd4c sp=0x116cdd38 net.(*pollDesc).Wait(0x112e5e90, 0x72, 0x0, 0x0) c:/go/src/net/fd_poll_runtime.go:84 +0x42 fp=0x116cdd5c sp=0x116cdd4c net.(*ioSrv).ExecIO(0x11fee2a8, 0x112e5df8, 0x89d088, 0x8, 0x1122e5c8, 0x112e4540, 0x0, 0x0) c:/go/src/net/fd_windows.go:188 +0x265 fp=0x116cddd0 sp=0x116cdd5c net.(*netFD).acceptOne(0x112e5dc0, 0x112e42a0, 0x2, 0x2, 0x112e5df8, 0x0, 0x0, 0x0) c:/go/src/net/fd_windows.go:558 +0x3ee fp=0x116cde18 sp=0x116cddd0 net.(*netFD).accept(0x112e5dc0, 0x0, 0x0, 0x0) c:/go/src/net/fd_windows.go:585 +0x119 fp=0x116cde94 sp=0x116cde18 net.(*TCPListener).AcceptTCP(0x11fee2b8, 0x626d55ff, 0x0, 0x0) c:/go/src/net/tcpsock_posix.go:234 +0x48 fp=0x116cdebc sp=0x116cde94 net.(*TCPListener).Accept(0x11fee2b8, 0x0, 0x0, 0x0, 0x0) c:/go/src/net/tcpsock_posix.go:244 +0x48 fp=0x116cdedc sp=0x116cdebc main.(*DowngradingListener).Accept(0x112bdf30, 0x0, 0x0, 0x0, 0x0) C:/src/github.com/syncthing/syncthing/cmd/syncthing/tls.go:113 +0x61 fp=0x116cdf4c sp=0x116cdedc net/http.(*Server).Serve(0x1227ab80, 0x31492dc0, 0x112bdf30, 0x0, 0x0) c:/go/src/net/http/server.go:1728 +0x7b fp=0x116cdfc0 sp=0x116cdf4c main.func·001() C:/src/github.com/syncthing/syncthing/cmd/syncthing/gui.go:190 +0x58 fp=0x116cdff0 sp=0x116cdfc0 runtime.goexit() c:/go/src/runtime/asm_386.s:2287 +0x1 fp=0x116cdff4 sp=0x116cdff0 created by main.startGUI C:/src/github.com/syncthing/syncthing/cmd/syncthing/gui.go:194 +0x101c fatal error: invalid heap pointer runtime stack: runtime.throw(0xb98de3) c:/go/src/runtime/panic.go:491 +0x83 fp=0x6fc78 sp=0x6fc60 scanblock(0x116cdd18, 0x10, 0x95e3a8) c:/go/src/runtime/mgc0.c:378 +0x48d fp=0x6fd18 sp=0x6fc78 scanframe(0x6fda4, 0x0, 0x1) c:/go/src/runtime/mgc0.c:740 +0x186 fp=0x6fd54 sp=0x6fd18 runtime.gentraceback(0x434a2e, 0x116cdd00, 0x0, 0x112e0780, 0x0, 0x0, 0x7fffffff, 0x6fdfc, 0x0, 0x0, ...) c:/go/src/runtime/traceback.go:311 +0x5c5 fp=0x6fdd0 sp=0x6fd54 scanstack(0x112e0780) c:/go/src/runtime/mgc0.c:777 +0x1e0 fp=0x6fe08 sp=0x6fdd0 markroot(0x11214140, 0x30) c:/go/src/runtime/mgc0.c:553 +0xcd fp=0x6fe40 sp=0x6fe08 runtime.parfordo(0x11214140) c:/go/src/runtime/parfor.c:91 +0x115 fp=0x6fe9c sp=0x6fe40 runtime.gchelper() c:/go/src/runtime/mgc0.c:1185 +0x46 fp=0x6feb0 sp=0x6fe9c stopm() c:/go/src/runtime/proc.c:1181 +0x132 fp=0x6fec0 sp=0x6feb0 findrunnable(0x11222500) c:/go/src/runtime/proc.c:1487 +0x381 fp=0x6feec sp=0x6fec0 schedule() c:/go/src/runtime/proc.c:1575 +0x148 fp=0x6ff04 sp=0x6feec runtime.park_m(0x11224aa0) c:/go/src/runtime/proc.c:1654 +0x106 fp=0x6ff18 sp=0x6ff04 runtime.mcall(0x44d6b6) c:/go/src/runtime/asm_386.s:196 +0x47 fp=0x6ff20 sp=0x6ff18 It might be helpful to know: Does the exact same program run fine on a non-windows OS? Does the exact same program run fine on a windows amd64 OS? Is the program using CGO at all (I looked briefly and think the answer is no)? Please ask on golang-nuts how to debug this problem. It is normally a bug in the user code, for example, saving an integer in a pointer, esp. code that is using cgo. (one example that affects windows code particularly is that although HANDLE is a pointer type, windows actually stores integers into it and if you store HANDLE on Go stack or heap, it will trigger this error.) If you don't want to find the bug, you can temporarily disable the invalid pointer check by setting GODEBUG=invalidptr=0, however, as documented in Go 1.4 release note (http://golang.org/doc/go1.4#runtime), we don't guarantee that the invalid check can be disabled in future Go releases, so it is still recommended to fix such problems with Go 1.4. We had 4 reports on this, 3 out of 4 times it was Windows 32bit, the 4th was some storage device: https://github.com/syncthing/syncthing/issues/1280 but I don't have stack traces for Go 1.4.1. No CGO involved as far as I know. Is it obvious from the traces which routine the invalid pointer is found? The pointer is encountered during GC, so it's hard to say where does the invalid pointer come from. Normally the GC will also print one line of the form: runtime: garbage collector found invalid heap pointer *(addr+offset)=addr before the panic. That is important clue. I am closing this for now, will try to figure out where it happens in the code first, as it seems to be 100% reproducible on the machines in question. I have a hunch that it will most likely be caused by using syscall stuff. There seems to be some interleaving writes, but perhaps this one makes more sense? This is go 1.4.1 on arm linux. runtime: garbage collector found invalid heap pointer *(runtime: garbage collector found invalid heap pointer *(0x7c87d00x11316dbc++0x1f80x4)=)=0x30b210000x30a3140c s=nil s=nil fatal error: invalid heap pointer runtime stack: runtime.throw(0x7b3c8b) /usr/local/go/src/runtime/panic.go:491 +0xa4 fp=0x10ad7d24 sp=0x10ad7d0c scanblock(0x7c87d0, 0x5008, 0x30a0e5f0) /usr/local/go/src/runtime/mgc0.c:378 +0x31c fp=0x10ad7dc4 sp=0x10ad7d24 markroot(0x10a10000, 0x1) /usr/local/go/src/runtime/mgc0.c:496 +0x300 fp=0x10ad7e04 sp=0x10ad7dc4 runtime.parfordo(0x10a10000) /usr/local/go/src/runtime/parfor.c:91 +0x18c fp=0x10ad7e74 sp=0x10ad7e04 gc(0x10ad7fdc) /usr/local/go/src/runtime/mgc0.c:1439 +0x220 fp=0x10ad7fb0 sp=0x10ad7e74 runtime.gc_m() /usr/local/go/src/runtime/mgc0.c:1368 +0x10c fp=0x10ad7fe8 sp=0x10ad7fb0 runtime.onM(0x10a12000) /usr/local/go/src/runtime/asm_arm.s:256 +0x74 fp=0x10ad7fec sp=0x10ad7fe8 runtime.mstart() /usr/local/go/src/runtime/proc.c:818 fp=0x10ad7fec sp=0x10ad7fec goroutine 1 [garbage collection]: runtime.switchtoM() /usr/local/go/src/runtime/asm_arm.s:193 +0x4 fp=0x10ae4708 sp=0x10ae4704 runtime.gogc(0x0) /usr/local/go/src/runtime/malloc.go:469 +0x224 fp=0x10ae4728 sp=0x10ae4708 runtime.mallocgc(0x334a000, 0x416ae0, 0x1, 0x334964a) /usr/local/go/src/runtime/malloc.go:341 +0x3bc fp=0x10ae4780 sp=0x10ae4728 runtime.newarray(0x416ae0, 0x334964a, 0x32b782e) /usr/local/go/src/runtime/malloc.go:365 +0xec fp=0x10ae479c sp=0x10ae4780 runtime.makeslice(0x40dff8, 0x32b77ca, 0x0, 0x334964a, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/runtime/slice.go:32 +0x1fc fp=0x10ae47c0 sp=0x10ae479c github.com/syndtr/goleveldb/leveldb.(*Batch).grow(0x11730020, 0x64) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:64 +0x1bc fp=0x10ae4808 sp=0x10ae47c0 github.com/syndtr/goleveldb/leveldb.(*Batch).appendRec(0x11730020, 0x0, 0x10afe960, 0x5e, 0x5e, 0x0, 0x0, 0x0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:75 +0x64 fp=0x10ae4854 sp=0x10ae4808 github.com/syndtr/goleveldb/leveldb.(*Batch).Delete(0x11730020, 0x10afe960, 0x5e, 0x5e) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go:103 +0x58 fp=0x10ae4878 sp=0x10ae4854 github.com/syncthing/syncthing/internal/db.ldbRemoveFromGlobal(0x30a31b40, 0x11746210, 0x30a31b58, 0x11730020, 0x11928468, 0x7, 0x8, 0x117302a0, 0x20, 0x20, ...) /go/src/github.com/syncthing/syncthing/internal/db/leveldb.go:519 +0x698 fp=0x10ae49bc sp=0x10ae4878 github.com/syncthing/syncthing/internal/db.func·002(0x30a31b40, 0x11746210, 0x30a31b58, 0x11730020, 0x11928468, 0x7, 0x8, 0x117302a0, 0x20, 0x20, ...) /go/src/github.com/syncthing/syncthing/internal/db/leveldb.go:298 +0x254 fp=0x10ae4a80 sp=0x10ae49bc github.com/syncthing/syncthing/internal/db.ldbGenericReplace(0x10a3f0a0, 0x11928468, 0x7, 0x8, 0x117302a0, 0x20, 0x20, 0x0, 0x0, 0x0, ...) /go/src/github.com/syncthing/syncthing/internal/db/leveldb.go:255 +0x15e8 fp=0x10ae4d88 sp=0x10ae4a80 github.com/syncthing/syncthing/internal/db.ldbReplace(0x10a3f0a0, 0x11928468, 0x7, 0x8, 0x117302a0, 0x20, 0x20, 0x0, 0x0, 0x0, ...) /go/src/github.com/syncthing/syncthing/internal/db/leveldb.go:304 +0x7c fp=0x10ae4dc0 sp=0x10ae4d88 github.com/syncthing/syncthing/internal/db.(*FileSet).Replace(0x118ee980, 0x154dadfb, 0x6e27a980, 0xa01d2466, 0xc012cac4, 0x6147a5e0, 0xa5a03ab2, 0x6aa6bde8, 0x6592, 0x0, ...) /go/src/github.com/syncthing/syncthing/internal/db/set.go:91 +0x348 fp=0x10ae4e60 sp=0x10ae4dc0 github.com/syncthing/syncthing/internal/model.(*Model).Index(0x10ab4840, 0x154dadfb, 0x6e27a980, 0xa01d2466, 0xc012cac4, 0x6147a5e0, 0xa5a03ab2, 0x6aa6bde8, 0x6592, 0x10aaa810, ...) /go/src/github.com/syncthing/syncthing/internal/model/model.go:486 +0x8d0 fp=0x10ae4f88 sp=0x10ae4e60 main.syncthingMain() /go/src/github.com/syncthing/syncthing/cmd/syncthing/main.go:485 +0x27d8 fp=0x10ae5adc sp=0x10ae4f88 main.main() /go/src/github.com/syncthing/syncthing/cmd/syncthing/main.go:254 +0x1bc0 fp=0x10ae5fc0 sp=0x10ae5adc runtime.main() /usr/local/go/src/runtime/proc.go:63 +0x108 fp=0x10ae5fe4 sp=0x10ae5fc0 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10ae5fe4 sp=0x10ae5fe4 goroutine 2 [force gc (idle), 1 minutes]: runtime.gopark(0x6ce44, 0x7c92b8, 0x50f678, 0xf) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a187c8 sp=0x10a187b0 runtime.goparkunlock(0x7c92b8, 0x50f678, 0xf) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x10a187dc sp=0x10a187c8 runtime.forcegchelper() /usr/local/go/src/runtime/proc.go:99 +0xd0 fp=0x10a187ec sp=0x10a187dc runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a187ec sp=0x10a187ec created by runtime.init·4 /usr/local/go/src/runtime/proc.go:87 +0x34 goroutine 3 [GC sweep wait]: runtime.gopark(0x6ce44, 0x7cdf5c, 0x50ad10, 0xd) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a1bfc8 sp=0x10a1bfb0 runtime.goparkunlock(0x7cdf5c, 0x50ad10, 0xd) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x10a1bfdc sp=0x10a1bfc8 runtime.bgsweep() /usr/local/go/src/runtime/mgc0.go:98 +0xb8 fp=0x10a1bfec sp=0x10a1bfdc runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a1bfec sp=0x10a1bfec created by gc /usr/local/go/src/runtime/mgc0.c:1383 goroutine 4 [finalizer wait, 1 minutes]: runtime.gopark(0x6ce44, 0x7cdf58, 0x50f288, 0xe) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a16f94 sp=0x10a16f7c runtime.goparkunlock(0x7cdf58, 0x50f288, 0xe) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x10a16fa8 sp=0x10a16f94 runtime.runfinq() /usr/local/go/src/runtime/malloc.go:727 +0xac fp=0x10a16fec sp=0x10a16fa8 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a16fec sp=0x10a16fec created by runtime.createfing /usr/local/go/src/runtime/malloc.go:707 +0x6c goroutine 5 [syscall, 1 minutes]: runtime.notetsleepg(0x7d0128, 0xffffffff, 0xffffffff, 0x1) /usr/local/go/src/runtime/lock_futex.go:201 +0x58 fp=0x10a177ac sp=0x10a17794 runtime.signal_recv(0x0) /usr/local/go/src/runtime/sigqueue.go:109 +0x174 fp=0x10a177cc sp=0x10a177ac os/signal.loop() /usr/local/go/src/os/signal/signal_unix.go:21 +0x1c fp=0x10a177ec sp=0x10a177cc runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a177ec sp=0x10a177ec created by os/signal.init·1 /usr/local/go/src/os/signal/signal_unix.go:27 +0x40 goroutine 17 [syscall]: runtime.notetsleepg(0x7c94ac, 0x2c69d099, 0x0, 0x0) /usr/local/go/src/runtime/lock_futex.go:201 +0x58 fp=0x10a15f8c sp=0x10a15f74 runtime.timerproc() /usr/local/go/src/runtime/time.go:207 +0x144 fp=0x10a15fec sp=0x10a15f8c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a15fec sp=0x10a15fec created by runtime.addtimerLocked /usr/local/go/src/runtime/time.go:113 +0x230 goroutine 7 [select]: runtime.gopark(0x4dd08, 0x10a1b704, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a1b564 sp=0x10a1b54c runtime.selectgoImpl(0x10a1b704, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a1b63c sp=0x10a1b564 runtime.selectgo(0x10a1b704) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a1b64c sp=0x10a1b63c github.com/syncthing/syncthing/internal/events.(*Subscription).Poll(0x10a0b020, 0xf8475800, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /go/src/github.com/syncthing/syncthing/internal/events/events.go:179 +0x340 fp=0x10a1b754 sp=0x10a1b64c github.com/syncthing/syncthing/internal/events.(*BufferedSubscription).pollingLoop(0x10a36450) /go/src/github.com/syncthing/syncthing/internal/events/events.go:215 +0x40 fp=0x10a1b7e4 sp=0x10a1b754 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a1b7e4 sp=0x10a1b7e4 created by github.com/syncthing/syncthing/internal/events.NewBufferedSubscription /go/src/github.com/syncthing/syncthing/internal/events/events.go:209 +0x1f4 goroutine 8 [chan receive]: runtime.gopark(0x6ce44, 0x10a3a270, 0x50ded8, 0xc) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a16680 sp=0x10a16668 runtime.goparkunlock(0x10a3a270, 0x50ded8, 0xc) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x10a16694 sp=0x10a16680 runtime.chanrecv(0x40e298, 0x10a3a240, 0x10a167dc, 0x20000001, 0x10000) /usr/local/go/src/runtime/chan.go:467 +0x8b4 fp=0x10a166ec sp=0x10a16694 runtime.chanrecv2(0x40e298, 0x10a3a240, 0x10a167dc, 0x41cdcd53) /usr/local/go/src/runtime/chan.go:316 +0x30 fp=0x10a16704 sp=0x10a166ec main.trackCPUUsage() /go/src/github.com/syncthing/syncthing/cmd/syncthing/gui_unix.go:33 +0x120 fp=0x10a167ec sp=0x10a16704 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a167ec sp=0x10a167ec created by main.init·2 /go/src/github.com/syncthing/syncthing/cmd/syncthing/gui_unix.go:26 +0x34 goroutine 9 [chan receive, 1 minutes]: runtime.gopark(0x6ce44, 0x10a62a70, 0x50ded8, 0xc) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a14c48 sp=0x10a14c30 runtime.goparkunlock(0x10a62a70, 0x50ded8, 0xc) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x10a14c5c sp=0x10a14c48 runtime.chanrecv(0x40e598, 0x10a62a40, 0x10a14ef4, 0x1, 0x0) /usr/local/go/src/runtime/chan.go:410 +0x4c0 fp=0x10a14cb4 sp=0x10a14c5c runtime.chanrecv2(0x40e598, 0x10a62a40, 0x10a14ef4, 0x0) /usr/local/go/src/runtime/chan.go:316 +0x30 fp=0x10a14ccc sp=0x10a14cb4 github.com/syncthing/syncthing/internal/config.(*Wrapper).Serve(0x10a48d80) /go/src/github.com/syncthing/syncthing/internal/config/wrapper.go:88 +0x54 fp=0x10a14fe4 sp=0x10a14ccc runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a14fe4 sp=0x10a14fe4 created by github.com/syncthing/syncthing/internal/config.Wrap /go/src/github.com/syncthing/syncthing/internal/config/wrapper.go:63 +0x12c goroutine 10 [select]: runtime.gopark(0x4dd08, 0x10a15794, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a15668 sp=0x10a15650 runtime.selectgoImpl(0x10a15794, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a15740 sp=0x10a15668 runtime.selectgo(0x10a15794) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a15750 sp=0x10a15740 github.com/syndtr/goleveldb/leveldb/util.(*BufferPool).drain(0x10ab4420) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go:205 +0x1d4 fp=0x10a157e4 sp=0x10a15750 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a157e4 sp=0x10a157e4 created by github.com/syndtr/goleveldb/leveldb/util.NewBufferPool /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go:236 +0x23c goroutine 11 [select]: runtime.gopark(0x4dd08, 0x1131be8c, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x1131bd64 sp=0x1131bd4c runtime.selectgoImpl(0x1131be8c, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x1131be3c sp=0x1131bd64 runtime.selectgo(0x1131be8c) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x1131be4c sp=0x1131be3c github.com/syndtr/goleveldb/leveldb.(*DB).compactionError(0x10a3f0a0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:120 +0x3bc fp=0x1131bfe4 sp=0x1131be4c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x1131bfe4 sp=0x1131bfe4 created by github.com/syndtr/goleveldb/leveldb.openDB /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:122 +0x82c goroutine 12 [select]: runtime.gopark(0x4dd08, 0x10a14794, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a1468c sp=0x10a14674 runtime.selectgoImpl(0x10a14794, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a14764 sp=0x10a1468c runtime.selectgo(0x10a14794) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a14774 sp=0x10a14764 github.com/syndtr/goleveldb/leveldb.(*DB).mpoolDrain(0x10a3f0a0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_state.go:73 +0x124 fp=0x10a147e4 sp=0x10a14774 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a147e4 sp=0x10a147e4 created by github.com/syndtr/goleveldb/leveldb.openDB /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:122 +0x854 goroutine 13 [select]: runtime.gopark(0x4dd08, 0x10a17edc, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a17d24 sp=0x10a17d0c runtime.selectgoImpl(0x10a17edc, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a17dfc sp=0x10a17d24 runtime.selectgo(0x10a17edc) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a17e0c sp=0x10a17dfc github.com/syndtr/goleveldb/leveldb.(*DB).tCompaction(0x10a3f0a0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:812 +0x6a4 fp=0x10a17fe4 sp=0x10a17e0c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a17fe4 sp=0x10a17fe4 created by github.com/syndtr/goleveldb/leveldb.openDB /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:122 +0x8ac goroutine 14 [select, 1 minutes]: runtime.gopark(0x4dd08, 0x10a18f94, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a18e64 sp=0x10a18e4c runtime.selectgoImpl(0x10a18f94, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a18f3c sp=0x10a18e64 runtime.selectgo(0x10a18f94) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a18f4c sp=0x10a18f3c github.com/syndtr/goleveldb/leveldb.(*DB).mCompaction(0x10a3f0a0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go:759 +0x248 fp=0x10a18fe4 sp=0x10a18f4c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a18fe4 sp=0x10a18fe4 created by github.com/syndtr/goleveldb/leveldb.openDB /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:122 +0x8d4 goroutine 15 [select, 1 minutes]: runtime.gopark(0x4dd08, 0x10a19794, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x10a19684 sp=0x10a1966c runtime.selectgoImpl(0x10a19794, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x10a1975c sp=0x10a19684 runtime.selectgo(0x10a19794) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x10a1976c sp=0x10a1975c github.com/syndtr/goleveldb/leveldb.(*DB).jWriter(0x10a3f0a0) /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_write.go:37 +0x17c fp=0x10a197e4 sp=0x10a1976c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x10a197e4 sp=0x10a197e4 created by github.com/syndtr/goleveldb/leveldb.openDB /go/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go:122 +0x8fc goroutine 34 [select, 1 minutes]: runtime.gopark(0x4dd08, 0x1131a794, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x1131a5f0 sp=0x1131a5d8 runtime.selectgoImpl(0x1131a794, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x1131a6c8 sp=0x1131a5f0 runtime.selectgo(0x1131a794) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x1131a6d8 sp=0x1131a6c8 github.com/syncthing/syncthing/internal/model.(*ProgressEmitter).Serve(0x118ee960) /go/src/github.com/syncthing/syncthing/internal/model/progressemitter.go:57 +0x724 fp=0x1131a7e4 sp=0x1131a6d8 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x1131a7e4 sp=0x1131a7e4 created by github.com/syncthing/syncthing/internal/model.NewModel /go/src/github.com/syncthing/syncthing/internal/model/model.go:153 +0x66c goroutine 35 [sleep, 1 minutes]: runtime.gopark(0x6ce44, 0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x1131af88 sp=0x1131af70 runtime.goparkunlock(0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x1131af9c sp=0x1131af88 runtime.timeSleep(0xd964b800, 0x45) /usr/local/go/src/runtime/time.go:58 +0x12c fp=0x1131afb8 sp=0x1131af9c github.com/syncthing/syncthing/internal/model.func·024() /go/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x70 fp=0x1131afec sp=0x1131afb8 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x1131afec sp=0x1131afec created by github.com/syncthing/syncthing/internal/model.deadlockDetect /go/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0x100 goroutine 36 [sleep, 1 minutes]: runtime.gopark(0x6ce44, 0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x1131b788 sp=0x1131b770 runtime.goparkunlock(0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x1131b79c sp=0x1131b788 runtime.timeSleep(0xd964b800, 0x45) /usr/local/go/src/runtime/time.go:58 +0x12c fp=0x1131b7b8 sp=0x1131b79c github.com/syncthing/syncthing/internal/model.func·024() /go/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x70 fp=0x1131b7ec sp=0x1131b7b8 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x1131b7ec sp=0x1131b7ec created by github.com/syncthing/syncthing/internal/model.deadlockDetect /go/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0x100 goroutine 37 [sleep, 1 minutes]: runtime.gopark(0x6ce44, 0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x11319788 sp=0x11319770 runtime.goparkunlock(0x7c94a0, 0x4f32a8, 0x5) /usr/local/go/src/runtime/proc.go:136 +0x3c fp=0x1131979c sp=0x11319788 runtime.timeSleep(0xd964b800, 0x45) /usr/local/go/src/runtime/time.go:58 +0x12c fp=0x113197b8 sp=0x1131979c github.com/syncthing/syncthing/internal/model.func·024() /go/src/github.com/syncthing/syncthing/internal/model/util.go:26 +0x70 fp=0x113197ec sp=0x113197b8 runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x113197ec sp=0x113197ec created by github.com/syncthing/syncthing/internal/model.deadlockDetect /go/src/github.com/syncthing/syncthing/internal/model/util.go:44 +0x100 goroutine 38 [select]: runtime.gopark(0x4dd08, 0x1131778c, 0x4f2ec8, 0x6) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x11317684 sp=0x1131766c runtime.selectgoImpl(0x1131778c, 0x0, 0xc) /usr/local/go/src/runtime/select.go:569 +0x1218 fp=0x1131775c sp=0x11317684 runtime.selectgo(0x1131778c) /usr/local/go/src/runtime/select.go:183 +0x10 fp=0x1131776c sp=0x1131775c github.com/syncthing/syncthing/internal/ignore.(*Matcher).clean(0x11882ba0, 0x61714000, 0x68c) /go/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:162 +0x1cc fp=0x113177dc sp=0x1131776c runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x113177dc sp=0x113177dc created by github.com/syncthing/syncthing/internal/ignore.New /go/src/github.com/syncthing/syncthing/internal/ignore/ignore.go:62 +0xe0 goroutine 39 [IO wait]: runtime.gopark(0x48194, 0x30a3140c, 0x4e82a8, 0x7) /usr/local/go/src/runtime/proc.go:130 +0x124 fp=0x11316db8 sp=0x11316da0 runtime.netpollblock(0x30a313f8, 0x72, 0x41000, 0x11928074) /usr/local/go/src/runtime/netpoll.go:347 +0x1b8 fp=0x11316dd8 sp=0x11316db8 runtime.netpollWait(0x30a313f8, 0x72, 0x4) /usr/local/go/src/runtime/netpoll.go:150 +0x68 fp=0x11316dec sp=0x11316dd8 net.(*pollDesc).Wait(0x11a928f8, 0x72, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:84 +0x3c fp=0x11316dfc sp=0x11316dec net.(*pollDesc).WaitRead(0x11a928f8, 0x0, 0x0) /usr/local/go/src/net/fd_poll_runtime.go:89 +0x38 fp=0x11316e10 sp=0x11316dfc net.(*netFD).accept(0x11a928c0, 0x0, 0x30a13c58, 0x11928040) /usr/local/go/src/net/fd_unix.go:419 +0x390 fp=0x11316e90 sp=0x11316e10 net.(*TCPListener).AcceptTCP(0x1199a260, 0x0, 0x0, 0x0) /usr/local/go/src/net/tcpsock_posix.go:234 +0x50 fp=0x11316eb8 sp=0x11316e90 net.(*TCPListener).Accept(0x1199a260, 0x0, 0x0, 0x0, 0x0) /usr/local/go/src/net/tcpsock_posix.go:244 +0x3c fp=0x11316ed8 sp=0x11316eb8 main.(*DowngradingListener).Accept(0x10ae8620, 0x0, 0x0, 0x0, 0x0) /go/src/github.com/syncthing/syncthing/cmd/syncthing/tls.go:113 +0x64 fp=0x11316f48 sp=0x11316ed8 net/http.(*Server).Serve(0x11adc840, 0x30a31a38, 0x10ae8620, 0x0, 0x0) /usr/local/go/src/net/http/server.go:1728 +0x98 fp=0x11316fbc sp=0x11316f48 main.func·001() /go/src/github.com/syncthing/syncthing/cmd/syncthing/gui.go:190 +0x7c fp=0x11316fec sp=0x11316fbc runtime.goexit() /usr/local/go/src/runtime/asm_arm.s:1322 +0x4 fp=0x11316fec sp=0x11316fec created by main.startGUI /go/src/github.com/syncthing/syncthing/cmd/syncthing/gui.go:157 +0x140c fatal error: invalid heap pointer runtime stack: runtime.throw(0x7b3c8b) /usr/local/go/src/runtime/panic.go:491 +0xa4 fp=0x10adbce8 sp=0x10adbcd0 scanblock(0x11316dbc, 0x10, 0x58f638) /usr/local/go/src/runtime/mgc0.c:378 +0x31c fp=0x10adbd88 sp=0x10adbce8 scanframe(0x10adbe24, 0x0, 0x1) /usr/local/go/src/runtime/mgc0.c:740 +0x24c fp=0x10adbdc4 sp=0x10adbd88 runtime.gentraceback(0x4c20c, 0x11316da0, 0x0, 0x11a90320, 0x0, 0x0, 0x7fffffff, 0x10adbe7c, 0x0, 0x0, ...) /usr/local/go/src/runtime/traceback.go:311 +0x7e8 fp=0x10adbe4c sp=0x10adbdc4 scanstack(0x11a90320) /usr/local/go/src/runtime/mgc0.c:777 +0x188 fp=0x10adbe84 sp=0x10adbe4c markroot(0x10a10000, 0x1b) /usr/local/go/src/runtime/mgc0.c:553 +0x120 fp=0x10adbec4 sp=0x10adbe84 runtime.parfordo(0x10a10000) /usr/local/go/src/runtime/parfor.c:91 +0x18c fp=0x10adbf34 sp=0x10adbec4 runtime.gchelper() /usr/local/go/src/runtime/mgc0.c:1185 +0x38 fp=0x10adbf48 sp=0x10adbf34 stopm() /usr/local/go/src/runtime/proc.c:1181 +0xd4 fp=0x10adbf58 sp=0x10adbf48 findrunnable(0x10a12500) /usr/local/go/src/runtime/proc.c:1487 +0x504 fp=0x10adbf84 sp=0x10adbf58 schedule() /usr/local/go/src/runtime/proc.c:1575 +0x1fc fp=0x10adbfd0 sp=0x10adbf84 runtime.park_m(0x10a00d20) /usr/local/go/src/runtime/proc.c:1654 +0xbc fp=0x10adbfe4 sp=0x10adbfd0 runtime.mcall(0x10a12500) /usr/local/go/src/runtime/asm_arm.s:184 +0x5c fp=0x10adbfec sp=0x10adbfe4 @AudriusButkevicius, do you have self-contained code to repo this? Sadly not, as these are all reported in the issue tracker part of the project I am working on. Everyone experiencing this seem to have 100% reproducibility, so doing a simple binary search could pinpoint to the right location. I'll see if I can get someone to do that for me. I would make sure that values passed back from Windows, such as HANDLEs, are not treated as pointers by the Go code if they are actually not pointers and in fact small integers. This is typically what we have seen with traces like this. On Sun, Jan 25, 2015 at 1:09 PM, Audrius Butkevicius < notifications@github.com> wrote: Sadly not, as these are all reported in the issue tracker part of the project I am working on. Everyone experiencing this seem to have 100% reproducibility, so doing a simple binary search could pinpoint to the right location. I'll see if I can get someone to do that for me. — Reply to this email directly or view it on GitHub https://github.com/golang/go/issues/9682#issuecomment-71383921.
gharchive/issue
2015-01-25T10:20:10
2025-04-01T06:44:21.008002
{ "authors": [ "AudriusButkevicius", "RLH", "bradfitz", "minux", "slimsag" ], "repo": "golang/go", "url": "https://github.com/golang/go/issues/9682", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
433305247
add support for JSON fields https://github.com/taion/graphql-type-json Thanks @deweyjose - will look into this. I think I was able to address it in this branch https://github.com/goldcaddy77/warthog/tree/support_json_type Closing https://github.com/goldcaddy77/warthog/pull/86
gharchive/issue
2019-04-15T14:12:40
2025-04-01T06:44:21.015173
{ "authors": [ "deweyjose", "goldcaddy77" ], "repo": "goldcaddy77/warthog", "url": "https://github.com/goldcaddy77/warthog/issues/85", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
297577459
Winner How do you output which hand is a winner? If I get two hands that are both A-high, the description doesn't include the kicker. How do I know which won? You know which won with the winners method: https://github.com/goldfire/pokersolver#winnershands var Hand = require('./poker/pokersolver.js').Hand; var hand1 = Hand.solve(['6d', 'Jc', 'Tc', '2c', 'Ac', 'Ah', '3h']); var hand2 = Hand.solve(['6d', 'Jc', 'Tc', '2c', 'Ac', 'Ad', '4d']); var winner = Hand.winners([hand1,hand2]); console.log(winner.length); Who won? Hand 1? Hand 2? What about two Full Houses? If the winners array includes just one hand, how do you know which hand is in there? In the example you gave there is no winner because they both have the same hand. But, if there was a single winner, the winners array passes back the hand(s) that won, so you can compare by reference: hand1 === winner[0]. OK, thank you. A heads-up tie is winner.length = 2?
gharchive/issue
2018-02-15T19:59:42
2025-04-01T06:44:21.019094
{ "authors": [ "goldfire", "wrightben" ], "repo": "goldfire/pokersolver", "url": "https://github.com/goldfire/pokersolver/issues/13", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
55582954
improves the AllPages macro by adding links & paths Screenshot: Nice. I think there's basically no difference between the AllPages Macro and the GlobalTOC Macro now, except the latter renders the list in the TOC div? If so we should probably make the GlobalTOC a subclass of this Macro for massive refactoring. Ah I wasn't aware of the global toc macro. Your implementation looks better imo so I'll close this.
gharchive/pull-request
2015-01-27T06:58:01
2025-04-01T06:44:21.032005
{ "authors": [ "dometto", "simonzack" ], "repo": "gollum/gollum-lib", "url": "https://github.com/gollum/gollum-lib/pull/139", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1107476528
proposal: Better Modularization Background In this package i have only used the Binomial function and nothing else. If i import gonum using go modules i get the complete project which is quite big in my opinion Proposal This is inspired by the modularization move of aws-sdk-go-v2 which is also a big project in a single repo (Screenshot below) More info - https://aws.amazon.com/tr/blogs/developer/aws-sdk-for-go-version-2-general-availability/?nc1=h_ls Potential impact of proposal The people who just use a sub portion of this repo will only get those files/modules which they are actually using. This reduces the module size. For the use case i mentioned in the background, it would be great if i can just import the combin module and not anything else. From an effort perspective, this would involve creation of go.mod files within each logical module. For the above use, this would involve creation of a go.mod file within the combin directory. One thing i am not fully sure is on how this will affect the backwards compatibility, this is something that must be thought through. This would be a significant breaking change, it would also cause significantly more work for Gonum contributors when resolving issues since we would need to reconstruct complete states of modules from the reporter's context and also during development since there is a fair amount of cross communication between the packages within the repo. It's worth noting that the structure of the project was originally in a set of repositories and we merged them into the small set that we have now because of the complexity involved in the previous structure. to better understand your issue, what is exactly the problem at hand? is it the size of the underlying git clone to get a couple of Go files under stat/combin? is it the size/number of the dependencies you get when go get-ing the Gonum module? something else? AFAIU, both of the first issues will be solved with improvements of go mod tooling. Eventually, the first one will be solved by pulling a zip file holding the exact revision of a given module (sans the full git history). The second one will be adressed with dependencies trimming, that will ship with Go-1.18 (it's already there in some capacity with 1.17 IIRC). As Dan alluded to, the mechanics of synchronizing go.mod files in repos are a bit tedious. and rather than breaking things into smaller Go modules, I'd be sympathetic with lumping gonum/gonum and gonum/plot into a single Go module/repo. (but that's just me, I think). The alternative, if there is just one function that you are using, is to copy the file that provides that function and the LICENSE, and then you have the minimal representation of the functionality and the cost of no future automatic bug fixes. I'd be sympathetic with lumping gonum/gonum and gonum/plot into a single Go module/repo. (but that's just me, I think). This will be the resolution to v1 -> v2 if that ever happens. This will be the resolution to v1 -> v2 if that ever happens. you mean gonum.org/x/gonum@v0.1.0 ? :) (besides the obvious bikeshedding bait, it would also improve our compatibility with Go modules. I vaguely remember an issue with the /v1 in our module name at some point) Yeah, we made a decision before the landscape had settled. We were grandfathered in. What I was thinking was that if all the family end up in one repo, gonum.org/v2, then the pattern that exists now can continue.
gharchive/issue
2022-01-18T23:49:59
2025-04-01T06:44:21.052621
{ "authors": [ "kishaningithub", "kortschak", "sbinet" ], "repo": "gonum/gonum", "url": "https://github.com/gonum/gonum/issues/1763", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
236655093
all: cleanup spelling, ineffassign and vet errors This covers most of the errors found by goreport here. @btracey @vladimir-ch @sbinet Please take a look. I'll wait for @btracey and @sbinet as well. @sbinet ping There is code here that you wrote and I want to make sure I have the semantics correct.
gharchive/pull-request
2017-06-17T11:23:15
2025-04-01T06:44:21.054946
{ "authors": [ "kortschak" ], "repo": "gonum/gonum", "url": "https://github.com/gonum/gonum/pull/78", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
264858293
Configure run on raspberry zero very slow [dev] [mav@maverick-raspberry ~]$ maverick --env=flight configure Maverick - UAV Companion Computer System - Version 1.1.4-dev WARNING: Maverick is using branch:master, not stable Environment marker set but is being ignored as --env is set Maverick Environment: flight Proceeding to update system configuration - please be patient, this can take a while.. Notice: Compiled catalog for maverick-raspberry.home in environment flight in 202.44 seconds Notice: /Stage[bootstrap]/Maverick_puppet::Client/File[/etc/puppetlabs/puppet/puppet.conf]/content: content changed '{md5}fbf90f9cba2b685423d85b7c3a203032' to '{md5}44c2c2a1772d4a15d866f4378963bee4' Notice: /Stage[bootstrap]/Base::Maverick/File[/srv/maverick/data/config/maverick/maverick-environment.conf]/content: content changed '{md5}e77989ed21758e78331b20e477fc5582' to '{md5}e325b16aa10bc2b065742595902073cb' Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[libgstreamer-plugins-base1.0-dev]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gstreamer1.0-alsa]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gstreamer1.0-plugins-bad]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gstreamer1.0-plugins-ugly]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gir1.2-clutter-gst-2.0]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gstreamer1.0-omx]/ensure: created Notice: /Stage[main]/Maverick_vision::Gstreamer/Package[gstreamer1.0-plugins-good]/ensure: created Notice: /Stage[main]/Base::Console/File[/etc/profile.d/colorprompt.sh]/content: content changed '{md5}25f17f451f327f9c12c26008c99a7c9b' to '{md5}523311fcb7e90c3db8b064b040f59b09' Notice: /Stage[main]/Maverick_hardware::Raspberry/Package[iso-codes]/ensure: purged Notice: /Stage[main]/Maverick_fc/Maverick_ros::Mavros[fc]/Service_wrapper[maverick-mavros@fc]/Service[maverick-mavros@fc]/ensure: ensure changed 'stopped' to 'running' Notice: /Stage[main]/Maverick_dev::Sitl/Maverick_mavlink::Mavlink_router[sitl]/Service_wrapper[maverick-mavlink-router@sitl]/Service[maverick-mavlink-router@sitl]/ensure: ensure changed 'running' to 'stopped' Notice: /Stage[main]/Maverick_dev::Sitl/Service_wrapper[maverick-sitl]/Service[maverick-sitl]/ensure: ensure changed 'running' to 'stopped' Notice: /Stage[main]/Maverick_dev::Sitl/Service_wrapper[maverick-sitl]/Service[maverick-sitl]: Triggered 'refresh' from 1 event Notice: Applied catalog in 711.56 seconds Also a circular package remove/install (gstreamer, iso-codes). Puppet reports break down timings per type of resource: /var/lib/puppet/reports/maverick-raspberry.home On a raspberry pi3, a run as of 1.1.4-dev takes: Notice: Compiled catalog for maverick-raspberry.home in environment dev in 19.61 seconds Notice: Applied catalog in 37.29 seconds The longest running resources are: Package 7.464108296999999 Exec 5.265942897000001 Grafana dashboard 6.561745076 Service 1.9925102479999999 Some time hogging manifest resources: Exec[upgrade-pip]: title: upgrade-pip file: "/srv/maverick/software/maverick/manifests/maverick-modules/base/manifests/packages.pp" evaluation_time: 1.835495216 - Maverick_analysis::Grafana - Grafana_dashboard[ekf2_dashboard] evaluation_time: 1.154132671 - Maverick_analysis::Grafana - Grafana_dashboard[ekf3_dashboard] evaluation_time: 1.066297064 - Maverick_analysis::Influx - Exec[influx-key] evaluation_time: 0.706535516 Notice: Compiled catalog for maverick-raspberry.home in environment dev in 19.66 seconds Notice: Applied catalog in 35.84 seconds This is as good as a full run with all modules will get, for now. Reopening, very slow again Added profiler but lots of work to do, there's nothing inherently bad with the current manifests as per initial profiling. There is just a lot of puppet code involved. Will investigate for 2.0 Fixed ~/software/maverick/manifests/maverick-modules/base/files/puppet_analyse_report.py, shows nothing much that can be improved for raspberry configure run now.
gharchive/issue
2017-10-12T08:41:20
2025-04-01T06:44:21.093426
{ "authors": [ "fnoop" ], "repo": "goodrobots/maverick", "url": "https://github.com/goodrobots/maverick/issues/609", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
976199429
Android Basics: Navigation backstack URL of codelab [Navigation and the back stack] https://developer.android.com/codelabs/basic-android-kotlin-training-navigation-backstack?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-basics-kotlin-unit-3-pathway-4%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fbasic-android-kotlin-training-navigation-backstack#5 In which task and step of the codelab can this issue be found? 6. Solution code Describe the problem Remove white-spaces surrounding the new line symbol. You get extra white-spaces at the beginning and end of lines otherwise... Quantity: 12 cupcakes Flavor: Vanilla Pickup date: Tue Aug 24 Total: $24.00 Thank you! Steps to reproduce? SEND the order Versions _Android Studio version: 2021.3.1 _API version of the emulator: 30 Additional information Include screenshots if they would be useful in clarifying the problem.
gharchive/issue
2021-08-21T18:54:09
2025-04-01T06:44:21.115942
{ "authors": [ "linden-tree" ], "repo": "google-developer-training/android-basics-kotlin-cupcake-app", "url": "https://github.com/google-developer-training/android-basics-kotlin-cupcake-app/issues/32", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
676108713
No parameter 'num_iterations' for configurable 'LbpSampler' https://github.com/google-research/google-research/blob/39195a28fb30ecffc06f1d9d60200606dc10d1ed/grouptesting/configs/toy.gin#L105 Is it the max_iterations to be set instead? LbpSampler.max_iterations = 100 @googlebot I signed it!
gharchive/issue
2020-08-10T12:46:28
2025-04-01T06:44:21.117554
{ "authors": [ "alexbrebu13" ], "repo": "google-research/google-research", "url": "https://github.com/google-research/google-research/issues/350", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1300138265
Incorrect Information / Bad Data in Hindu Knowledge Dataset Readme File - https://github.com/google/BIG-bench/tree/main/bigbench/benchmark_tasks/hindu_knowledge In Hinduism, the Vaishya class corresponds mostly to which occupation? "target_scores": {"Teachers and priests": 0, "Warriors": 0, "Merchants": 1, "Artisans": 1}}, Two options are labeled as correct, although in the prev version of the file only Merchants had a 1. This should be fixed now. Thanks for catching this error!
gharchive/issue
2022-07-11T02:59:30
2025-04-01T06:44:21.119409
{ "authors": [ "Juwbasaurus", "Sohl-Dickstein" ], "repo": "google/BIG-bench", "url": "https://github.com/google/BIG-bench/issues/866", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
895608778
Do not run workflows on unrelated path changes This is to address #84 . I'm not yet sure if we should have a filter for gh action yml changes, investigating. I'm not yet sure if we should have a filter for gh action yml changes, investigating. If I'm right, the GHA directory is not ignored for triggering the software/build tests, which is what we'd want, so it's good.
gharchive/pull-request
2021-05-19T15:48:21
2025-04-01T06:44:21.120875
{ "authors": [ "PiotrZierhoffer", "tcal-x" ], "repo": "google/CFU-Playground", "url": "https://github.com/google/CFU-Playground/pull/88", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
244436371
[Bug] Exception on iOS 11.0 Simulator Xcode 9 beta 3, iPhone 6s Plus 11.0 [<GREYElementInteraction> performAction: <GREYTapAction>] is throwing an exception *** Assertion failure in -[UIViewAnimationState _transferAnimationToTrackingAnimator:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3688.4/UIView.m:829 To reproduce, clone develop of material-components/material-components-ios and run the tests. Moving on eventually times out: Full state tracker description: Waiting for viewDidAppear: call on the view controller. Please ensure that this view controller and its subclasses call through to their super's implementation. Waiting for CAAnimations to finish. Continuous animations may never finish and must be stopped explicitly. Animations attached to hidden view may still be running in the background. Waiting for UIView's draw/layout pass to complete. A draw/layout pass normally completes in the next runloop drain. Full state transition call stack for all elements: <UILabel:0x7fb046e36720> => Waiting for UIView's draw/layout pass to complete. A draw/layout pass normally completes in the next runloop drain. ( 0 EarlGrey 0x000000010c8f4107 __78-[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:]_block_invoke + 1319 1 EarlGrey 0x000000010c8f34a5 -[GREYAppStateTracker grey_performBlockInCriticalSection:] + 357 2 EarlGrey 0x000000010c8f3ab0 -[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:] + 704 3 EarlGrey 0x000000010c8f13cb -[GREYAppStateTracker trackState:forElement:] + 91 4 EarlGrey 0x000000010c897380 -[UIView(GREYAdditions) greyswizzled_setNeedsDisplay] + 112 5 UIKit 0x000000010ec7f69d -[UILabel setNeedsDisplay] + 55 6 UIKit 0x000000010ec79d6d -[UILabel setUserInteractionEnabled:] + 87 7 UIKit 0x000000010ec75165 -[UILabel _commonInit] + 469 8 UIKit 0x000000010ec75495 -[UILabel initWithFrame:] + 96 9 UIKit 0x000000010ea738ca -[UIView init] + 62 10 MDCCatalog 0x000000010c756883 _T0So7UILabelCABycfcTO + 19 11 MDCCatalog 0x000000010c752b0c _T0So7UILabelCABycfC + 60 12 MDCCatalog 0x000000010c770dd9 _T010MDCCatalog013NodeViewTableC8DemoCellCACSC07UITablecF5StyleO5style_SSSg15reuseIdentifiertcfc + 89 13 MDCCatalog 0x000000010c7716fa _T010MDCCatalog013NodeViewTableC8DemoCellCACSC07UITablecF5StyleO5style_SSSg15reuseIdentifiertcfcTo + 154 14 MDCCatalog 0x000000010c770d18 _T010MDCCatalog013NodeViewTableC8DemoCellCACSC07UITablecF5StyleO5style_SSSg15reuseIdentifiertcfC + 168 15 MDCCatalog 0x000000010c77843e _T010MDCCatalog25MDCNodeListViewControllerC05tableD0So07UITableD4CellCSo0gD0C_10Foundation9IndexPathV12cellForRowAttF + 430 16 MDCCatalog 0x000000010c77996c _T010MDCCatalog25MDCNodeListViewControllerC05tableD0So07UITableD4CellCSo0gD0C_10Foundation9IndexPathV12cellForRowAttFTo + 92 17 UIKit 0x000000010eb2ebeb -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 701 18 UIKit 0x000000010eb2f15f -[UITableView _createPreparedCellForGlobalRow:willDisplay:] + 74 19 UIKit 0x000000010eaf67d1 -[UITableView _updateVisibleCellsNow:isRecursive:] + 2928 20 UIKit 0x000000010eb0bd58 -[UITableView _visibleCellsUsingPresentationValues:] + 514 21 UIKit 0x0000000129f5efb2 -[UITableViewAccessibility isAccessibilityElement] + 83 22 PreferencesFramework 0x000000012c887b5f -[PreferencesTableViewAccessibility isAccessibilityElement] + 63 23 EarlGrey 0x000000010c888db5 -[NSObject(GREYAdditions) grey_description] + 421 24 EarlGrey 0x000000010c8a7355 +[GREYElementHierarchy grey_printDescriptionForElement:atLevel:] + 613 25 EarlGrey 0x000000010c8a6df9 __82+[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:]_block_invoke + 233 26 EarlGrey 0x000000010c9062ff -[GREYTraversalDFS enumerateUsingBlock:] + 591 27 EarlGrey 0x000000010c8a6bd5 +[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:] + 917 28 EarlGrey 0x000000010c8a6079 +[GREYElementHierarchy hierarchyStringForElement:] + 521 29 EarlGrey 0x000000010c8a6679 +[GREYElementHierarchy hierarchyStringForAllUIWindows] + 585 30 EarlGrey 0x000000010c8a7724 I_GREYErrorMake + 708 31 EarlGrey 0x000000010c900e75 -[GREYUIThreadExecutor executeSyncWithTimeout:block:error:] + 1989 32 EarlGrey 0x000000010c9002a3 -[GREYUIThreadExecutor drainUntilIdleWithTimeout:] + 355 33 EarlGrey 0x000000010c902b79 -[GREYUIThreadExecutor grey_forcedStateTrackerCleanUp] + 57 34 CoreFoundation 0x000000010dde314c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 35 CoreFoundation 0x000000010dde304a _CFXRegistrationPost + 442 36 CoreFoundation 0x000000010dde2d92 ___CFXNotificationPost_block_invoke + 50 37 CoreFoundation 0x000000010dda51f2 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1826 38 CoreFoundation 0x000000010dda436c _CFXNotificationPost + 652 39 Foundation 0x000000010d18cd02 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66 40 EarlGrey 0x000000010c89edc2 -[XCTestCase(GREYAdditions) grey_sendNotification:] + 210 41 EarlGrey 0x000000010c89ecc9 -[XCTestCase(GREYAdditions) grey_tearDown] + 121 42 XCTest 0x000000011ebae65a __51-[XCTestCase _performTearDownSequenceWithSelector:]_block_invoke + 44 43 XCTest 0x000000011ebae613 -[XCTestCase _performTearDownSequenceWithSelector:] + 97 44 XCTest 0x000000011ebad6e4 __24-[XCTestCase invokeTest]_block_invoke_2 + 754 45 XCTest 0x000000011ebf5367 -[XCUITestContext performInScope:] + 183 46 XCTest 0x000000011ebad3cd -[XCTestCase invokeTest] + 254 47 EarlGrey 0x000000010c89e6df -[XCTestCase(GREYAdditions) grey_invokeTest] + 1519 48 XCTest 0x000000011ebae2f9 __26-[XCTestCase performTest:]_block_invoke.362 + 42 49 XCTest 0x000000011ebf9d94 +[XCTContext runInContextForTestCase:block:] + 163 50 XCTest 0x000000011ebadc95 -[XCTestCase performTest:] + 608 51 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 52 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 53 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 54 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 55 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 56 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 57 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 58 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 59 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 60 XCTest 0x000000011ec00f48 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 40 61 XCTest 0x000000011ebbce38 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 475 62 XCTest 0x000000011ec00de7 -[XCTTestRunSession runTestsAndReturnError:] + 281 63 XCTest 0x000000011eb994e9 -[XCTestDriver runTestsAndReturnError:] + 254 64 XCTest 0x000000011ebf9019 _XCTestMain + 616 65 CoreFoundation 0x000000010ddea2fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12 66 CoreFoundation 0x000000010ddcea5b __CFRunLoopDoBlocks + 203 67 CoreFoundation 0x000000010ddce254 __CFRunLoopRun + 1060 68 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 69 GraphicsServices 0x0000000113db99e2 GSEventRunModal + 62 70 UIKit 0x000000010e9d9cb2 UIApplicationMain + 159 71 MDCCatalog 0x000000010c77f257 main + 55 72 libdyld.dylib 0x00000001128cbb95 start + 1 73 ??? 0x0000000000000005 0x0 + 5 ) <UIButton:0x7fb046e2b310> => Waiting for UIView's draw/layout pass to complete. A draw/layout pass normally completes in the next runloop drain. ( 0 EarlGrey 0x000000010c8f4107 __78-[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:]_block_invoke + 1319 1 EarlGrey 0x000000010c8f34a5 -[GREYAppStateTracker grey_performBlockInCriticalSection:] + 357 2 EarlGrey 0x000000010c8f3ab0 -[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:] + 704 3 EarlGrey 0x000000010c8f13cb -[GREYAppStateTracker trackState:forElement:] + 91 4 EarlGrey 0x000000010c897700 -[UIView(GREYAdditions) greyswizzled_setNeedsLayout] + 112 5 UIKit 0x000000010ee1a256 -[UIButton setNeedsLayout] + 49 6 UIKit 0x000000010ee1555b -[UIButton _setFrame:deferLayout:] + 151 7 UIKit 0x000000010ee1562d -[UIButton setFrame:] + 178 8 UIKit 0x000000010ef37485 -[UITableViewCellLayoutManager layoutSubviewsOfCell:] + 7065 9 UIKit 0x000000010ef70b2c -[UITableViewCellLayoutManagerSubtitle layoutSubviewsOfCell:] + 71 10 UIKit 0x000000010edefc9e -[UITableViewCell layoutSubviews] + 162 11 UIKit 0x000000010eaa678b -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1331 12 QuartzCore 0x00000001145ee4aa -[CALayer layoutSublayers] + 153 13 QuartzCore 0x00000001145f25d5 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 401 14 UIKit 0x000000010ea9117e -[UIView(Hierarchy) layoutBelowIfNeeded] + 662 15 UIKit 0x000000010ea87466 -[UIView(Geometry) setFrame:] + 781 16 EarlGrey 0x000000010c8968ba -[UIView(GREYAdditions) greyswizzled_setFrame:] + 314 17 UIKit 0x000000010edeeef7 -[UITableViewCell _setFrame:skipLayout:] + 212 18 UIKit 0x000000010eb1d11d __53-[UITableView _configureCellForDisplay:forIndexPath:]_block_invoke + 3302 19 UIKit 0x000000010ea982a0 +[UIView(Animation) performWithoutAnimation:] + 90 20 UIKit 0x000000010eb1c344 -[UITableView _configureCellForDisplay:forIndexPath:] + 262 21 UIKit 0x000000010eb2ecb8 -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 906 22 UIKit 0x000000010eb2f15f -[UITableView _createPreparedCellForGlobalRow:willDisplay:] + 74 23 UIKit 0x000000010eaf67d1 -[UITableView _updateVisibleCellsNow:isRecursive:] + 2928 24 UIKit 0x000000010eb0bd58 -[UITableView _visibleCellsUsingPresentationValues:] + 514 25 UIKit 0x0000000129f5efb2 -[UITableViewAccessibility isAccessibilityElement] + 83 26 PreferencesFramework 0x000000012c887b5f -[PreferencesTableViewAccessibility isAccessibilityElement] + 63 27 EarlGrey 0x000000010c888db5 -[NSObject(GREYAdditions) grey_description] + 421 28 EarlGrey 0x000000010c8a7355 +[GREYElementHierarchy grey_printDescriptionForElement:atLevel:] + 613 29 EarlGrey 0x000000010c8a6df9 __82+[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:]_block_invoke + 233 30 EarlGrey 0x000000010c9062ff -[GREYTraversalDFS enumerateUsingBlock:] + 591 31 EarlGrey 0x000000010c8a6bd5 +[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:] + 917 32 EarlGrey 0x000000010c8a6079 +[GREYElementHierarchy hierarchyStringForElement:] + 521 33 EarlGrey 0x000000010c8a6679 +[GREYElementHierarchy hierarchyStringForAllUIWindows] + 585 34 EarlGrey 0x000000010c8a7724 I_GREYErrorMake + 708 35 EarlGrey 0x000000010c900e75 -[GREYUIThreadExecutor executeSyncWithTimeout:block:error:] + 1989 36 EarlGrey 0x000000010c9002a3 -[GREYUIThreadExecutor drainUntilIdleWithTimeout:] + 355 37 EarlGrey 0x000000010c902b79 -[GREYUIThreadExecutor grey_forcedStateTrackerCleanUp] + 57 38 CoreFoundation 0x000000010dde314c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 39 CoreFoundation 0x000000010dde304a _CFXRegistrationPost + 442 40 CoreFoundation 0x000000010dde2d92 ___CFXNotificationPost_block_invoke + 50 41 CoreFoundation 0x000000010dda51f2 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1826 42 CoreFoundation 0x000000010dda436c _CFXNotificationPost + 652 43 Foundation 0x000000010d18cd02 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66 44 EarlGrey 0x000000010c89edc2 -[XCTestCase(GREYAdditions) grey_sendNotification:] + 210 45 EarlGrey 0x000000010c89ecc9 -[XCTestCase(GREYAdditions) grey_tearDown] + 121 46 XCTest 0x000000011ebae65a __51-[XCTestCase _performTearDownSequenceWithSelector:]_block_invoke + 44 47 XCTest 0x000000011ebae613 -[XCTestCase _performTearDownSequenceWithSelector:] + 97 48 XCTest 0x000000011ebad6e4 __24-[XCTestCase invokeTest]_block_invoke_2 + 754 49 XCTest 0x000000011ebf5367 -[XCUITestContext performInScope:] + 183 50 XCTest 0x000000011ebad3cd -[XCTestCase invokeTest] + 254 51 EarlGrey 0x000000010c89e6df -[XCTestCase(GREYAdditions) grey_invokeTest] + 1519 52 XCTest 0x000000011ebae2f9 __26-[XCTestCase performTest:]_block_invoke.362 + 42 53 XCTest 0x000000011ebf9d94 +[XCTContext runInContextForTestCase:block:] + 163 54 XCTest 0x000000011ebadc95 -[XCTestCase performTest:] + 608 55 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 56 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 57 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 58 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 59 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 60 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 61 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 62 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 63 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 64 XCTest 0x000000011ec00f48 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 40 65 XCTest 0x000000011ebbce38 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 475 66 XCTest 0x000000011ec00de7 -[XCTTestRunSession runTestsAndReturnError:] + 281 67 XCTest 0x000000011eb994e9 -[XCTestDriver runTestsAndReturnError:] + 254 68 XCTest 0x000000011ebf9019 _XCTestMain + 616 69 CoreFoundation 0x000000010ddea2fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12 70 CoreFoundation 0x000000010ddcea5b __CFRunLoopDoBlocks + 203 71 CoreFoundation 0x000000010ddce254 __CFRunLoopRun + 1060 72 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 73 GraphicsServices 0x0000000113db99e2 GSEventRunModal + 62 74 UIKit 0x000000010e9d9cb2 UIApplicationMain + 159 75 MDCCatalog 0x000000010c77f257 main + 55 76 libdyld.dylib 0x00000001128cbb95 start + 1 77 ??? 0x0000000000000005 0x0 + 5 ) <_UILabelLayer:0x60800009cb10> => Waiting for CAAnimations to finish. Continuous animations may never finish and must be stopped explicitly. Animations attached to hidden view may still be running in the background. Waiting for UIView's draw/layout pass to complete. A draw/layout pass normally completes in the next runloop drain. ( 0 EarlGrey 0x000000010c8f4107 __78-[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:]_block_invoke + 1319 1 EarlGrey 0x000000010c8f34a5 -[GREYAppStateTracker grey_performBlockInCriticalSection:] + 357 2 EarlGrey 0x000000010c8f3ab0 -[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:] + 704 3 EarlGrey 0x000000010c8f13cb -[GREYAppStateTracker trackState:forElement:] + 91 4 EarlGrey 0x000000010c884850 -[CALayer(GREYAdditions) greyswizzled_setNeedsLayout] + 112 5 QuartzCore 0x00000001145f0727 _ZN2CA5Layer19property_did_changeEPNS_11TransactionEj + 2837 6 QuartzCore 0x00000001145efbd6 _ZN2CA5Layer10end_changeEPNS_11TransactionEjP11objc_objectS4_ + 72 7 QuartzCore 0x00000001145f7520 _ZN2CA5Layer10set_boundsERKNS_4RectEb + 452 8 QuartzCore 0x00000001145e7c0e -[CALayer setBounds:] + 251 9 UIKit 0x000000010f07e457 __27-[_UILabelLayer setBounds:]_block_invoke + 80 10 UIKit 0x000000010f07e199 -[_UILabelLayer _setFrameOrBounds:settingAction:] + 23 11 UIKit 0x000000010f07e3f6 -[_UILabelLayer setBounds:] + 155 12 QuartzCore 0x00000001145e8361 -[CALayer setFrame:] + 630 13 UIKit 0x000000010f07e337 __26-[_UILabelLayer setFrame:]_block_invoke + 80 14 UIKit 0x000000010f07e199 -[_UILabelLayer _setFrameOrBounds:settingAction:] + 23 15 UIKit 0x000000010f07e2d6 -[_UILabelLayer setFrame:] + 155 16 UIKit 0x000000010ea872c9 -[UIView(Geometry) setFrame:] + 368 17 EarlGrey 0x000000010c8968ba -[UIView(GREYAdditions) greyswizzled_setFrame:] + 314 18 UIKit 0x000000010ec75b76 -[UILabel setFrame:] + 141 19 UIKit 0x000000010ef36c3f -[UITableViewCellLayoutManager layoutSubviewsOfCell:] + 4947 20 UIKit 0x000000010ef70b2c -[UITableViewCellLayoutManagerSubtitle layoutSubviewsOfCell:] + 71 21 UIKit 0x000000010edefc9e -[UITableViewCell layoutSubviews] + 162 22 UIKit 0x000000010eaa678b -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1331 23 QuartzCore 0x00000001145ee4aa -[CALayer layoutSublayers] + 153 24 QuartzCore 0x00000001145f25d5 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 401 25 UIKit 0x000000010ea9117e -[UIView(Hierarchy) layoutBelowIfNeeded] + 662 26 UIKit 0x000000010ea87466 -[UIView(Geometry) setFrame:] + 781 27 EarlGrey 0x000000010c8968ba -[UIView(GREYAdditions) greyswizzled_setFrame:] + 314 28 UIKit 0x000000010edeeef7 -[UITableViewCell _setFrame:skipLayout:] + 212 29 UIKit 0x000000010eb1d11d __53-[UITableView _configureCellForDisplay:forIndexPath:]_block_invoke + 3302 30 UIKit 0x000000010ea982a0 +[UIView(Animation) performWithoutAnimation:] + 90 31 UIKit 0x000000010eb1c344 -[UITableView _configureCellForDisplay:forIndexPath:] + 262 32 UIKit 0x000000010eb2ecb8 -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 906 33 UIKit 0x000000010eb2f15f -[UITableView _createPreparedCellForGlobalRow:willDisplay:] + 74 34 UIKit 0x000000010eaf67d1 -[UITableView _updateVisibleCellsNow:isRecursive:] + 2928 35 UIKit 0x000000010eb0bd58 -[UITableView _visibleCellsUsingPresentationValues:] + 514 36 UIKit 0x0000000129f5efb2 -[UITableViewAccessibility isAccessibilityElement] + 83 37 PreferencesFramework 0x000000012c887b5f -[PreferencesTableViewAccessibility isAccessibilityElement] + 63 38 EarlGrey 0x000000010c888db5 -[NSObject(GREYAdditions) grey_description] + 421 39 EarlGrey 0x000000010c8a7355 +[GREYElementHierarchy grey_printDescriptionForElement:atLevel:] + 613 40 EarlGrey 0x000000010c8a6df9 __82+[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:]_block_invoke + 233 41 EarlGrey 0x000000010c9062ff -[GREYTraversalDFS enumerateUsingBlock:] + 591 42 EarlGrey 0x000000010c8a6bd5 +[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:] + 917 43 EarlGrey 0x000000010c8a6079 +[GREYElementHierarchy hierarchyStringForElement:] + 521 44 EarlGrey 0x000000010c8a6679 +[GREYElementHierarchy hierarchyStringForAllUIWindows] + 585 45 EarlGrey 0x000000010c8a7724 I_GREYErrorMake + 708 46 EarlGrey 0x000000010c900e75 -[GREYUIThreadExecutor executeSyncWithTimeout:block:error:] + 1989 47 EarlGrey 0x000000010c9002a3 -[GREYUIThreadExecutor drainUntilIdleWithTimeout:] + 355 48 EarlGrey 0x000000010c902b79 -[GREYUIThreadExecutor grey_forcedStateTrackerCleanUp] + 57 49 CoreFoundation 0x000000010dde314c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 50 CoreFoundation 0x000000010dde304a _CFXRegistrationPost + 442 51 CoreFoundation 0x000000010dde2d92 ___CFXNotificationPost_block_invoke + 50 52 CoreFoundation 0x000000010dda51f2 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1826 53 CoreFoundation 0x000000010dda436c _CFXNotificationPost + 652 54 Foundation 0x000000010d18cd02 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66 55 EarlGrey 0x000000010c89edc2 -[XCTestCase(GREYAdditions) grey_sendNotification:] + 210 56 EarlGrey 0x000000010c89ecc9 -[XCTestCase(GREYAdditions) grey_tearDown] + 121 57 XCTest 0x000000011ebae65a __51-[XCTestCase _performTearDownSequenceWithSelector:]_block_invoke + 44 58 XCTest 0x000000011ebae613 -[XCTestCase _performTearDownSequenceWithSelector:] + 97 59 XCTest 0x000000011ebad6e4 __24-[XCTestCase invokeTest]_block_invoke_2 + 754 60 XCTest 0x000000011ebf5367 -[XCUITestContext performInScope:] + 183 61 XCTest 0x000000011ebad3cd -[XCTestCase invokeTest] + 254 62 EarlGrey 0x000000010c89e6df -[XCTestCase(GREYAdditions) grey_invokeTest] + 1519 63 XCTest 0x000000011ebae2f9 __26-[XCTestCase performTest:]_block_invoke.362 + 42 64 XCTest 0x000000011ebf9d94 +[XCTContext runInContextForTestCase:block:] + 163 65 XCTest 0x000000011ebadc95 -[XCTestCase performTest:] + 608 66 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 67 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 68 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 69 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 70 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 71 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 72 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 73 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 74 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 75 XCTest 0x000000011ec00f48 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 40 76 XCTest 0x000000011ebbce38 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 475 77 XCTest 0x000000011ec00de7 -[XCTTestRunSession runTestsAndReturnError:] + 281 78 XCTest 0x000000011eb994e9 -[XCTestDriver runTestsAndReturnError:] + 254 79 XCTest 0x000000011ebf9019 _XCTestMain + 616 80 CoreFoundation 0x000000010ddea2fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12 81 CoreFoundation 0x000000010ddcea5b __CFRunLoopDoBlocks + 203 82 CoreFoundation 0x000000010ddce254 __CFRunLoopRun + 1060 83 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 84 GraphicsServices 0x0000000113db99e2 GSEventRunModal + 62 85 UIKit 0x000000010e9d9cb2 UIApplicationMain + 159 86 MDCCatalog 0x000000010c77f257 main + 55 87 libdyld.dylib 0x00000001128cbb95 start + 1 88 ??? 0x0000000000000005 0x0 + 5 ) <UIView:0x7fb046e464c0> => Waiting for UIView's draw/layout pass to complete. A draw/layout pass normally completes in the next runloop drain. ( 0 EarlGrey 0x000000010c8f4107 __78-[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:]_block_invoke + 1319 1 EarlGrey 0x000000010c8f34a5 -[GREYAppStateTracker grey_performBlockInCriticalSection:] + 357 2 EarlGrey 0x000000010c8f3ab0 -[GREYAppStateTracker grey_changeState:forElement:orExternalElementID:toBusy:] + 704 3 EarlGrey 0x000000010c8f13cb -[GREYAppStateTracker trackState:forElement:] + 91 4 EarlGrey 0x000000010c897700 -[UIView(GREYAdditions) greyswizzled_setNeedsLayout] + 112 5 UIKit 0x000000010ec7c918 -[UILabel _setNeedsUpdateConstraintsNeedingLayout:] + 58 6 UIKit 0x000000010f4f7f20 -[UIView(AdditionalLayoutSupport) _invalidateIntrinsicContentSizeNeedingLayout:] + 157 7 UIKit 0x000000010ec7c8d8 -[UILabel _invalidateIntrinsicContentSizeNeedingLayout:] + 58 8 UIKit 0x000000010ea7bd0c -[UIView _traitCollectionDidChangeInternal:] + 126 9 UIKit 0x000000010ea7befd -[UIView _wrappedProcessTraitCollectionDidChange:forceNotification:] + 163 10 UIKit 0x000000010ea7bff9 -[UIView _wrappedProcessTraitCollectionDidChange:forceNotification:] + 415 11 UIKit 0x000000010f4f9dbb -[UIView(AdditionalLayoutSupport) _withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:] + 104 12 UIKit 0x000000010ea7c2b4 -[UIView _processDidChangeRecursivelyFromOldTraits:toCurrentTraits:forceNotification:] + 151 13 UIKit 0x000000010ea8fdfd __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 767 14 Foundation 0x000000010d1da041 -[NSISEngine withBehaviors:performModifications:] + 131 15 UIKit 0x000000010ea8fa97 -[UIView(Hierarchy) _postMovedFromSuperview:] + 855 16 UIKit 0x000000010eaa037d -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1927 17 UIKit 0x000000010eaf8646 -[UITableView _addSubview:positioned:relativeTo:] + 127 18 UIKit 0x000000010ead02a2 -[UIScrollView(UIScrollViewInternal) _addContentSubview:atBack:] + 192 19 UIKit 0x000000010eaf839c -[UITableView _addContentSubview:atBack:] + 257 20 UIKit 0x000000010eaf55b4 -[UITableView _updateVisibleHeadersAndFootersNow:] + 3306 21 UIKit 0x000000010eaf6c98 -[UITableView _updateVisibleCellsNow:isRecursive:] + 4151 22 UIKit 0x000000010eb0bd58 -[UITableView _visibleCellsUsingPresentationValues:] + 514 23 UIKit 0x0000000129f5efb2 -[UITableViewAccessibility isAccessibilityElement] + 83 24 PreferencesFramework 0x000000012c887b5f -[PreferencesTableViewAccessibility isAccessibilityElement] + 63 25 EarlGrey 0x000000010c888db5 -[NSObject(GREYAdditions) grey_description] + 421 26 EarlGrey 0x000000010c8a7355 +[GREYElementHierarchy grey_printDescriptionForElement:atLevel:] + 613 27 EarlGrey 0x000000010c8a6df9 __82+[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:]_block_invoke + 233 28 EarlGrey 0x000000010c9062ff -[GREYTraversalDFS enumerateUsingBlock:] + 591 29 EarlGrey 0x000000010c8a6bd5 +[GREYElementHierarchy grey_hierarchyString:outputString:andAnnotationDictionary:] + 917 30 EarlGrey 0x000000010c8a6079 +[GREYElementHierarchy hierarchyStringForElement:] + 521 31 EarlGrey 0x000000010c8a6679 +[GREYElementHierarchy hierarchyStringForAllUIWindows] + 585 32 EarlGrey 0x000000010c8a7724 I_GREYErrorMake + 708 33 EarlGrey 0x000000010c900e75 -[GREYUIThreadExecutor executeSyncWithTimeout:block:error:] + 1989 34 EarlGrey 0x000000010c9002a3 -[GREYUIThreadExecutor drainUntilIdleWithTimeout:] + 355 35 EarlGrey 0x000000010c902b79 -[GREYUIThreadExecutor grey_forcedStateTrackerCleanUp] + 57 36 CoreFoundation 0x000000010dde314c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + xxxx/material-components-ios/components/Collections/tests/earlgrey/MDCCollectionViewControllerTests.m:50: error: -[MDCCollectionViewControllerTests testEachSectionWidthLessThanSectionAbove] : failed: caught "NSInternalInconsistencyException", "Attempting to transfer an animation to an animation state that is not a direct child of the animation's animation state." ( 0 CoreFoundation 0x000000010de46c7b __exceptionPreprocess + 171 1 libobjc.A.dylib 0x000000010d7a9121 objc_exception_throw + 48 2 CoreFoundation 0x000000010de4bd32 +[NSException raise:format:arguments:] + 98 3 Foundation 0x000000010d24f84a -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 193 4 UIKit 0x000000010ea684c9 -[UIViewAnimationState _transferAnimationToTrackingAnimator:] + 661 5 UIKit 0x000000010f6f88bd __85+[UIViewPropertyAnimator _animationBlockForTrackingAnimation:animator:trackingSetup:]_block_invoke + 103 6 UIKit 0x000000010f6fa956 -[UIViewPropertyAnimator _runAnimations] + 222 7 UIKit 0x000000010f702ce0 __49-[UIViewPropertyAnimator startAnimationAsPaused:]_block_invoke_2 + 103 8 UIKit 0x000000010f702b18 __49-[UIViewPropertyAnimator startAnimationAsPaused:]_block_invoke + 146 9 UIKit 0x000000010f702c4f __49-[UIViewPropertyAnimator startAnimationAsPaused:]_block_invoke.1049 + 258 10 UIKit 0x000000010f702256 -[UIViewPropertyAnimator _setupAnimationTracking:] + 128 11 UIKit 0x000000010f7027e3 -[UIViewPropertyAnimator startAnimationAsPaused:] + 1129 12 UIKit 0x000000010f6f8ae9 +[UIViewPropertyAnimator _trackAnimationWithAnimator:forLayer:forAnimationKey:trackingSetup:] + 401 13 UIKit 0x000000010f6f8df6 +[UIViewPropertyAnimator _trackAdditiveAnimationWithAnimator:nonAdditiveAnimation:withAnimationKey:forKeyPath:forLayer:] + 249 14 UIKit 0x000000010ea67b3c __67-[_UIViewAdditiveAnimationAction runActionForKey:object:arguments:]_block_invoke.103 + 1255 15 UIKit 0x000000010ea6739e -[_UIViewAdditiveAnimationAction runActionForKey:object:arguments:] + 3326 16 QuartzCore 0x00000001145f7297 _ZN2CA5Layer12set_positionERKNS_4Vec2IdEEb + 309 17 QuartzCore 0x00000001145e7c7b -[CALayer setPosition:] + 43 18 QuartzCore 0x00000001145e8310 -[CALayer setFrame:] + 549 19 UIKit 0x000000010ea872c9 -[UIView(Geometry) setFrame:] + 368 20 EarlGrey 0x000000010c8968ba -[UIView(GREYAdditions) greyswizzled_setFrame:] + 314 21 UIKit 0x000000010e9c28da __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke.116 + 98 22 UIKit 0x000000010ea99c70 +[UIView(UIViewAnimationWithBlocks) _setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion:] + 560 23 UIKit 0x000000010ea9a14d +[UIView(UIViewAnimationWithBlocks) animateWithDuration:delay:options:animations:completion:] + 99 24 EarlGrey 0x000000010c89828b +[UIView(GREYAdditions) greyswizzled_animateWithDuration:delay:options:animations:completion:] + 171 25 UIKit 0x000000010e9c1201 -[_UINavigationParallaxTransition animateTransition:] + 2040 26 UIKit 0x000000010eba4829 -[UINavigationController _startCustomTransition:] + 3848 27 UIKit 0x000000010ebb8c0a -[UINavigationController _startDeferredTransitionIfNeeded:] + 691 28 UIKit 0x000000010ebb9f25 -[UINavigationController __viewWillLayoutSubviews] + 115 29 UIKit 0x000000010edfd541 -[UILayoutContainerView layoutSubviews] + 231 30 UIKit 0x0000000129fc75d7 -[UILayoutContainerViewAccessibility layoutSubviews] + 42 31 UIKit 0x000000010eaa678b -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1331 32 QuartzCore 0x00000001145ee4aa -[CALayer layoutSublayers] + 153 33 QuartzCore 0x00000001145f25d5 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 401 34 QuartzCore 0x000000011457b43d _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 385 35 QuartzCore 0x00000001145a6de4 _ZN2CA11Transaction6commitEv + 490 36 QuartzCore 0x00000001145a7af0 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 76 37 CoreFoundation 0x000000010dde9ea7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23 38 CoreFoundation 0x000000010dde9dfe __CFRunLoopDoObservers + 430 39 CoreFoundation 0x000000010ddce364 __CFRunLoopRun + 1332 40 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 41 EarlGrey 0x000000010c8fbfbd -[GREYRunLoopSpinner grey_drainRunLoopInActiveModeAndCheckCondition:forTime:] + 653 42 EarlGrey 0x000000010c8fb810 -[GREYRunLoopSpinner spinWithStopConditionBlock:] + 928 43 EarlGrey 0x000000010c8d65ab -[GREYTouchInjector waitUntilAllTouchesAreDeliveredUsingInjector] + 603 44 EarlGrey 0x000000010c8d56cd -[GREYSyntheticEvents grey_endTouchesAtPoints:timeElapsedSinceLastTouchDelivery:] + 221 45 EarlGrey 0x000000010c8d41af +[GREYSyntheticEvents touchAlongMultiplePaths:relativeToWindow:forDuration:expendable:] + 1359 46 EarlGrey 0x000000010c8d3bb5 +[GREYSyntheticEvents touchAlongPath:relativeToWindow:forDuration:expendable:] + 277 47 EarlGrey 0x000000010c87fb09 +[GREYTapper tapOnWindow:numberOfTaps:location:error:] + 489 48 EarlGrey 0x000000010c87f86b +[GREYTapper tapOnElement:numberOfTaps:location:error:] + 1147 49 EarlGrey 0x000000010c87e50c -[GREYTapAction perform:error:] + 428 50 EarlGrey 0x000000010c8c1ed3 __46-[GREYElementInteraction performAction:error:]_block_invoke + 1203 51 EarlGrey 0x000000010c9015a2 __59-[GREYUIThreadExecutor executeSyncWithTimeout:block:error:]_block_invoke + 82 52 EarlGrey 0x000000010c8fc545 __77-[GREYRunLoopSpinner grey_drainRunLoopInActiveModeAndCheckCondition:forTime:]_block_invoke + 485 53 EarlGrey 0x000000010c8fd582 __89-[GREYRunLoopSpinner grey_setupObserverInMode:withBeforeSourcesBlock:beforeWaitingBlock:]_block_invoke + 194 54 CoreFoundation 0x000000010dde9ea7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23 55 CoreFoundation 0x000000010dde9dfe __CFRunLoopDoObservers + 430 56 CoreFoundation 0x000000010ddce223 __CFRunLoopRun + 1011 57 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 58 EarlGrey 0x000000010c8fbfbd -[GREYRunLoopSpinner grey_drainRunLoopInActiveModeAndCheckCondition:forTime:] + 653 59 EarlGrey 0x000000010c8fb810 -[GREYRunLoopSpinner spinWithStopConditionBlock:] + 928 60 EarlGrey 0x000000010c900c52 -[GREYUIThreadExecutor executeSyncWithTimeout:block:error:] + 1442 61 EarlGrey 0x000000010c8c0ce3 -[GREYElementInteraction performAction:error:] + 2403 62 EarlGrey 0x000000010c8c02fc -[GREYElementInteraction performAction:] + 76 63 MaterialComponentsEarlGreyTests 0x000000012798d622 +[MDCCollectionViewControllerTests scrollToElementWithMatcher:inElementWithMatcher:direction:withStep:action:] + 722 64 MaterialComponentsEarlGreyTests 0x000000012798d8e2 +[MDCCollectionViewControllerTests scrollToElementWithIdentifier:inElementWithIdentifier:direction:withStep:tap:] + 610 65 MaterialComponentsEarlGreyTests 0x000000012798db63 +[MDCCollectionViewControllerTests jumpToExampleWithBreadcrumbs:] + 515 66 MaterialComponentsEarlGreyTests 0x000000012798edd1 -[MDCCollectionViewControllerTests testEachSectionWidthLessThanSectionAbove] + 161 67 CoreFoundation 0x000000010ddcb6ac __invoking___ + 140 68 CoreFoundation 0x000000010ddcb580 -[NSInvocation invoke] + 320 69 EarlGrey 0x000000010c8b48ee -[GREYTestCaseInvocation invoke] + 126 70 XCTest 0x000000011ebad5b5 __24-[XCTestCase invokeTest]_block_invoke_2 + 451 71 XCTest 0x000000011ebf5367 -[XCUITestContext performInScope:] + 183 72 XCTest 0x000000011ebad3cd -[XCTestCase invokeTest] + 254 73 EarlGrey 0x000000010c89e6df -[XCTestCase(GREYAdditions) grey_invokeTest] + 1519 74 XCTest 0x000000011ebae2f9 __26-[XCTestCase performTest:]_block_invoke.362 + 42 75 XCTest 0x000000011ebf9d94 +[XCTContext runInContextForTestCase:block:] + 163 76 XCTest 0x000000011ebadc95 -[XCTestCase performTest:] + 608 77 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 78 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 79 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 80 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 81 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 82 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 83 XCTest 0x000000011eba9e04 __27-[XCTestSuite performTest:]_block_invoke + 363 84 XCTest 0x000000011eba976b -[XCTestSuite _performProtectedSectionForTest:testSection:] + 26 85 XCTest 0x000000011eba9968 -[XCTestSuite performTest:] + 239 86 XCTest 0x000000011ec00f48 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 40 87 XCTest 0x000000011ebbce38 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 475 88 XCTest 0x000000011ec00de7 -[XCTTestRunSession runTestsAndReturnError:] + 281 89 XCTest 0x000000011eb994e9 -[XCTestDriver runTestsAndReturnError:] + 254 90 XCTest 0x000000011ebf9019 _XCTestMain + 616 91 CoreFoundation 0x000000010ddea2fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12 92 CoreFoundation 0x000000010ddcea5b __CFRunLoopDoBlocks + 203 93 CoreFoundation 0x000000010ddce254 __CFRunLoopRun + 1060 94 CoreFoundation 0x000000010ddcdbb9 CFRunLoopRunSpecific + 409 95 GraphicsServices 0x0000000113db99e2 GSEventRunModal + 62 96 UIKit 0x000000010e9d9cb2 UIApplicationMain + 159 97 MDCCatalog 0x000000010c77f257 main + 55 98 libdyld.dylib 0x00000001128cbb95 start + 1 99 ??? 0x0000000000000005 0x0 + 5 ) Test Case '-[MDCCollectionViewControllerTests testEachSectionWidthLessThanSectionAbove]' failed (269.897 seconds). @willlarche this seems similar to https://github.com/google/EarlGrey/issues/545. We have a fix in flight for this. Please do confirm if that is so. Yeah that def looks similar. This should be fixed by 1.11.0 release. https://github.com/google/EarlGrey/releases/tag/1.11.0 https://github.com/google/EarlGrey/pull/583 Closing this for now. @willlarche Do tell us if there might be any issues. Fixed.
gharchive/issue
2017-07-20T17:17:53
2025-04-01T06:44:21.135591
{ "authors": [ "khandpur", "tirodkar", "willlarche" ], "repo": "google/EarlGrey", "url": "https://github.com/google/EarlGrey/issues/582", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
184524313
add oct 2016 devtools digest I'll leave this open for a bit in case anyone on DevTools team wants to review... Don't think the DevTools team will be reviewing this. Updated per feedback I've already received. This is good to go unless there's any more feedback. Re: STOP YOUR FUCKY SPAM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 2016-10-21 12:46 GMT-04:00 Joe Medley notifications@github.com: @jpmedley requested changes on this pull request. In src/content/en/updates/2016/10/devtools-digest.md https://github.com/google/WebFundamentals/pull/3753#pullrequestreview-5289838 : +Multiple cursors. Hold Command (Mac) or +Control+Alt (Windows, Linux) and then click. + + + +## Canary now highlights non-top contexts red + +If you've worked in the Console lately, you might have been bitten by a +nasty little bug that was setting the execution context +selector to values +other than top. + +That bug should be fixed in Chrome 54, which is due to hit Stable any +day now. And, just to be safe, the DevTools in Canary (Chrome 56) now warns +you that you're not in the top context by highlighting the selector red. 54 is already rolling out. You might adjust your wording. — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/google/WebFundamentals/pull/3753#pullrequestreview-5289838, or mute the thread https://github.com/notifications/unsubscribe-auth/AAqo0hCH3qCzrAwRqZVKZC2UKwAOI0Aoks5q2OxzgaJpZM4KdZOl .
gharchive/pull-request
2016-10-21T16:12:36
2025-04-01T06:44:21.174234
{ "authors": [ "kaycebasques", "marccantin" ], "repo": "google/WebFundamentals", "url": "https://github.com/google/WebFundamentals/pull/3753", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
359488955
New HTTP 203 podcast Target Live Date: Whenever [ ] This has been reviewed and approved by (@PaulKinlan) [x] I have run npm test locally and all tests pass. [x] I have added the appropriate type-something label. [x] I've staged the site and manually verified that my content displays correctly. CC: @petele @PaulKinlan can you give this a quick review while Surma's on leave? Whoops! There were 1 warnings that will prevent this PR from being merged. Please take a look, and either fix, or provide a justification for why they can't be fixed. WARNINGS src/content/en/shows/http203/podcast/transform-transpile-urinal.md#L38 - Common typo found: 'stroage' Should it be 'storage'? :+1: @WebFundBot good bot :tada: This has been pushed live to https://developers.google.com/web/
gharchive/pull-request
2018-09-12T13:47:22
2025-04-01T06:44:21.179085
{ "authors": [ "WebFundBot", "jakearchibald" ], "repo": "google/WebFundamentals", "url": "https://github.com/google/WebFundamentals/pull/6615", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
806055429
workbox-window v6 updates R: @petele @philipwalton I noticed a few things in the workbox-window documentation that needed to be updated for v6 (as well as some typos to fix). Whoops! There were 17 warnings that will prevent this PR from being merged. Please take a look, and either fix, or provide a justification for why they can't be fixed. WARNINGS src/content/en/tools/workbox/modules/workbox-window.md#L40 - '
gharchive/pull-request
2021-02-11T03:47:49
2025-04-01T06:44:21.187337
{ "authors": [ "WebFundBot", "jeffposnick" ], "repo": "google/WebFundamentals", "url": "https://github.com/google/WebFundamentals/pull/9253", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
933563442
[Pager] Issues with Hilt enableAggregatingTask feature Describe the bug This is a compilation bug with Hilt version 2.37 and accompanist 1.12.0. In my app.gradle file I enabled hilt { enableAggregatingTask = true } To Reproduce Steps to reproduce the behavior: Use hilt version 2.37 Add accompanist "com.google.accompanist:accompanist-pager:0.12.0" Sync Gradle Try to launch the app Expected behavior Everything would build and the app would launch normally Screenshots? If applicable, add screenshots to help explain your problem. Environment: Android OS version: [Android 11.0] Device: [Emulator Google Pixel 5] Accompanist version: [0.12.0] Additional context Stacktrace: Execution failed for task ':app:hiltAggregateDepsDevDebug'. > Could not resolve all files for configuration ':app:hiltCompileOnlyDevDebug'. > Could not resolve io.github.aakira:napier:1.4.1. Required by: project :app > com.google.accompanist:accompanist-pager:0.12.0 > The consumer was configured to find attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug', attribute 'version' with value 'dev'. However we cannot choose between the following variants of io.github.aakira:napier:1.4.1: - commonMainMetadataElements-published - debugApiElements-published - debugRuntimeElements-published - iosArm64ApiElements-published - iosArm64MetadataElements-published - iosX64ApiElements-published - iosX64MetadataElements-published - jsApiElements-published - jsRuntimeElements-published - jvmApiElements-published - jvmRuntimeElements-published - metadataApiElements-published All of them match the consumer attributes: - Variant 'commonMainMetadataElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'common' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'debugApiElements-published' capability io.github.aakira:napier:1.4.1 declares attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides com.android.build.api.attributes.VariantAttr 'debug' but the consumer didn't ask for it - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'java-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'androidJvm' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'debugRuntimeElements-published' capability io.github.aakira:napier:1.4.1 declares attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug': - Unmatched attributes: - Provides com.android.build.api.attributes.VariantAttr 'debug' but the consumer didn't ask for it - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'java-runtime' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'androidJvm' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'iosArm64ApiElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Provides artifactType 'org.jetbrains.kotlin.klib' but the consumer didn't ask for it - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.native.target 'ios_arm64' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'native' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'iosArm64MetadataElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Provides artifactType 'org.jetbrains.kotlin.klib' but the consumer didn't ask for it - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-metadata' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.native.target 'ios_arm64' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'native' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'iosX64ApiElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Provides artifactType 'org.jetbrains.kotlin.klib' but the consumer didn't ask for it - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.native.target 'ios_x64' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'native' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'iosX64MetadataElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Provides artifactType 'org.jetbrains.kotlin.klib' but the consumer didn't ask for it - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-metadata' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.native.target 'ios_x64' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'native' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'jsApiElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.js.compiler 'legacy' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'js' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'jsRuntimeElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-runtime' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.js.compiler 'legacy' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'js' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'jvmApiElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.libraryelements 'jar' but the consumer didn't ask for it - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'java-api' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'jvm' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'jvmRuntimeElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.libraryelements 'jar' but the consumer didn't ask for it - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'java-runtime' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'jvm' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') - Variant 'metadataApiElements-published' capability io.github.aakira:napier:1.4.1: - Unmatched attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Provides org.gradle.status 'release' but the consumer didn't ask for it - Provides org.gradle.usage 'kotlin-metadata' but the consumer didn't ask for it - Provides org.jetbrains.kotlin.platform.type 'common' but the consumer didn't ask for it - Doesn't say anything about version (required 'dev') The following variants were also considered but didn't match the requested attributes: - Variant 'releaseApiElements-published' capability io.github.aakira:napier:1.4.1: - Incompatible because this component declares attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about version (required 'dev') - Variant 'releaseRuntimeElements-published' capability io.github.aakira:napier:1.4.1: - Incompatible because this component declares attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'release' and the consumer needed attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' - Other compatible attribute: - Doesn't say anything about version (required 'dev')` Looks like Hilt's plug-in doesn't support handling KMP dependencies. (Napier is KMP). Please raise a bug over on the Dagger tracker.
gharchive/issue
2021-06-30T10:52:48
2025-04-01T06:44:21.194608
{ "authors": [ "chrisbanes", "mariobat88" ], "repo": "google/accompanist", "url": "https://github.com/google/accompanist/issues/532", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2543577557
Punycode Deprecated Error, a Future Major Version of Node.js the Module Will Be Removed Expected Behavior Should not receive a punycode deprecation warning for running clasp push or other clasp commands that rely on punycode. Actual Behavior When running clasp push or other clasp commands that rely on punycode, the following deprecation error occurs: (node:79914) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to show where the warning was created) This issue can be resolved by using the userland-provided Punycode.js instead, per the Node.js v22.9.0 documentation. Steps to resolve the issue are detailed in the provided documentation. Steps to Reproduce the Problem Run clasp push or other clasp commands that rely on punycode Results in the following error: (node:79914) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to show where the warning was created) Specifications Node version (node -v): 22.9.0 Version (clasp -v): 2.4.2 OS (Mac/Linux/Windows): Mac As far as I can tell, this is due to gaxios, one of clasp's dependencies. Luckily, there's a pull request in the works and it looks like it could be merging soon! 🎉 https://github.com/googleapis/gaxios/pull/617 The pull request have been merged, but the deprecation error still persists. Am I missing something? @m3n94 I'm not positive what all needs to happen, but afaik we have to wait for that version of gaxios to get released (it's currently v6.7.1, and this change is going to be included in the upcoming v7.0.0). Then that change has to trickle through the various packages that clasp is dependent on (directly or indirectly). For those that understand npm and versioning better, please jump in and clarify where I may be off. @andyconlin I believe you are correct, PR #657 of gaxios does show that we are waiting for the v7.0.0 to release. I am not entirely aware of what is using gaxios in clasp. It could either be a clasp dependency or a nested dependency for something else in clasp's other dependencies. We would need those to also use v7.0.0 as well if it does include a fix for punycode's deprecation. However, are we confident v7.0.0 includes the punycode fix as issue #640 says it is closed as a not planned issue. I did a quick scan of the v7.0.0 release notes and saw no relevant references to it. The package.json also has no inclusion of the punycode package that is required to resolve this issue. Am I missing something? @mattjmoran It looks like clasp v2.4.2 doesn't have a direct dependency on gaxios, but the dependency is there via google-auth-library (possibly others). However, the current (unreleased/unversioned?) package.json for clasp does list gaxios as a dependency. Like you said, we might be waiting for gaxios v7.0.0 to trickle through updates on several other packages. Iirc, gaxios v7.0.0 fixes the punycode error because of something to do with dropping support for older versions of node where punycode was. It doesn't directly address punycode, but the fix is a side effect of other changes they made. ...I think This is all coming from my attempts to understand these systems, so I could be totally off 😆
gharchive/issue
2024-09-23T20:18:59
2025-04-01T06:44:21.243805
{ "authors": [ "andyconlin", "m3n94", "mattjmoran" ], "repo": "google/clasp", "url": "https://github.com/google/clasp/issues/1018", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
404857870
Incorrect display name of available "Advanced Service" APIs Expected Behavior When using clasp apis list, the displayed <api name> is what can be passed in clasp apis enable/disable <api name> Actual Behavior Services with names that have "-" (e.g. bigquery-json) or specialized "Advanced Services" bindings (AdminDirectory, AdminReports) are not properly reported by apis list: If attempting to then enable the API by displayed name, e.g. clasp apis enable bigquery, HTTP 403 "The caller does not have permission" is raised, and clasp then states: API bigquery doesn't exist. Try 'clasp apis enable sheets'. Steps to Reproduce the Problem clasp apis list shows admin twice (for AdminDirectory & AdminReports) shows bigquery clasp apis enable bigquery Receive large error trace re: HTTP 403, and message "API bigquery doesn't exist. Try 'clasp apis enable sheets'." Specifications Node version (node -v): 8.11.2 Version (clasp -v): 2.0.1 OS (Mac/Linux/Windows): Win 10 Would all of those still require that the API is already included in the PUBLIC_ADVANCED_SERVICES list? If not, how would we determine the user symbol? If so, then it would be easier to just add the service ID to that struct rather than have the developer type it in.
gharchive/issue
2019-01-30T16:36:56
2025-04-01T06:44:21.249558
{ "authors": [ "erickoledadevrel", "tehhowch" ], "repo": "google/clasp", "url": "https://github.com/google/clasp/issues/512", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
131946405
How to run polyfill tests I'll send PR to improve ES6 polyfill but I don't know how to run the tests. Please add the docs and run them in the CI process by default. @ChadKillingsworth Might be interested? @teppeis The polyfills are tested internally, so please feel free to submit your PR. We might add a way to test it externally and integrate it with the Travis CI. @Dominator008 ok, thanks! I wish I could run these tests in my local...
gharchive/issue
2016-02-07T07:32:08
2025-04-01T06:44:21.254261
{ "authors": [ "Dominator008", "teppeis" ], "repo": "google/closure-compiler", "url": "https://github.com/google/closure-compiler/issues/1504", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
625865923
Compiler crash using new.target with --language_out ECMASCRIPT_2019 Tested with Closure Compiler v20200517 Command: java -jar closure-compiler.jar --js in.js --js_output_file out.js --language_out ECMASCRIPT_2019 in.js: window.Class = class { constructor() { let newTarget = new.target; return Object.create(newTarget.prototype); } }; This crashes with IllegalStateException (full stack omitted for brevity): java.lang.IllegalStateException: Unexpected expression node: NEW_TARGET 4 [length: 10] [source_file: in.js] parent:NAME newTarget 4 [length: 22] [source_file: in.js] [constant_var_flags: 2] at com.google.javascript.jscomp.NodeUtil.evaluatesToLocalValue(NodeUtil.java:4754) at com.google.javascript.jscomp.RemoveUnusedCode$NameDeclarationStatement.isAssignedValueLocal(RemoveUnusedCode.java:2384) at com.google.javascript.jscomp.RemoveUnusedCode$VarInfo.addRemovable(RemoveUnusedCode.java:2670) at com.google.javascript.jscomp.RemoveUnusedCode.traverseDeclarationStatement(RemoveUnusedCode.java:1038) Another seemingly related case is the following: window.Class = class { constructor() { return new.target; } }; This crashes too but only in ADVANCED compilation mode. Full command line: java -jar closure-compiler.jar --js in.js --js_output_file out.js --language_out ECMASCRIPT_2019 --compilation_level ADVANCED This crashes with INTERNAL COMPILER ERROR (full stack omitted for brevity): in.js:4: WARNING - [JSC_TYPE_MISMATCH] inconsistent return type found : Function required: window.Class return new.target; ^^^^^^^^^^ 0 error(s), 1 warning(s), 100.0% typed java.lang.RuntimeException: INTERNAL COMPILER ERROR. Please report this problem. Unexpected expression node: NEW_TARGET 4 [length: 10] [source_file: in.js] : Function parent:RETURN 4 [length: 18] [source_file: in.js] Node(RETURN): in.js:4:2 return new.target; Parent(BLOCK): in.js:3:1 { at com.google.javascript.jscomp.NodeUtil.evaluatesToLocalValue(NodeUtil.java:4754) at com.google.javascript.jscomp.PureFunctionIdentifier$FunctionBodyAnalyzer.updateSideEffectsForNode(PureFunctionIdentifier.java:829) at com.google.javascript.jscomp.PureFunctionIdentifier$FunctionBodyAnalyzer.visit(PureFunctionIdentifier.java:709) at com.google.javascript.jscomp.NodeTraversal.traverseBranch(NodeTraversal.java:909) The fix for this should be trivial, I put together a change
gharchive/issue
2020-05-27T16:58:12
2025-04-01T06:44:21.257904
{ "authors": [ "AshleyScirra", "concavelenz" ], "repo": "google/closure-compiler", "url": "https://github.com/google/closure-compiler/issues/3607", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2171295290
Piping Closure compiler stderr output to Python with Unicode characters on Windows problem STR: a.py import subprocess subprocess.run(['npx', 'google-closure-compiler','--charset=UTF8','--js','a.js','--js_output_file','o.js'], encoding='utf-8', stderr=subprocess.PIPE, shell=True) a.js if (4 == NaN) console.log('á'); generates an error C:\emsdk\emscripten\main>python a.py Traceback (most recent call last): File "C:\emsdk\emscripten\main\a.py", line 2, in <module> subprocess.run(['npx', 'google-closure-compiler','--charset=UTF8','--js','a.js','--js_output_file','o.js'], encoding='utf-8', stderr=subprocess.PIPE, shell=True) File "C:\Python311\Lib\subprocess.py", line 550, in run stdout, stderr = process.communicate(input, timeout=timeout) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Python311\Lib\subprocess.py", line 1197, in communicate stderr = self.stderr.read() ^^^^^^^^^^^^^^^^^^ File "<frozen codecs>", line 322, in decode UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe1 in position 135: invalid continuation byte My impression here is that Closure has emitted the ISO-8859-1 encoding value of á to stderr, which has the hex value of 0xe1. However, the encoding='utf-8' argument in Python expects the stderr to be printed out as UTF-8. I could not find a command line directive in https://github.com/google/closure-compiler/wiki/Flags-and-Options to help control Closure stdout/stderr output encoding. Which encoding does Closure use for stdout/stderr printing? Is it ISO-8859-1 by intent? Or should it have been UTF-8 and Closure accidentally printed out ISO-8859-1? I cannot tell from the example a.js file in the description whether the á character is correctly encoded as UTF-8 in the file you're actually using when you see this error. Can you confirm that the input file, a.js is actually correct utf-8? Actually, could you just attach 2 files to this issue? The actual a.js file. The exact output from closure-compiler itself. (i.e. the input that python is seeing) Here are the input files: a.zip C3 A1 is 11000011 10100001, which is of form 110xxxxx 10yyyyyy, i.e. a leading code point and a continution code point. See e.g. Wikipedia on UTF-8 Encoding. The Unicode code point in this case will be xxxxxyyyyyy = 00011 100001 = 0xE1 = https://www.compart.com/en/unicode/U+00E1. The exact output from closure-compiler itself. (i.e. the input that python is seeing) The test case does not capture the output JavaScript from closure-compiler. Rather, it attempts to capture the stderr error message from Closure process, but Python croaks internally since it cannot decode the stderr bytes that Closure is outputting, and so does not produce any output. Executing the following python file instead import subprocess ret = subprocess.run(['npx', 'google-closure-compiler','--charset=UTF8','--js','a.js','--js_output_file','o.js'], encoding='iso-8859-1', stderr=subprocess.PIPE, shell=True) print(ret.stderr) does not throw an exception, and instead causes Python to print the stderr as expected: a.js:1:4: WARNING - [JSC_SUSPICIOUS_NAN] Comparison against NaN is always false. Did you mean isNaN()? 1| if (4 == NaN) console.log('á'); ^^^^^^^^ What I want to know is this: Is closure-compiler actually generating an invalid character sequence to stdout, or is something else going on? One thing that could be happening is that the stderr output from closure-compiler could be getting mixed with output from either its own stdout or output from some other process that happens to share the same output stream. Due to buffering, the 2-character sequence for 'á' closure-compiler sends to stderr could be interrupted by output from somewhere else.. Thanks for providing the a.js file and your command line. We can use that to find out what the actual stderr output from the latest closure-compiler build is for this case. If this problem is in some way actually tied to Windows, we're unlikely to fix it ourselves as none of the core team uses Windows when working on closure-compiler. Thank you for supplying the a.js file. I downloaded it I checked out and built the latest version of closure-compiler as a Java jar file. I stored the path to that jar file in $ccjar I ran the following commands to check the behavior. First confirm that my terminal / OS is using UTF-8 $ echo $LANG en_US.UTF-8 $ echo á |xxd 00000000: c3a1 0a Yep. c3a1 is the correct byte pair for this UTF-8 character as stated in a previous comment. Now confirm that the character is correct in a.js $ xxd a.js 00000000: 6966 2028 3420 3d3d 204e 614e 2920 636f if (4 == NaN) co 00000010: 6e73 6f6c 652e 6c6f 6728 27c3 a127 293b nsole.log('..'); 00000020: 0d0a .. Yep. Now run the compiler with the options as described in earlier comments and save its stderr output into err.out and use xxd to check the contents of that file. $ java -jar $ccjar --charset=UTF8 --js a.js --js_output_file o.js 2> err.out $ xxd err.out 00000000: 612e 6a73 3a31 3a34 3a20 5741 524e 494e a.js:1:4: WARNIN 00000010: 4720 2d20 5b4a 5343 5f53 5553 5049 4349 G - [JSC_SUSPICI 00000020: 4f55 535f 4e41 4e5d 2043 6f6d 7061 7269 OUS_NAN] Compari 00000030: 736f 6e20 6167 6169 6e73 7420 4e61 4e20 son against NaN 00000040: 6973 2061 6c77 6179 7320 6661 6c73 652e is always false. 00000050: 2044 6964 2079 6f75 206d 6561 6e20 6973 Did you mean is 00000060: 4e61 4e28 293f 0a20 2031 7c20 6966 2028 NaN()?. 1| if ( 00000070: 3420 3d3d 204e 614e 2920 636f 6e73 6f6c 4 == NaN) consol 00000080: 652e 6c6f 6728 27c3 a127 293b 0d0a 2020 e.log('..');.. 00000090: 2020 2020 2020 205e 5e5e 5e5e 5e5e 5e0a ^^^^^^^^. 000000a0: 0a30 2065 7272 6f72 2873 292c 2031 2077 .0 error(s), 1 w 000000b0: 6172 6e69 6e67 2873 290a arning(s). Yep. We again see "c3" and "a1" used as the 2-byte encoding in bytes at positions 0x87 and 0x88. The Java jar executing in Linux is definitely generating stderr using UTF-8 encoding. Probably the closure-compiler you're running has been converted from a jar file to a native Windows binary using Graal, because I think that's what the google/closure-compiler-npm code that generates the NPM release tries to make the default. I'm not sure if the different behavior you see is the result of Windows behavior or in the behavior of Java on Windows (as emulated by Graal), or something else.
gharchive/issue
2024-03-06T11:34:19
2025-04-01T06:44:21.271969
{ "authors": [ "brad4d", "juj" ], "repo": "google/closure-compiler", "url": "https://github.com/google/closure-compiler/issues/4159", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
189880062
Sharing with multiple users If I want to share cloud printers with multiple users, can share_scope take a comma separated list? ie "share_scope": "foo@example.com,bar@example.com" Or do I need to create a group with these users and share with that group? Similarly, if I want to share with my entire G Suite domain can I do something like: "share_scope": "*@example.com" Thanks! Tubleweed * ... Hi! I'm not an expert in this area, but I tested some things for you. A group email address is a common way to share to multiple users, so that'll work if you use it. The connector doesn't handle multiple email addresses or anything specially - it just passes the string to the Google Cloud Print API, which says the scope is the "Email of the user or group or domain name to share the printer with". Since you have a "G Suite domain", and the API mentions a domain name, it sounds like you could use just the domain name. Unfortunately I'm not able to test that, but please give it a try. I tested the examples you give above using the API tool and they failed. Cheers, Nick. I use cloud-print-connector with G Suite. To share a printer with the entire domain, I created an everyone@example.com group which automatically includes all members of the domain and used that as my share_scope. After sharing the printers, I had to add myself as an owner of the group and then visit https://www.google.com/cloudprint#printers, where I was prompted to accept the share on behalf of all group members. I couldn't accept the share before I set myself as a group owner, despite being a super admin on the domain. @pigmonkey: yes, that's expected behavior, only group owners can accept a printer shared with group. However, if you add your cloud print user as an owner of the group the group share will be automatic since the user owns both the printer and group. I want to set up multiple users, but we're not using G Suite. So I don't believe I can create a "domain". Can I run multiple instances of gcp on the same box, each with a different share_scope ? E.g., sean@gmail.com in one instance and fred@yahoo.com in another instance ? A little self help works wonders. Go to google groups and set up a new group, with some email : myprinters@googleproups.com. Send invites. Accept invites. In gcp: "share_scope": "myprinters@googlegroups.com", And now you have multiple users ! Not so fast. Now only one member of the group sees the printers, Three members, 2 are owners, 1 a manager. One of the owners can see and use the printers, but not the other owner or the manager. All three can access the group page, and are listed as members, ??? Has everyone accepted the invite to the Google Group? Yes, they all accepted. Each can access the google groups page. And each shows as a member on the groups page: "Showing 3 of 3 members"
gharchive/issue
2016-11-16T23:15:46
2025-04-01T06:44:21.282287
{ "authors": [ "aimless55", "bblietz", "jay0lee", "pigmonkey", "seandarcy", "sicklittlemonkey" ], "repo": "google/cloud-print-connector", "url": "https://github.com/google/cloud-print-connector/issues/333", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
1160667279
Support for physical addressing Motivation Full support for OpenCL C requires physical addressing. While clspv has done a great job of enabling many OpenCL C programs without the use of physical addressing, there will always be programs that cannot be compiled without physical addressing. clspv's pointer bitcast rewriting passes are rather complex and tend to require changes when large new code bases are compiled. Some OpenCL CTS tests would be easy to pass with physical addressing (e.g. support for NULL kernel arguments). Physical addressing opens the door to supporting OpenCL SVM or USM which in addition to being desirable features in their own right are also very useful to provide a bridge to enable other programming languages to target Vulkan. Proposed design outline Here's a rough outline of what I prototyped: Use the SPV_KHR_physical_storage_buffer extension to enable the use of the PhysicalStorageBufferEXT storage class where StorageBuffer is currently used. Disable pointer transformation passes (pointer bitcast replacement and simplification passes). Introduce new runtime interfaces in the clspv non-semantic instruction set to allow passing pointers obtained by the runtime using VK_KHR_buffer_device_address via either push constants or uniform buffers. The interface uses a structure of 64-bit integers (or 2-element vectors of 32-bit integers), one for each pointer argument, that is part of the global push constant structure or stored in a dedicated uniform buffer. Pointer arguments to kernel functions are rewritten to load the required integers from this structure and convert them to pointers. A new pass is introduced to declare the interface structure and perform the necessary rewriting. Add a new command line option to enable the use of physical addressing where possible (disabled by default) Add a new command line option to select the 64-bit addressing model (disabled by default, implied by or required with physical addressing) Proposed staging [ ] Support 64-bit addressing model (hard requirement of the PhysicalStorageBuffer64EXT addressing model) [x] Add libclc target (https://reviews.llvm.org/D116668) [ ] Build libclc as part of clspv's build system [ ] Add support for 64-bit addressing model [ ] Update clspv non-semantic instruction set with new runtime interface instructions [ ] Specification [ ] Headers [ ] Use in clspv and other dependent projects (e.g. SPIR-V Tools) [ ] Introduce utilities to manage global push constants [ ] Add support for physical addressing (using 64-bit integers) [ ] Add support for physical addressing (using 2-element vectors of 32-bit integers) Seems reasonable overall. A few points to consider: You can only disable pointer transforms for global (and sometimes constant) address space. More detail on the reflection design would be appreciated. The push constant case seems clearer for reflection than the UBO case. Nulls are tricky. You need to codegen as a conversion from integer 0 (or (0,0)) and then comparison. I assume this is all based on a new option. To be clear, this feature will wholesale replace uses of StorageBuffer with PhysicalStorageBuffer? FYI Nvidia originally had a limit on CUDA parameters of 256 bytes. This limit was increased to 4k in cuda 2.x by moving to constant memory AKA uniform memory/buffers. I mention this to show there's industry precedent for the exact solution proposed for the push constant size limitations.
gharchive/issue
2022-03-06T17:24:44
2025-04-01T06:44:21.292651
{ "authors": [ "Cazadorro", "alan-baker", "kpet" ], "repo": "google/clspv", "url": "https://github.com/google/clspv/issues/826", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2487755925
Update AArch64 features to Linux 6.10.6 https://elixir.bootlin.com/linux/v6.10.6/source/arch/arm64/include/asm/hwcap.h#L142 https://github.com/torvalds/linux/blob/master/arch/arm64/include/uapi/asm/hwcap.h#L107-L124 https://developer.arm.com/documentation/ddi0601/2024-06/AArch64-Registers Thx @toor1245 !
gharchive/pull-request
2024-08-26T20:49:08
2025-04-01T06:44:21.297208
{ "authors": [ "gchatelet", "toor1245" ], "repo": "google/cpu_features", "url": "https://github.com/google/cpu_features/pull/359", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
580811678
FusionTutorial files are available on s3. download_tutorial.sh needs to be updated. The download_tutorial.sh files need to reflect to the new location of the FusionTutorial-Full.tar.gz The new location is: https://opengee-dev.s3.amazonaws.com/FusionTutorial-Full.tar.gz Fix has been merged
gharchive/issue
2020-03-13T19:57:41
2025-04-01T06:44:21.308790
{ "authors": [ "tst-bmuthusamy", "tst-rwildes" ], "repo": "google/earthenterprise", "url": "https://github.com/google/earthenterprise/issues/1667", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
55985347
support sbt there is no integration with sbt We'd like to support as many build systems as possible. But we have limited time, and the ones we already support have been a bit neglected lately. It may be a while before sbt happens. Feel free to send us a patch, though! Any updates here? In it's current state, supporting Scala code is likely to be extremely difficult. Error Prone is heavily reliant on javac's AST. Supporting other JVM languages would require a common API for ASTs and type systems. Not impossible, but definitely a massive shift from what EP currently is doing. @ronshapiro I want use Error-Prone in Play Framework project with Java code as main language. IntelliJ IDEA plugin use old version of Error-prone, and I can't override it. Using JDK 9+ and a recent Error Prone, it should be possible to use Error Prone as a Javac plugin: add com.google.errorprone:error_prone_core (you can exclude com.google.errorprone:javac from the transitive dependencies) to the -processorpath and pass an additional -Xplugin:ErrorProne argument (possibly followed by Error Prone-specific arguments, space-separated, in the same argument). No requirement for build tool integration. See http://errorprone.info/docs/installation#java-9 @ronshapiro I mean as a sbt plugin:) Sorry to dig up an old issue, but I managed to do exactly what was suggested and wrapped it to a global sbt plugin. The code might be useful for someone who wants to try this out with sbt: import sbt.Keys._ import sbt._ import sbt.plugins.JvmPlugin // put these files into ./errorprone/ // https://oss.sonatype.org/content/repositories/snapshots/com/google/errorprone/error_prone_core/2.4.1-SNAPSHOT/error_prone_core-2.4.1-20201112.221044-130-with-dependencies.jar // https://repo1.maven.org/maven2/org/checkerframework/dataflow-shaded/3.1.2/dataflow-shaded-3.1.2.jar // https://repo1.maven.org/maven2/com/google/code/findbugs/jFormatString/3.0.0/jFormatString-3.0.0.jar object ErrorProne extends AutoPlugin { override def trigger = allRequirements override def requires: sbt.Plugins = JvmPlugin override def projectSettings = Seq( javacOptions ++= Seq( "-XDcompilePolicy=simple", "-processorpath", dependencyFiles, "-Xplugin:ErrorProne" ) ) private def dependencyFiles = { val home: String = sys.env.get("HOME").get def file(name: String) = s"${home}/.sbt/1.0/plugins/errorprone/$name" val files = List(file("error_prone_core-2.4.1-20201112.221044-130-with-dependencies.jar"), file("dataflow-shaded-3.1.2.jar"), file("jFormatString-3.0.0.jar")) val filestring = files.mkString(":") println(s"Using errorprone libs from $filestring") filestring } } @mikavilpas is it possible to write as a project-level plugin? Sorry but I have not worked in scala for a couple of years now, and I don't remember much about it. @mikavilpas alright. anyway, thanks for providing such an example
gharchive/issue
2015-01-30T02:00:25
2025-04-01T06:44:21.314623
{ "authors": [ "He-Pin", "PromanSEW", "cushon", "hepin1989", "mikavilpas", "pan3793", "ronshapiro", "sp3ctum", "tbroyer" ], "repo": "google/error-prone", "url": "https://github.com/google/error-prone/issues/291", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
874596000
Fix linen.scan docstring example. Fix linen.scan docstring example to include a sequence dimension. Fixes #1294 (issue) Checklist [x] This PR fixes a minor issue (e.g.: typo or small bug) or improves the docs (you can dismiss the other checks if that's the case). Example slightly diverges from one proposed in discussion: Change variable names for consistency The input/output feature dimensions differ, to show users they don't need to be the same Add assertion to give readers information about output shape @n2cholas could you rebase the branch please? The build was failing on master @jheek done, it passes now! @googlebot I consent.
gharchive/pull-request
2021-05-03T13:53:49
2025-04-01T06:44:21.317763
{ "authors": [ "8bitmp3", "jheek", "n2cholas" ], "repo": "google/flax", "url": "https://github.com/google/flax/pull/1295", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1165923024
Add multi-GPU support for seq2seq example What does this PR do? Adds multi-GPU for seq2seq example by using pmap to implement data parallel training. We used this modified example as part of our research and hope that others will find it useful as well. Checklist [ ] This PR fixes a minor issue (e.g.: typo or small bug) or improves the docs (you can dismiss the other checks if that's the case). [ ] This change is discussed in a Github issue/ discussion (please add a link). [ ] The documentation and docstrings adhere to the documentation guidelines. [ ] This change includes necessary high-coverage tests. (No quality testing = no merge!) Thanks for filing this PR @gmittal! To be honest, I am not sure if it is a good idea to complicate the seq2seq example further. The main thing we want to display in this example is how to implement a recurrent network, so we intentionally keep everything else as simple as possible (input pipeline, training, metrics, ...). Also, since the dataset is so simple and training takes only a few minutes on CPU (thanks to your change!), it doesn't seem necessary to use data parallel training either. However, I do think it is very nice that you made this example, and one thing we could do is to turn this into a HOWTO called "Data-parallel training on multiple devices". We could then show the minimal changes required to rewrite the seq2seq example, similar to our existing howto Ensembling on multiple devices. Our HOWTO system has the ability to use side-by-side diff views very easily (see the source code ensembling.rst), so that could be quite simple to implement. I think it could be a really great addition to our HOWTOs, since many people are interested in doing data-parallel training. Would you be interested in doing this? That makes sense (I suspected that DP was a bit overkill for this anyways) and I'd be happy to make a HOWTO tutorial with the side-by-side diffs. That makes sense (I suspected that DP was a bit overkill for this anyways) and I'd be happy to make a HOWTO tutorial with the side-by-side diffs. That is really awesome! I'll create an issue and assign it to you. Closing this since we decided it would be better to add this in a HOWTO.
gharchive/pull-request
2022-03-11T02:18:13
2025-04-01T06:44:21.324500
{ "authors": [ "gmittal", "marcvanzee" ], "repo": "google/flax", "url": "https://github.com/google/flax/pull/1982", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2339004979
updated nnx.Conv and nnx.ConvTranspose This PR does the following: switch nnx.Conv to use mask instead of mask_fn and update docstring accordingly add docstring to nnx.ConvTranspose and add entry to API reference add mask option to parameterized tests for nnx.Conv and nnx.ConvTranspose update formatting for NNX docstrings Codecov Report Attention: Patch coverage is 0% with 6 lines in your changes missing coverage. Please review. Project coverage is 0.00%. Comparing base (abf36e5) to head (ab6a429). Report is 19 commits behind head on main. Files Patch % Lines flax/nnx/nnx/nn/linear.py 0.00% 6 Missing :warning: Additional details and impacted files @@ Coverage Diff @@ ## main #3974 +/- ## ====================================== Coverage 0.00% 0.00% ====================================== Files 102 104 +2 Lines 13208 13369 +161 ====================================== - Misses 13208 13369 +161 :umbrella: View full report in Codecov by Sentry. :loudspeaker: Have feedback on the report? Share it here.
gharchive/pull-request
2024-06-06T19:25:07
2025-04-01T06:44:21.332498
{ "authors": [ "chiamp", "codecov-commenter" ], "repo": "google/flax", "url": "https://github.com/google/flax/pull/3974", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
62523987
GCM through Proxy I am trying to work GCM through proxy . I don't find any way to give my proxy details in the GCM server docs . I tried to set the System.setProperty . But it is not working for me . The only way i can able to work it by modifying the gcm-server . [ Included proxy details in Post() method . ] Thanks D.Murugesan Original issue reported on code.google.com by sweat.mu...@gmail.com on 28 Aug 2012 at 10:03 We also need to send notifications via proxy server.Not sure how to do that using GCM. I am still seeing that proxy is not implemented in GCM server . Is this resolved now? I see this issue as closed. I would like to re-open if its not implemented. I have used following library for proxy: https://github.com/alexjlockwood/gcm transport := &http.Transport{Proxy: http.ProxyURL(proxyUrl)} client := &http.Client{Transport: transport} sender := &gcm.Sender{ApiKey: viper.GetString("pushNotification.gcmAPIKey"), Http:client}
gharchive/issue
2015-03-17T21:37:06
2025-04-01T06:44:21.382974
{ "authors": [ "GoogleCodeExporter", "fijojosep", "rakesh-eltropy" ], "repo": "google/gcm", "url": "https://github.com/google/gcm/issues/8", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
358839366
Use master instead of tip for .travis.yml This is an experiment to address this question: https://github.com/google/go-github/pull/985#discussion_r216491123 Although I don't see the check on this PR (passing or otherwise, which is odd), I see that the build is successful: https://travis-ci.org/google/go-github/builds/426983699 Hehe... now it appears. Yesterday GitHub showed only "1 successful check" (the cla/google one)... very strange. Thanks, @dmitshur! Merging.
gharchive/pull-request
2018-09-11T00:11:36
2025-04-01T06:44:21.399859
{ "authors": [ "gmlewis" ], "repo": "google/go-github", "url": "https://github.com/google/go-github/pull/1002", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
448607914
Return new http.Client when nil passed to NewClient Fixes #1173. Reviewers: can you think of any negative impacts this change might have on users of this package? Thank you, @gauntface! Merging.
gharchive/pull-request
2019-05-26T21:23:08
2025-04-01T06:44:21.400995
{ "authors": [ "gmlewis" ], "repo": "google/go-github", "url": "https://github.com/google/go-github/pull/1178", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
338196674
Library security updates. Fixes https://github.com/google/google-api-java-client/issues/1084 httpclient 4.5.5 jackson 2.9.6 There are currently three public CVEs for httpclient 4.0.1. Filename: httpclient-4.0.1.jar | Reference: CVE-2011-1498 | CVSS Score: 4.3 | Category: CWE-200 Information Exposure | Apache HttpClient 4.x before 4.1.1 in Apache HttpComponents, when used with an authenticating proxy server, sends the Proxy-Authorization header to the origin server, which allows remote web servers to obtain sensitive information by logging this header. Filename: httpclient-4.0.1.jar | Reference: CVE-2014-3577 | CVSS Score: 5.8 | org.apache.http.conn.ssl.AbstractVerifier in Apache HttpComponents HttpClient before 4.3.5 and HttpAsyncClient before 4.0.2 does not properly verify that the server hostname matches a domain name in the subject's Common Name (CN) or subjectAltName field of the X.509 certificate, which allows man-in-the-middle attackers to spoof SSL servers via a "CN=" string in a field in the distinguished name (DN) of a certificate, as demonstrated by the "foo,CN=www.apache.org" string in the O field. Filename: httpclient-4.0.1.jar | Reference: CVE-2015-5262 | CVSS Score: 4.3 | Category: CWE-399 Resource Management Errors | http/conn/ssl/SSLConnectionSocketFactory.java in Apache HttpComponents HttpClient before 4.3.6 ignores the http.socket.timeout configuration setting during an SSL handshake, which allows remote attackers to cause a denial of service (HTTPS call hang) via unspecified vectors. I signed it! @chingor13 thanks!
gharchive/pull-request
2018-07-04T09:21:30
2025-04-01T06:44:21.406153
{ "authors": [ "johnou" ], "repo": "google/google-api-java-client", "url": "https://github.com/google/google-api-java-client/pull/1122", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
302806903
Error adding label to gmail message since v25.0.0 Attempting to modify a message is failing since v25.0.0. Using googleapis v 23.0.0 the following works: function updateLabel(auth) { var gmail = google.gmail('v1'); gmail.users.messages.modify({ auth: auth, userId: 'me', id: 'valid message id', resource:{ "addLabelIds":["UNREAD"] } }, function(err, updatedMessage) { if (err) { console.log(err); } console.log(updatedMessage); }); } From v25.0.0 and beyond it gives this error: errors: [ { domain: 'global', reason: 'invalidArgument', message: 'No label add or removes specified' } ] I'm not sure if this is a bug or if the documentation hasn't been updated. Well that's weird. At a glance, I can't see what's wrong. I submitted #1046, which seems to work for me. Can you try this out with the latest release? (v27 right now). Or try out the sample code I posted in #1046? Thanks, I did try using v27.0.0 but had the same problem. However I think I might have found the problem with my code. I was starting with the code in the quick start guide which asked me to install the following packages: npm install googleapis@25.* --save npm install google-auth-library@0.* --save If I bump the google-auth-library to v1.3.1 things started working. There were a few lines in the quick start that I had to modify to get it fully working but I think I've got it now. In case anyone else runs into a similar issue here's an example that works with: "googleapis": "27.0.0", "google-auth-library": "1.3.1", The changes I had to make after updating versions are commented with //CHANGED var fs = require('fs'); var readline = require('readline'); //CHANGED var google = require('googleapis'); var {google} = require('googleapis'); //CHANGED var googleAuth = require('google-auth-library'); const {GoogleAuth, JWT, OAuth2Client} = require('google-auth-library'); // If modifying these scopes, delete your previously saved credentials // at ~/.credentials/gmail-nodejs-quickstart.json var SCOPES = ['https://www.googleapis.com/auth/gmail.modify']; var TOKEN_DIR = (process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE) + '/.credentials/'; var TOKEN_PATH = TOKEN_DIR + 'label-test.json'; // Load client secrets from a local file. fs.readFile('client_secret.json', function processClientSecrets(err, content) { if (err) { console.log('Error loading client secret file: ' + err); return; } // Authorize a client with the loaded credentials, then call the // Gmail API. authorize(JSON.parse(content), updateLabel); }); /** * Create an OAuth2 client with the given credentials, and then execute the * given callback function. * * @param {Object} credentials The authorization client credentials. * @param {function} callback The callback to call with the authorized client. */ function authorize(credentials, callback) { var clientSecret = credentials.installed.client_secret; var clientId = credentials.installed.client_id; var redirectUrl = credentials.installed.redirect_uris[0]; //CHANGED var auth = new googleAuth(); var auth = new GoogleAuth(); //CHANGED var oauth2Client = new auth.OAuth2(clientId, clientSecret, redirectUrl); var oauth2Client = new OAuth2Client(clientId, clientSecret, redirectUrl); // Check if we have previously stored a token. fs.readFile(TOKEN_PATH, function(err, token) { if (err) { getNewToken(oauth2Client, callback); } else { oauth2Client.credentials = JSON.parse(token); callback(oauth2Client); } }); } /** * Get and store new token after prompting for user authorization, and then * execute the given callback with the authorized OAuth2 client. * * @param {google.auth.OAuth2} oauth2Client The OAuth2 client to get token for. * @param {getEventsCallback} callback The callback to call with the authorized * client. */ function getNewToken(oauth2Client, callback) { var authUrl = oauth2Client.generateAuthUrl({ access_type: 'offline', scope: SCOPES }); console.log('Authorize this app by visiting this url: ', authUrl); var rl = readline.createInterface({ input: process.stdin, output: process.stdout }); rl.question('Enter the code from that page here: ', function(code) { rl.close(); oauth2Client.getToken(code, function(err, token) { if (err) { console.log('Error while trying to retrieve access token', err); return; } oauth2Client.credentials = token; storeToken(token); callback(oauth2Client); }); }); } /** * Store token to disk be used in later program executions. * * @param {Object} token The token to store to disk. */ function storeToken(token) { try { fs.mkdirSync(TOKEN_DIR); } catch (err) { if (err.code != 'EEXIST') { throw err; } } fs.writeFile(TOKEN_PATH, JSON.stringify(token)); console.log('Token stored to ' + TOKEN_PATH); } /** * Update the label to indicate the message has been processed * * @param {google.auth.OAuth2} auth An authorized OAuth2 client. */ function updateLabel(auth) { var gmail = google.gmail('v1'); gmail.users.messages.modify({ auth: auth, userId: 'me', id: 'Valid Message Id', resource:{ "addLabelIds":["Valid Label Id"] } }, function(err, updatedMessage) { if (err) { console.log(err); } //CHANGED console.log(updatedMessage); console.log(updatedMessage.data); }); } Thank you @JustinBeckwith for taking a look. Ouch, those instructions are super wrong. You do not need to install google-auth-library at all, google-api-nodejs-client comes with it bundled in. @grant can you make sure the samples don't tell people to explicitly install google-auth-library? That's going to be very, very brittle. @JustinBeckwith I'm with ya, they're outdated. Right now I'm working on PHP and will update the DevSite samples in ~2 weeks. Let's sync then.
gharchive/issue
2018-03-06T18:04:28
2025-04-01T06:44:21.413562
{ "authors": [ "JustinBeckwith", "grant", "jhanda" ], "repo": "google/google-api-nodejs-client", "url": "https://github.com/google/google-api-nodejs-client/issues/1043", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
275865305
update the docs the docs here are extremely outdated https://developers.google.com/api-client-library/python/reference/pydoc The epydoc-generated docs for google-api-python-client were updated Jun 25, so I am going to close this. If any other docs need updating, please let us know.
gharchive/issue
2017-11-21T21:27:12
2025-04-01T06:44:21.415417
{ "authors": [ "andrewzhaosc", "mcdonc" ], "repo": "google/google-api-python-client", "url": "https://github.com/google/google-api-python-client/issues/456", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
239094261
email-parser Traceback (most recent call last): File "tools/grumpc", line 118, in sys.exit(main(parser.parse_args())) File "tools/grumpc", line 76, in main visitor.visit(mod) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 41, in visit return self._visit_one(obj) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 32, in _visit_one return getattr(self, visit_attr)(node) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/compiler/stmt.py", line 320, in visit_Module self._visit_each(node.body) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/compiler/stmt.py", line 734, in _visit_each self.visit(node) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 41, in visit return self._visit_one(obj) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 32, in _visit_one return getattr(self, visit_attr)(node) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/compiler/stmt.py", line 296, in visit_ImportFrom for imp in self.block.root.importer.visit(node): File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 41, in visit return self._visit_one(obj) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/pythonparser/algorithm.py", line 32, in _visit_one return getattr(self, visit_attr)(node) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/compiler/imputil.py", line 137, in visit_ImportFrom member_imp = resolver(node, node.module) File "/home/avdhesh/grumpy/build/lib/python2.7/site-packages/grumpy/compiler/imputil.py", line 153, in _resolve_import raise util.ImportError(node, 'no such module: {}'.format(modname)) grumpy.compiler.util.ImportError: line 35: no such module: email.parser how can i solve this Don't know what the source code you were compiling, but it looks like the email module is not ported to grumpy currently. I think you can do this if you have interest.
gharchive/issue
2017-06-28T08:48:28
2025-04-01T06:44:21.445189
{ "authors": [ "aisk", "piyu7274" ], "repo": "google/grumpy", "url": "https://github.com/google/grumpy/issues/338", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1677738583
Cleanup before release Modified existing docstrings to address errors + warnings from build.gradle's generateApiDoc and added the ability to generate artifacts which will be published from identity/build.gradle. It's a good idea to open an issue first for discussion. [ ] Tests pass [ ] Appropriate changes to README are included in PR LGTM but there's a stray Merge branch 'google:master' into issue-192 commit here? Gotcha! I force-pushed a squash for a cleaner commit history, and also added info to the README which needs to be reviewed.
gharchive/pull-request
2023-04-21T03:48:17
2025-04-01T06:44:21.447256
{ "authors": [ "davidz25", "suzannajiwani" ], "repo": "google/identity-credential", "url": "https://github.com/google/identity-credential/pull/267", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
717646440
Fuse operations with Matmul, Conv, Pool, etc. Using the tile + fuse + distribute transformations in Linalg, elementwise operations can be fused into matmuls, conv, reductions, etc. The base transformation here is relevant for both CPU and GPU here's where the special-casing lives: https://github.com/google/iree/blob/15c6d4565b1590ed2fcccb1056db7f7478b95101/iree/compiler/Dialect/Flow/Transforms/DispatchConfig.cpp#L32-L38 (concat and slice are ones that we can sometimes pull out into special flow dialect ops as they can impact allocation, but the rest fall into this category and it'd be nice if slices didn't break up dispatch region formation if in the middle of a sequence of ops) May be subsumed by #1354 work? Nope, this is for work related to fusion. It works for both fusion on buffers and fusion on tensors. (Not everything is solved by moving to linalg on tensors :) ) Closing this since the core functionality is added in PR #4008
gharchive/issue
2020-10-08T20:36:45
2025-04-01T06:44:21.449927
{ "authors": [ "MaheshRavishankar", "benvanik" ], "repo": "google/iree", "url": "https://github.com/google/iree/issues/3408", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
750207557
Changing iree/base/math.h to C and adding some PRNG routines. These routines will be used for threadpool worker theft distribution where it's important that they are relatively fast. I used this opportunity to clean up the file and finish some of the TODOs for when C happened. and any additional testing. if you can think of useful test cases please add - for some of the tests in here I was literally scrounging on sourcegraph for what other major projects (linux, dart, qemu, etc) tested their stuff with and came up short.
gharchive/pull-request
2020-11-25T00:49:48
2025-04-01T06:44:21.451761
{ "authors": [ "benvanik" ], "repo": "google/iree", "url": "https://github.com/google/iree/pull/4005", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
719670716
Updated validations.py python script. Updated validations.py python script. Fixed the behavior of validate_user function in validations.py. Fixes #<issue_number_goes_here> It's a good idea to open an issue first for discussion. [x] Tests pass [x] Appropriate changes to README are included in PR cool
gharchive/pull-request
2020-10-12T21:10:35
2025-04-01T06:44:21.454411
{ "authors": [ "dshaykin" ], "repo": "google/it-cert-automation-practice", "url": "https://github.com/google/it-cert-automation-practice/pull/8617", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
738073198
Added check for the first char to be alpha 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 @googlebot I signed it!
gharchive/pull-request
2020-11-06T22:13:52
2025-04-01T06:44:21.456156
{ "authors": [ "robert-rabaev" ], "repo": "google/it-cert-automation-practice", "url": "https://github.com/google/it-cert-automation-practice/pull/9434", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2388525279
Fine-grained remat policy makes async/pipelined collectives execute in the main stream Description Hi, I have following setup: Transformer model with N layers scanned over input fully sharded data parallel sharding asynchronous communications (latency-hiding scheduler, pipelined all-gather,all-reduce,reduce-scatter) I'm using following flags: --xla_gpu_graph_level=0 --xla_gpu_enable_latency_hiding_scheduler=true --xla_gpu_enable_all_gather_combine_by_dim=false --xla_gpu_enable_reduce_scatter_combine_by_dim=false --xla_gpu_enable_pipelined_all_gather=true --xla_gpu_enable_pipelined_reduce_scatter=true --xla_gpu_enable_pipelined_all_reduce=true --xla_gpu_enable_pipelined_collectives=false --xla_gpu_enable_while_loop_double_buffering=true --xla_gpu_enable_highest_priority_async_stream=true --xla_gpu_all_reduce_combine_threshold_bytes=2147483648 --xla_gpu_all_gather_combine_threshold_bytes=2147483648 --xla_gpu_reduce_scatter_combine_threshold_bytes=2147483648 --xla_gpu_disable_async_collectives=collectivebroadcast,alltoall,collectivepermute To speedup backward by fine-grained reduction of activations recomputation, I marked each dense layer's output in transformer block with specific name: result = jax.lax.dot_general( inputs, kernel, dimension_numbers=((axis, contract_ind), ((), ())), precision=self.precision, preferred_element_type=self.accumulator_dtype, ) result = jax.ad_checkpoint.checkpoint_name(result, self.activation_dot_name) So, for example, in attention layer I have "dot_attention_query", "dot_attention_key", "dot_attention_value", "dot_attention_out". And then I apply checkpoint policy on scanned function which accepts list of activation names to checkpoint: def rematted_layer(layer): return nn.remat( layer, policy=jax.checkpoint_policies.save_only_these_names( *self.config.save_names_for_bwd ), prevent_cse=not self.config.scan, ) and then scan It over embeddings: apply_block = rematted_layer(apply_block) apply_block = nn.scan( apply_block, length=self.config.num_layers, variable_axes={ "params": 0, }, variable_broadcast=False, split_rngs={"params": True}, metadata_params={nn.PARTITION_NAME: "layers"}, ) block = TransformerBlock( name="scan", config=self.config.block, ) embeddings, _ = apply_block(block, embeddings, None) If I set self.config.save_names_for_bwd to empty list (which is basically equivalent to "nothing_saveable" policy), then communications works correctly - all-gather/reduce-scatters/all-reduces are overlapped with computations, as can be seen on this perfetto trace: nothing_saveable.tgz But as soon as I start to specify some names in self.config.save_names_for_bwd, for example, save_names_for_bwd: - dot_mlp_out - dot_attention_value - dot_attention_query - dot_attention_key While these activations is indeed not recomputed during backward pass, all communications are executed in main stream without any overlapping with computations: save_only_these_names_trace.tgz System info (python version, jaxlib version, accelerator, etc.) >>> import jax; jax.print_environment_info() jax: 0.4.30 jaxlib: 0.4.30 numpy: 1.24.3 python: 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] jax.devices (8 total, 8 local): [cuda(id=0) cuda(id=1) ... cuda(id=6) cuda(id=7)] process_count: 1 platform: uname_result(system='Linux', node='ffisin-dev-8gpu', release='5.4.0-155-generic', version='#172-Ubuntu SMP Fri Jul 7 16:10:02 UTC 2023', machine='x86_64') $ nvidia-smi Mon Jul 1 13:21:57 2024 +---------------------------------------------------------------------------------------+ | NVIDIA-SMI 535.104.12 Driver Version: 535.104.12 CUDA Version: 12.3 | |-----------------------------------------+----------------------+----------------------+ | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |=========================================+======================+======================| | 0 NVIDIA H100 80GB HBM3 On | 00000000:8D:00.0 Off | 0 | | N/A 68C P0 141W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 1 NVIDIA H100 80GB HBM3 On | 00000000:91:00.0 Off | 0 | | N/A 48C P0 121W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 2 NVIDIA H100 80GB HBM3 On | 00000000:95:00.0 Off | 0 | | N/A 69C P0 137W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 3 NVIDIA H100 80GB HBM3 On | 00000000:99:00.0 Off | 0 | | N/A 50C P0 126W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 4 NVIDIA H100 80GB HBM3 On | 00000000:AB:00.0 Off | 0 | | N/A 68C P0 142W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 5 NVIDIA H100 80GB HBM3 On | 00000000:AF:00.0 Off | 0 | | N/A 49C P0 124W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 6 NVIDIA H100 80GB HBM3 On | 00000000:B3:00.0 Off | 0 | | N/A 68C P0 143W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ | 7 NVIDIA H100 80GB HBM3 On | 00000000:B7:00.0 Off | 0 | | N/A 48C P0 121W / 700W | 1074MiB / 81559MiB | 0% Default | | | | Disabled | +-----------------------------------------+----------------------+----------------------+ +---------------------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=======================================================================================| +---------------------------------------------------------------------------------------+ corresponding XLA issue: https://github.com/openxla/xla/issues/14397 I think this is an XLA bug, so let's watch openxla/xla#14397 to see. Looks like that XLA issue is resolved!
gharchive/issue
2024-07-03T12:38:56
2025-04-01T06:44:21.465020
{ "authors": [ "mattjj", "qGentry" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/22252", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1172947824
Different outputs on subsequent calls of irfft2 with the same input on GPU with double precision Hello, I found a weird issue when calling irfft2 on a complex array on GPU (e.g. v100 but not restricted to it) with double precision. It looks like calling irfft2(x) changes the value of x for subsequent irfft2() or numpy.real() calls, while calling x on its own shows the initial x (as expected), see below. I'm running JAX 0.3.2 with CUDA/11.1.1-GCC-10.2.0 cuDNN/8.0.5.39-CUDA-11.1.1. Thanks! Python 3.10.2 | packaged by conda-forge | (main, Jan 28 2022, 16:48:22) [GCC 9.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import jax.numpy as jnp >>> from jax.config import config >>> config.update("jax_enable_x64", True) >>> x = jnp.array([[1.0,2.0],[3.0,4.0]],dtype=jnp.float64)*(1+1j) >>> x DeviceArray([[1.+1.j, 2.+2.j], [3.+3.j, 4.+4.j]], dtype=complex128) >>> jnp.fft.irfft2(x) DeviceArray([[ 2.5, -0.5], [-1. , 0. ]], dtype=float64) >>> jnp.real(x) DeviceArray([[ 4., 6.], [-2., -2.]], dtype=float64) >>> x DeviceArray([[1.+1.j, 2.+2.j], [3.+3.j, 4.+4.j]], dtype=complex128) >>> >>> >>> jnp.fft.irfft2(x) DeviceArray([[ 1.5, -0.5], [ 3.5, -0.5]], dtype=float64) >>> >>> jnp.real(x) DeviceArray([[2., 4.], [6., 8.]], dtype=float64) >>> x DeviceArray([[1.+1.j, 2.+2.j], [3.+3.j, 4.+4.j]], dtype=complex128) >>> This appears to be a CuFFT issue for C2R FFTs we've seen before and worked around but that workaround only applied to single precision floats. I'll extend the same workaround for double precision. This is now fixed at head, but you'll need to wait for a jaxlib release (or build jaxlib from source). Great, thanks for fixing it!
gharchive/issue
2022-03-17T21:40:17
2025-04-01T06:44:21.469127
{ "authors": [ "bogdantoader", "hawkinsp" ], "repo": "google/jax", "url": "https://github.com/google/jax/issues/9946", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
499923925
Cannot install ko While I install ko, failed due to below problem, any work around solution? or anything I wrong? Thanks. [root@jinchi1 kfserving]# GO111MODULE=on go get github.com/google/ko/cmd/ko go: creating new go.mod: module github.com/kubeflow/kfserving go: copying requirements from Gopkg.lock go: finding github.com/go-openapi/jsonreference v0.19.2 go: finding github.com/petar/GoLLRB v0.0.0-20130427215148-53be0d36a84c go: finding github.com/getkin/kin-openapi v0.2.0 go: finding github.com/google/uuid v1.1.1 go: finding github.com/mattbaird/jsonpatch v0.0.0-20171005235357-81af80346b1a go: finding github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 go: finding github.com/go-logr/zapr v0.1.1 go: finding github.com/go-openapi/swag v0.19.3 go: finding github.com/google/go-containerregistry v0.0.0-20190619182234-abf9ef06abd9 go: finding k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc go: finding github.com/hashicorp/golang-lru v0.5.1 go: finding github.com/imdario/mergo v0.3.7 go: finding google.golang.org/appengine v1.5.0 go: finding github.com/go-openapi/jsonpointer v0.19.2 go: finding github.com/prometheus/client_golang v0.9.2 go: finding github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc go: finding github.com/google/btree v1.0.0 go: finding github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef go: finding knative.dev/pkg v0.0.0-20190801223944-2b848f71969c go: finding k8s.io/api v0.0.0-20190226173710-145d52631d00 go: finding github.com/emicklei/go-restful v2.9.3+incompatible go: finding knative.dev/serving v0.8.0 go: finding github.com/google/go-cmp v0.3.0 go: finding golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 go: finding golang.org/x/net v0.0.0-20181201002055-351d144fa1fc go: finding golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a go: finding golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 go: finding github.com/prometheus/common v0.0.0-20181126121408-4724e9255275 go: finding github.com/pborman/uuid v0.0.0-20180906182336-adf5a7427709 go: finding github.com/prometheus/procfs v0.0.0-20190403104016-ea9eea638872 go: finding github.com/tensorflow/tensorflow v1.13.1 go: finding k8s.io/client-go v0.0.0-20190226174127-78295b709ec6 go: finding github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e go: finding sigs.k8s.io/controller-runtime v0.1.9 go: finding k8s.io/kube-openapi v0.0.0-20180509051136-39cb288412c4 go: finding github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 go: finding k8s.io/gengo v0.0.0-20190327210449-e17681d19d3a go: finding github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63 go: finding golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 go: finding golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e go: finding github.com/rogpeppe/go-internal v1.3.0 go: finding golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67 go: finding github.com/go-openapi/spec v0.19.2 go: finding golang.org/x/tools v0.0.0-20190407030857-0fdf0c73855b go: finding golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 go: finding sigs.k8s.io/controller-tools v0.1.8 go: finding github.com/PuerkitoBio/purell v1.1.1 go: finding golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 go: finding github.com/peterbourgon/diskv v2.0.1+incompatible go: finding github.com/go-openapi/swag v0.19.2 go: finding k8s.io/code-generator v0.0.0-20181128191024-b1289fc74931 go: finding golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f go: finding golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e go: finding github.com/stretchr/objx v0.2.0 go: finding github.com/prometheus/common v0.2.0 go: finding k8s.io/apiextensions-apiserver v0.0.0-20181126155829-0cd23ebeb688 go: finding cloud.google.com/go v0.37.2 go: finding cloud.google.com/go v0.34.0 go: finding golang.org/x/net v0.0.0-20181114220301-adae6a3d119a go: finding gopkg.in/alecthomas/kingpin.v2 v2.2.6 go: finding github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d go: finding golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5 go: finding github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf go: finding github.com/prometheus/client_golang v0.9.1 go: finding github.com/kr/pty v1.1.5 go: finding github.com/go-kit/kit v0.8.0 go: finding github.com/go-stack/stack v1.8.0 go: finding github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a go: finding github.com/sirupsen/logrus v1.2.0 go: finding github.com/go-logfmt/logfmt v0.3.0 go: finding github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 go: finding golang.org/x/sys v0.0.0-20190412213103-97732733099d go: finding github.com/pkg/errors v0.8.0 go: finding github.com/julienschmidt/httprouter v1.2.0 go: finding github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc go: finding github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223 go: finding golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59 go: finding go.opencensus.io v0.19.2 go: finding golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421 go: finding github.com/google/martian v2.1.0+incompatible go: finding google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19 go: finding github.com/stretchr/objx v0.1.1 go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.1 go: finding github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c go: finding github.com/golang/mock v1.2.0 go: finding google.golang.org/api v0.3.0 go: finding github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024 go: finding github.com/googleapis/gax-go/v2 v2.0.4 go: finding github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57 go: finding golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f go: finding golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2 go: finding golang.org/x/tools v0.0.0-20190312170243-e65039ee4138 go: finding golang.org/x/time v0.0.0-20181108054448-85acf8d2951c go: finding golang.org/x/crypto v0.0.0-20180904163835-0709b304e793 go: finding golang.org/x/build v0.0.0-20190314133821-5284462c4bec go: finding golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 go: finding google.golang.org/api v0.2.0 go: finding github.com/hashicorp/golang-lru v0.5.0 go: finding github.com/apache/thrift v0.12.0 go: finding github.com/openzipkin/zipkin-go v0.1.6 go: finding honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a go: finding github.com/Shopify/sarama v1.19.0 go: finding github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 go: finding github.com/gogo/protobuf v1.2.0 go: finding github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a go: finding github.com/gorilla/mux v1.6.2 go: finding golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b go: finding github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db go: finding github.com/eapache/queue v1.1.0 go: finding github.com/onsi/ginkgo v1.7.0 go: finding github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 go: finding github.com/Shopify/toxiproxy v2.1.4+incompatible go: finding github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f go: finding github.com/eapache/go-resiliency v1.1.0 go: finding google.golang.org/grpc v1.17.0 go: finding github.com/onsi/gomega v1.4.3 go: finding golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3 go: finding github.com/gorilla/context v1.1.1 go: finding github.com/pierrec/lz4 v2.0.5+incompatible go: finding go.opencensus.io v0.18.0 go: finding golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4 go: finding github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1 go: finding google.golang.org/api v0.0.0-20181030000543-1d582fd0359e go: finding github.com/googleapis/gax-go v2.0.0+incompatible go: finding github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d go: finding google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2 go: finding golang.org/x/net v0.0.0-20181029044818-c44066c5c816 go: finding github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 go: finding cloud.google.com/go v0.31.0 go: finding github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625 go: finding github.com/kr/pty v1.1.3 go: finding grpc.go4.org v0.0.0-20170609214715-11d0a25b4919 go: finding golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852 go: finding golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52 go: finding google.golang.org/appengine v1.2.0 go: finding golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16 go: finding github.com/google/go-github v17.0.0+incompatible go: finding google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf go: finding github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 go: finding github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07 go: finding honnef.co/go/tools v0.0.0-20180728063816-88497007e858 go: finding github.com/google/go-querystring v1.0.0 go: finding git.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999 go: finding github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1 go: finding golang.org/x/sys v0.0.0-20181029174526-d69651ed3497 go: finding github.com/gliderlabs/ssh v0.1.1 go: finding github.com/grpc-ecosystem/grpc-gateway v1.5.0 go: finding github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 go: finding github.com/prometheus/client_golang v0.8.0 go: finding google.golang.org/genproto v0.0.0-20180831171423-11092d34479b go: finding go4.org v0.0.0-20180809161055-417644f6feb5 go: finding google.golang.org/grpc v1.14.0 go: finding go.opencensus.io v0.19.1 go: finding github.com/openzipkin/zipkin-go v0.1.1 go: finding github.com/openzipkin/zipkin-go v0.1.3 go: finding golang.org/x/tools v0.0.0-20181219222714-6e267b5cc78e go: finding google.golang.org/genproto v0.0.0-20181219182458-5a97ab628bfb go: finding git.apache.org/thrift.git v0.12.0 go: finding github.com/grpc-ecosystem/grpc-gateway v1.6.2 go: finding golang.org/x/sys v0.0.0-20181218192612-074acd46bca6 go: finding google.golang.org/api v0.0.0-20181220000619-583d854617af go: finding google.golang.org/grpc v1.16.0 go: finding google.golang.org/appengine v1.3.0 go: finding golang.org/x/net v0.0.0-20181106065722-10aee1819953 go: finding honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3 go: finding golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890 go: finding golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1 go: finding golang.org/x/lint v0.0.0-20180702182130-06c8688daad7 go: finding github.com/golang/lint v0.0.0-20180702182130-06c8688daad7 go: finding github.com/google/ko/cmd/ko latest go: finding github.com/google/ko/cmd latest go: finding github.com/google/ko latest go: downloading github.com/google/ko v0.0.0-20190926202802-241d5325690a go: extracting github.com/google/ko v0.0.0-20190926202802-241d5325690a go: finding github.com/google/go-containerregistry v0.0.0-20190926185806-cf66aa2c31a9 go: finding github.com/imdario/mergo v0.3.5 go: finding github.com/spf13/afero v1.2.1 go: finding github.com/spf13/pflag v1.0.5 go: finding k8s.io/apimachinery v0.0.0-20180904193909-def12e63c512 go: finding k8s.io/client-go v8.0.0+incompatible go: finding github.com/mattmoor/dep-notify v0.0.0-20190205035814-a45dec370a17 go: finding github.com/spf13/viper v1.3.2 go: finding github.com/spf13/jwalterweatherman v1.1.0 go: finding github.com/docker/docker v1.4.2-0.20180531152204-71cd53e4a197 go: finding github.com/opencontainers/image-spec v1.0.1 go: finding github.com/Microsoft/go-winio v0.4.14 go: finding github.com/onsi/ginkgo v1.10.1 go: finding github.com/dgrijalva/jwt-go v3.2.0+incompatible go: finding github.com/docker/distribution v2.6.0-rc.1.0.20180327202408-83389a148052+incompatible go: finding github.com/docker/go-units v0.3.3 go: finding github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a go: finding golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a go: finding github.com/coreos/go-etcd v2.0.0+incompatible go: finding github.com/pelletier/go-toml v1.2.0 go: finding github.com/coreos/go-semver v0.2.0 go: finding github.com/Azure/go-autorest v10.15.5+incompatible go: finding github.com/onsi/gomega v1.7.0 go: finding github.com/spf13/afero v1.1.2 go: finding github.com/spf13/jwalterweatherman v1.0.0 go: finding github.com/Azure/azure-sdk-for-go v19.1.1+incompatible go: finding golang.org/x/tools v0.0.0-20190926165942-a8d5d34286bd go: finding golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc go: finding k8s.io/api v0.0.0-20180904230853-4e7be11eab3f go: finding k8s.io/client-go v0.0.0-20180910083459-2cefa64ff137 go: finding github.com/gotestyourself/gotestyourself v2.2.0+incompatible go: finding github.com/stretchr/testify v1.4.0 go: finding github.com/googleapis/gnostic v0.2.2 go: finding honnef.co/go/tools v0.0.1-2019.2.3 go: finding github.com/sirupsen/logrus v1.4.1 go: finding github.com/docker/go-connections v0.4.0 go: finding cloud.google.com/go v0.25.0 go: finding github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be go: finding github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 go: finding github.com/coreos/etcd v3.3.10+incompatible go: finding golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e go: finding github.com/google/renameio v0.1.0 go: finding golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b go: finding github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 go: finding github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 go: finding golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac go: finding github.com/evanphx/json-patch v4.2.0+incompatible go: finding github.com/spf13/cobra v0.0.5 go: finding github.com/mitchellh/mapstructure v1.1.2 go: finding github.com/magiconair/properties v1.8.0 go: finding golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 go: finding k8s.io/kubernetes v1.11.10 go: finding github.com/hashicorp/hcl v1.0.0 go: finding github.com/mitchellh/go-homedir v1.1.0 go: finding github.com/spf13/cast v1.3.0 go: finding github.com/docker/cli v0.0.0-20190925022749-754388324470 go: finding golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529 go: finding github.com/cpuguy83/go-md2man v1.0.10 go: finding golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 go: finding github.com/aws/aws-sdk-go v1.15.90 go: finding github.com/opencontainers/go-digest v1.0.0-rc1 go: finding github.com/docker/docker-credential-helpers v0.6.3 go: finding gotest.tools v2.2.0+incompatible go: finding golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac go: finding golang.org/x/net v0.0.0-20190620200207-3b0461eec859 go: finding github.com/russross/blackfriday v1.5.2 go: finding github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 go: downloading github.com/mattmoor/dep-notify v0.0.0-20190205035814-a45dec370a17 go: downloading k8s.io/kubernetes v1.11.10 go: downloading github.com/spf13/cobra v0.0.5 go: downloading github.com/google/go-containerregistry v0.0.0-20190926185806-cf66aa2c31a9 go: downloading github.com/spf13/viper v1.3.2 go: downloading github.com/spf13/pflag v1.0.5 go: extracting github.com/spf13/viper v1.3.2 go: downloading github.com/spf13/afero v1.2.2 go: downloading github.com/pelletier/go-toml v1.2.0 go: extracting github.com/spf13/cobra v0.0.5 go: downloading github.com/spf13/cast v1.3.0 go: downloading github.com/hashicorp/hcl v1.0.0 go: extracting github.com/spf13/pflag v1.0.5 go: extracting github.com/spf13/cast v1.3.0 go: extracting github.com/spf13/afero v1.2.2 go: extracting github.com/pelletier/go-toml v1.2.0 go: downloading github.com/mitchellh/mapstructure v1.1.2 go: extracting github.com/mattmoor/dep-notify v0.0.0-20190205035814-a45dec370a17 go: extracting github.com/hashicorp/hcl v1.0.0 go: downloading github.com/magiconair/properties v1.8.0 go: extracting github.com/mitchellh/mapstructure v1.1.2 go: downloading golang.org/x/tools v0.0.0-20190926165942-a8d5d34286bd go: extracting github.com/magiconair/properties v1.8.0 go: downloading k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc go: extracting k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc go: downloading github.com/spf13/jwalterweatherman v1.1.0 go: downloading github.com/fsnotify/fsnotify v1.4.7 go: extracting github.com/spf13/jwalterweatherman v1.1.0 go: extracting github.com/fsnotify/fsnotify v1.4.7 go: extracting github.com/google/go-containerregistry v0.0.0-20190926185806-cf66aa2c31a9 go: downloading golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f go: downloading github.com/pkg/errors v0.8.1 go: downloading github.com/docker/cli v0.0.0-20190925022749-754388324470 go: downloading github.com/docker/docker v1.4.2-0.20180531152204-71cd53e4a197 go: downloading golang.org/x/net v0.0.0-20190620200207-3b0461eec859 go: extracting github.com/pkg/errors v0.8.1 go: extracting golang.org/x/tools v0.0.0-20190926165942-a8d5d34286bd go: extracting golang.org/x/net v0.0.0-20190620200207-3b0461eec859 go: extracting golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f go: extracting github.com/docker/cli v0.0.0-20190925022749-754388324470 go: extracting github.com/docker/docker v1.4.2-0.20180531152204-71cd53e4a197 go: downloading github.com/docker/docker-credential-helpers v0.6.3 go: extracting github.com/docker/docker-credential-helpers v0.6.3 go: downloading github.com/docker/go-units v0.3.3 go: downloading github.com/docker/go-connections v0.4.0 go: downloading github.com/opencontainers/image-spec v1.0.1 go: downloading github.com/opencontainers/go-digest v1.0.0-rc1 go: downloading github.com/docker/distribution v2.6.0-rc.1.0.20180327202408-83389a148052+incompatible go: extracting github.com/docker/go-units v0.3.3 go: extracting github.com/docker/go-connections v0.4.0 go: extracting github.com/opencontainers/go-digest v1.0.0-rc1 go: extracting github.com/opencontainers/image-spec v1.0.1 go: extracting github.com/docker/distribution v2.6.0-rc.1.0.20180327202408-83389a148052+incompatible go: extracting k8s.io/kubernetes v1.11.10 go: downloading k8s.io/client-go v8.0.0+incompatible go: downloading k8s.io/api v0.0.0-20190226173710-145d52631d00 go: downloading github.com/json-iterator/go v1.1.6 go: downloading github.com/evanphx/json-patch v4.2.0+incompatible go: extracting github.com/evanphx/json-patch v4.2.0+incompatible go: downloading github.com/modern-go/reflect2 v1.0.1 go: extracting github.com/json-iterator/go v1.1.6 go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go: extracting github.com/modern-go/reflect2 v1.0.1 go: extracting k8s.io/api v0.0.0-20190226173710-145d52631d00 go: extracting k8s.io/client-go v8.0.0+incompatible go: downloading github.com/peterbourgon/diskv v2.0.1+incompatible go: downloading github.com/googleapis/gnostic v0.2.2 go: downloading github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc go: downloading github.com/imdario/mergo v0.3.7 go: downloading golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 go: extracting github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc go: extracting github.com/peterbourgon/diskv v2.0.1+incompatible go: downloading github.com/google/btree v1.0.0 go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 go: extracting github.com/imdario/mergo v0.3.7 go: extracting github.com/google/btree v1.0.0 go: extracting github.com/googleapis/gnostic v0.2.2 go: extracting golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 # k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1 ../../../../pkg/mod/k8s.io/client-go@v8.0.0+incompatible/pkg/apis/clientauthentication/v1alpha1/zz_generated.conversion.go:39:15: scheme.AddGeneratedConversionFuncs undefined (type *runtime.Scheme has no field or method AddGeneratedConversionFuncs) # k8s.io/client-go/pkg/apis/clientauthentication/v1beta1 ../../../../pkg/mod/k8s.io/client-go@v8.0.0+incompatible/pkg/apis/clientauthentication/v1beta1/zz_generated.conversion.go:39:15: scheme.AddGeneratedConversionFuncs undefined (type *runtime.Scheme has no field or method AddGeneratedConversionFuncs) This is probably https://github.com/google/go-containerregistry/issues/496 Fixing it involves forking parts of kubernetes or splitting off parts of it into sub-repositories, which is going to be a bit of a pain. I suspect there's a workaround but I'm not too familiar with go modules. As ko gets used to build stuff like knative would be nice to have tagged released ko binaries available? Have you try to turn off the GO111MODULE? Yes, that works if not set GO111MODULE. @vincent-pli
gharchive/issue
2019-09-29T14:16:58
2025-04-01T06:44:21.486382
{ "authors": [ "jinchihe", "jonjohnsonjr", "rakelkar", "vincent-pli" ], "repo": "google/ko", "url": "https://github.com/google/ko/issues/92", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
665833449
updating the deployment version in the README.md apiVersion for deployment in the README.md is old and now updated for apps/v1 Closing in favor of https://github.com/google/ko/pull/198
gharchive/pull-request
2020-07-26T18:17:14
2025-04-01T06:44:21.489501
{ "authors": [ "cnb0", "jonjohnsonjr" ], "repo": "google/ko", "url": "https://github.com/google/ko/pull/178", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
335616323
Implemented fix for broken SVG example image links [phab:D1221] Created by craigbarber at 2017-01-05 22:38:17: Related bug: #1588 Added some logic to check for the case when the trailing "/" is missing from the schema path, (which causes this issue to manifest), and redirects the user to the properly formatted URL path. schroederc commented inline (context lost during migration) at 2017-01-05 23:36:11: There shouldn't ever be a r.URL.Path, right? shahms accepted this revision at 2017-01-05 23:36:18 craigbarber wrote at 2017-01-06 17:29:27: removed unnecessary URL path concatentation schroederc accepted this revision at 2017-01-06 17:34:18 craigbarber closed via commit 88fd8ed97075caa7487e041c8158d0a8779ca7ff at 2017-01-06 17:56:54
gharchive/issue
2018-06-26T00:37:24
2025-04-01T06:44:21.493496
{ "authors": [ "kythe" ], "repo": "google/kythe", "url": "https://github.com/google/kythe/issues/1597", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
335655569
Go: Clean up handling of whitespace in types and variable markup. [phab:D2239] Created by fromberger at 2018-04-03 20:49:52: The rendering logic doesn't correctly handle the embedded spaces we were using between variables or fields and their names, and amid function type signatures. Lift the space into the enclosing container, which works better. zarko accepted this revision at 2018-04-03 20:53:32 fromberger closed via commit b3295c41c2a9e54e41272b69c0debb9331f4bf1e at 2018-04-03 20:55:03
gharchive/issue
2018-06-26T04:32:45
2025-04-01T06:44:21.495822
{ "authors": [ "kythe" ], "repo": "google/kythe", "url": "https://github.com/google/kythe/issues/2703", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
335572929
Scan asciidoc output for errors [phab:D299] Created by zarko at 2015-05-29 23:58:50: We should fail asciidoc targets if they invoke filters that fail. This will make building the schema document fail if one of the examples doesn't verify. schroederc accepted this revision at 2015-06-01 16:01:40 zarko closed via commit 672e76b77df6a91073df1611c58bda57024765d6 at 2015-06-01 16:52:49
gharchive/issue
2018-06-25T21:23:07
2025-04-01T06:44:21.498105
{ "authors": [ "kythe" ], "repo": "google/kythe", "url": "https://github.com/google/kythe/issues/519", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1049441311
StyleGAN2 What does 'Third_party' refer to in the stylegan2 implementation? Because stylegan2 is a third_party to our project.
gharchive/issue
2021-11-10T06:14:08
2025-04-01T06:44:21.498972
{ "authors": [ "cuikaiwen18", "roadjiang" ], "repo": "google/lecam-gan", "url": "https://github.com/google/lecam-gan/issues/10", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
1915802134
[Feature Request] Additional frame sizes This file was encoded with some kind of LC3-based codec and appears to have 5 ms frame size (but original library seems to also support 2.5 ms). It's just a simple sine wave. Here's the program I've tried for decoding (each frame is represented as [length][frame], length is uint32_t little-endian): #include <assert.h> #include <errno.h> #include <float.h> #include <math.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <lc3.h> #include "sndfile.h" SNDFILE *openAudioFile(const char *fileName, int freq, int channels) { SF_INFO sfinfo = { .samplerate = freq, .channels = channels, .format = SF_FORMAT_WAV | SF_FORMAT_PCM_24, }; printf("opening \"%s\" for writing ...\n", fileName); printf("sampling frequency: %d\n", freq); printf("channel count: %d\n", channels); SNDFILE *out = sf_open(fileName, SFM_WRITE, &sfinfo); if (out == NULL) { printf("can't open output: %s\n", sf_strerror(NULL)); return NULL; } return out; } #define BUFFER_SIZE (680 * 2 * 2) #define PCM_BUFFER_SIZE (256 * 2 * 2) int main(int argc, char *argv[]) { const char *inputFile = "data.bin"; const char *audioFile = "decoded.wav"; if (argc > 2) { audioFile = argv[2]; } if (argc > 1) { inputFile = argv[1]; } printf("opening \"%s\" ...\n", inputFile); lc3_decoder_t dec[2]; int frame_us = 5000; int srate_hz = 48000; for (int ich = 0; ich < 2; ich++) { dec[ich] = lc3_setup_decoder(frame_us, srate_hz, 0, malloc(lc3_decoder_size(frame_us, srate_hz))); } int pcm_samples = lc3_frame_samples(frame_us, srate_hz); FILE *in = fopen(inputFile, "rb"); if (in == NULL) { perror("can't open stream file"); return EXIT_FAILURE; } SNDFILE *out = openAudioFile(audioFile, srate_hz, 2); uint8_t buf[BUFFER_SIZE]; uint8_t *ptr = NULL; int32_t pcm[PCM_BUFFER_SIZE] = {0}; while (1) { uint32_t size = 0; if (fread(&size, sizeof(size), 1, in) != 1) { printf("End of file!\n"); break; } if (fread(buf, 1, size, in) != size) { printf("Not enough data (corrupted packet)!\n"); break; } int frame_bytes = size / 2; for (int ich = 0; ich < 2; ich++) { lc3_decode(dec[ich], buf + 2 + ich * frame_bytes, frame_bytes, // +2 is for bitrate, which seems to prepend frame. LC3_PCM_FORMAT_S24, pcm + ich * 4, 2); } sf_writef_int(out, pcm, pcm_samples); } printf("Done!\n"); sf_close(out); fclose(in); return EXIT_SUCCESS; } The following patch was used to add 2.5 and 5 ms frames: diff --git a/include/lc3_private.h b/include/lc3_private.h index c4d6703..58b0d7c 100644 --- a/include/lc3_private.h +++ b/include/lc3_private.h @@ -45,10 +45,12 @@ /** - * Frame duration 7.5ms or 10ms + * Frame duration 2.5ms, 5ms, 7.5ms or 10ms */ enum lc3_dt { + LC3_DT_2M5, + LC3_DT_05M, LC3_DT_7M5, LC3_DT_10M, diff --git a/src/common.h b/src/common.h index d60ad9e..a023328 100644 --- a/src/common.h +++ b/src/common.h @@ -87,7 +87,7 @@ */ #define LC3_DT_US(dt) \ - ( (3 + (dt)) * 2500 ) + ( (1 + (dt)) * 2500 ) #define LC3_SRATE_KHZ(sr) \ ( (1 + (sr) + ((sr) == LC3_SRATE_48K)) * 8 ) @@ -101,14 +101,14 @@ */ #define LC3_NS(dt, sr) \ - ( 20 * (3 + (dt)) * (1 + (sr) + ((sr) == LC3_SRATE_48K)) ) + ( 20 * (1 + (dt)) * (1 + (sr) + ((sr) == LC3_SRATE_48K)) ) #define LC3_ND(dt, sr) \ ( (dt) == LC3_DT_7M5 ? 23 * LC3_NS(dt, sr) / 30 \ : 5 * LC3_NS(dt, sr) / 8 ) #define LC3_NE(dt, sr) \ - ( 20 * (3 + (dt)) * (1 + (sr)) ) + ( 20 * (1 + (dt)) * (1 + (sr)) ) #define LC3_MAX_NS \ LC3_NS(LC3_DT_10M, LC3_SRATE_48K) @@ -120,7 +120,7 @@ ( (5 * LC3_SRATE_KHZ(sr)) / 4 ) #define LC3_NH(dt, sr) \ - ( ((3 - dt) + 1) * LC3_NS(dt, sr) ) + ( ((3 - dt) + 3 + ((dt) == LC3_DT_05M)) * (((dt) == LC3_DT_2M5) + 1) * LC3_NS(dt, sr) ) /** diff --git a/src/lc3.c b/src/lc3.c index 6f54300..0f6dca7 100644 --- a/src/lc3.c +++ b/src/lc3.c @@ -57,7 +57,9 @@ struct side_data { */ static enum lc3_dt resolve_dt(int us) { - return us == 7500 ? LC3_DT_7M5 : + return us == 2500 ? LC3_DT_10M : + us == 5000 ? LC3_DT_05M : + us == 7500 ? LC3_DT_7M5 : us == 10000 ? LC3_DT_10M : LC3_NUM_DT; } Apparently, this isn't enough, as library segfaults in spectral_shaping Is there some way to make liblc3 compatible with this format? Ideally it would be able to both encode and decode, but encoding only is good enough. Yes, sure, it's not enough; the dt value addresses many tables, and it needs to add some MDCT sizes at least. The 2.5ms and 5ms frames sizes are not LC3, but LC3+. There is a legal difference. LC3 is free of use in the scope of Bluetooth, LC3+ not. The features of LC3+ can be included, but should appears behind compilation option, as there is legal restriction on usage of it. Thanks, I'll look into MDCT sizes. Actually, LC3plus HR encoding-only is free as well, but ETSI source code has very problematic license. So having another implementation would be a great thing. There is a legal difference Because of 2 numbers? This is insane behind compilation option That's a great solution, it'll do. I've added few table entries, mostly reused existing ones for 5 ms frame size (which is what this LC3plus-based codec uses). It seems not to segfault anymore, but produces incorrect output: spectral_shaping required the following 'hack' to not segfault (in addition to properly filling up the lc3_band_lim table) diff --git a/src/sns.c b/src/sns.c index 56a893c..113b872 100644 --- a/src/sns.c +++ b/src/sns.c @@ -694,8 +694,10 @@ LC3_HOT static void spectral_shaping(enum lc3_dt dt, enum lc3_srate sr, scf[62] = s1 + 0.125f * (s1 - s0); scf[63] = s1 + 0.375f * (s1 - s0); - int nb = LC3_MIN(lc3_band_lim[dt][sr][LC3_NUM_BANDS], LC3_NUM_BANDS); - int n2 = LC3_NUM_BANDS - nb; + int num_bands = lc3_bands_number[dt][sr]; + + int nb = LC3_MIN(lc3_band_lim[dt][sr][num_bands], num_bands); + int n2 = num_bands - nb; for (int i2 = 0; i2 < n2; i2++) scf[i2] = 0.5f * (scf[2*i2] + scf[2*i2+1]); This is probably incorrect (especially for 2.5 ms frame, but it's optional anyway), but I have no idea what needs to be done here. @asoulier Should I make a fork and open a draft PR to better track the progress while this is WIP?
gharchive/issue
2023-09-27T15:09:26
2025-04-01T06:44:21.507307
{ "authors": [ "anonymix007", "asoulier" ], "repo": "google/liblc3", "url": "https://github.com/google/liblc3/issues/37", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
168888447
Buttons use only before psuedo Make buttons use only the before pseudo. This allows tooltips to have after to themselves for them to inter-operate. 💎 LGTM besides that one comment. LGTM other than @traviskaufman's comment. Fixed the opacity issue. Once CI passes since everything else is un-changed I'll go ahead and merge. So, PTAL again just to verify I'm not insane. I saw we had a duplicate selector fixing the linting issue so I compressed it. Shouldn't cause any problems but.... this is CSS. 💎 You are, indeed, not insane :) LGTM!
gharchive/pull-request
2016-08-02T13:43:57
2025-04-01T06:44:21.510002
{ "authors": [ "Garbee", "sgomes", "traviskaufman" ], "repo": "google/material-design-lite", "url": "https://github.com/google/material-design-lite/pull/4628", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
2738758416
xgettext: Avoid collisions when splitting .pot files Hey, I've been looking into #185 and its predecessor #67. While thinking of ways to implement the "reconstruction" of the catalog from smaller pieces, I noticed that the code doesn't handle well books where several part titles and/or chapters have the same name (or, more precisely, are equivalent up to slugging). For example, consider the following SUMMARY.md: # Summary # Part Foo [Chapter 1](src/chapter-1.md) # Part Bar [Chapter 2](src/chapter-2.md) # Part Foo [Chapter 3](src/chapter-3.md) With a depth of 1, the preprocessor generates two POT files foo.pot and bar.pot (beside summary.pot), and the contents of the two Part Foo's (including Chapters 1 and 3) are merged. Since those are unrelated, if not for having the same title, the expected behavior would be to put them in separate files. Note that the titles don't have to be exactly equal, for example the same would happen with Part Foo 1 and Part Foo 2 (since numbers are discarded). This PR should fix this issue. I hope doc comments are explicative enough, otherwise feel free to request clarifications. :) Ah, the PR is somwhat large so let me know if you want me to split it into 2-3 commits.
gharchive/pull-request
2024-12-13T16:27:48
2025-04-01T06:44:21.512761
{ "authors": [ "cip999" ], "repo": "google/mdbook-i18n-helpers", "url": "https://github.com/google/mdbook-i18n-helpers/pull/243", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
279184118
Implement buffer copies and transitions PTAL Thanks for the review. I will rebase this on top of the Vulkan CI once it is landed. PTAL again, I added a commit at the beginning of the stack that should fix the compile error on 32bit. Needs reformat though Merging manually, clang-format is having a formatting loop.
gharchive/pull-request
2017-12-04T23:07:00
2025-04-01T06:44:21.523684
{ "authors": [ "Kangz", "kainino0x" ], "repo": "google/nxt-standalone", "url": "https://github.com/google/nxt-standalone/pull/146", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
646924238
CP-SAT solver doesn't find a solution when CpModelPresolve is on What version of OR-tools and what language are you using? Version: v7.7 Language: Java Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi) Solver: CP-SAT What operating system (Linux, Windows, ...) and version? OS: Linux Ubuntu 20.04 The test below runs a scenario, first with CpModel presolve - no solution found After that with pre-solve turned off and a solution is found. In older versions V7.5, V7.6 the first scenario runs until out of memory error. If some of the constraints are removed a solution with the pre-solve is found. Steps to reproduce the behavior: Run the test below import com.google.ortools.Loader; import com.google.ortools.sat.CpModel; import com.google.ortools.sat.CpSolver; import com.google.ortools.sat.CpSolverStatus; import com.google.ortools.sat.DecisionStrategyProto.DomainReductionStrategy; import com.google.ortools.sat.DecisionStrategyProto.VariableSelectionStrategy; import com.google.ortools.sat.IntVar; import com.google.ortools.sat.LinearExpr; import com.google.ortools.sat.Literal; import com.google.ortools.util.Domain; public class CPSATBugTest { static { Loader.loadNativeLibraries(); } public static void main(String[] args) { final CPSATBugTest bugTest = new CPSATBugTest(); CpModel model = bugTest.buildModel(); CpSolver cpSolver = new CpSolver(); cpSolver.getParameters().setCpModelPresolve(true); CpSolverStatus status = cpSolver.solve(model); System.out.println("with pre-solve :" + status); cpSolver.getParameters().setCpModelPresolve(false); status = cpSolver.solve(model); System.out.println("without pre-solve :" + status); } private static final class Var { IntVar v; IntVar p; // partial IntVar f; // full } private Var createVarAndBind(CpModel model, long full, String name) { Var v = new Var(); v.v = model.newIntVar(0, full, name); v.p = model.newBoolVar(name + "p"); v.f = model.newBoolVar(name + "f"); addFullBind(model, v.v, full, v.f); addPartialBind(model, v.v, full, v.p); return v; } private CpModel buildModel() { CpModel model = new CpModel(); IntVar z_0 = model.newConstant(0); final long v1a = 8000000000l; final long v2a = 3083621125l; final long v3a = 8000000000l; final long v5a = 17958382640l; Var v_1 = createVarAndBind(model, v1a, "1"); Var v_2 = createVarAndBind(model, v2a, "2"); Var v_3 = createVarAndBind(model, v3a, "3"); Var v_5 = createVarAndBind(model, v5a, "5"); model.addMinEquality(z_0, new IntVar[]{v_1.v, v_2.v}); model.addMinEquality(z_0, new IntVar[]{v_1.v, v_3.v}); model.addMinEquality(z_0, new IntVar[]{v_2.v, v_3.v}); model.addGreaterOrEqual(v_5.v, 1); final LinearExpr sum2 = LinearExpr.sum(new IntVar[]{v_1.v, v_2.v, v_3.v}); model.addGreaterOrEqual(sum2, 1); model.addEquality(v_5.v, sum2); model.addBoolOr(new Literal[]{v_1.f, v_2.f, v_3.f, v_5.f}); model.maximize(LinearExpr.scalProd(new IntVar[]{v_5.v, v_1.p, v_2.p, v_3.p, v_5.p}, new long[]{10, -1, -1, -1, -1})); model.addDecisionStrategy(new IntVar[]{v_1.v, v_3.v, v_5.v}, VariableSelectionStrategy.CHOOSE_MAX_DOMAIN_SIZE, DomainReductionStrategy.SELECT_MAX_VALUE); return model; } private void addFullBind(CpModel model, IntVar var, long fullVal, IntVar isFull) { model.addEquality(var, fullVal).onlyEnforceIf(isFull); model.addDifferent(var, fullVal).onlyEnforceIf(isFull.not()); } private void addPartialBind(CpModel model, IntVar var, long fullVal, IntVar isPart) { model.addLinearExpressionInDomain(var, new Domain(1, fullVal - 1)).onlyEnforceIf(isPart); model.addLinearExpressionInDomain(var, Domain.fromValues(new long[]{0, fullVal})).onlyEnforceIf(isPart.not()); } } Thanks. We will have a look. Laurent Perron | Operations Research | lperron@google.com | (33) 1 42 68 53 00 Le dim. 28 juin 2020 à 15:44, samuelo notifications@github.com a écrit : Version: v7.7 Language: Java Solver: CP-SAT OS: Linux The test below runs a solve-able scenario, first with CpModel presolve - no solution found After that with pre-solve turned off and a solution is found. In older versions 7.5, 7.6 the first scenario runs until out of memory error. If some of the constraints are removed a solution with the pre-solve. Steps to reproduce the behavior: Run the test below import com.google.ortools.Loader;import com.google.ortools.sat.CpModel;import com.google.ortools.sat.CpSolver;import com.google.ortools.sat.CpSolverStatus;import com.google.ortools.sat.DecisionStrategyProto.DomainReductionStrategy;import com.google.ortools.sat.DecisionStrategyProto.VariableSelectionStrategy;import com.google.ortools.sat.IntVar;import com.google.ortools.sat.LinearExpr;import com.google.ortools.sat.Literal;import com.google.ortools.util.Domain; public class CPSATBugTest { static { Loader.loadNativeLibraries(); } public static void main(String[] args) { final CPSATBugTest bugTest = new CPSATBugTest(); CpModel model = bugTest.buildModel(); CpSolver cpSolver = new CpSolver(); cpSolver.getParameters().setMaxTimeInSeconds(20); cpSolver.getParameters().setNumSearchWorkers(4); cpSolver.getParameters().setMaxMemoryInMb(1000); cpSolver.getParameters().setCpModelPresolve(true); CpSolverStatus status = cpSolver.solve(model); System.out.println("with pre-solve :" + status); cpSolver.getParameters().setCpModelPresolve(false); status = cpSolver.solve(model); System.out.println("without pre-solve :" + status); } private static final class Var { IntVar v; IntVar p; // partial IntVar f; // full } private Var createVarAndBind(CpModel model, long full, String name) { Var v = new Var(); v.v = model.newIntVar(0, full, name); v.p = model.newBoolVar(name + "p"); v.f = model.newBoolVar(name + "f"); addFullBind(model, v.v, full, v.f); addPartialBind(model, v.v, full, v.p); return v; } private CpModel buildModel() { CpModel model = new CpModel(); IntVar z_0 = model.newConstant(0); final long v1a = 8000000000l; final long v2a = 3083621125l; final long v3a = 8000000000l; final long v5a = 17958382640l; Var v_1 = createVarAndBind(model, v1a, "1"); Var v_2 = createVarAndBind(model, v2a, "2"); Var v_3 = createVarAndBind(model, v3a, "3"); Var v_5 = createVarAndBind(model, v5a, "5"); model.addMinEquality(z_0, new IntVar[]{v_1.v, v_2.v}); model.addMinEquality(z_0, new IntVar[]{v_1.v, v_3.v}); model.addMinEquality(z_0, new IntVar[]{v_2.v, v_3.v}); model.addGreaterOrEqual(v_5.v, 1); final LinearExpr sum2 = LinearExpr.sum(new IntVar[]{v_1.v, v_2.v, v_3.v}); model.addGreaterOrEqual(sum2, 1); model.addEquality(v_5.v, sum2); model.addBoolOr(new Literal[]{v_1.f, v_2.f, v_3.f, v_5.f}); model.maximize(LinearExpr.scalProd(new IntVar[]{v_5.v, v_1.p, v_2.p, v_3.p, v_5.p}, new long[]{10, -1, -1, -1, -1})); model.addDecisionStrategy(new IntVar[]{v_1.v, v_3.v, v_5.v}, VariableSelectionStrategy.CHOOSE_MAX_DOMAIN_SIZE, DomainReductionStrategy.SELECT_MAX_VALUE); return model; } private void addFullBind(CpModel model, IntVar var, long fullVal, IntVar isFull) { model.addEquality(var, fullVal).onlyEnforceIf(isFull); model.addDifferent(var, fullVal).onlyEnforceIf(isFull.not()); } private void addPartialBind(CpModel model, IntVar var, long fullVal, IntVar isPart) { model.addLinearExpressionInDomain(var, new Domain(1, fullVal - 1)).onlyEnforceIf(isPart); model.addLinearExpressionInDomain(var, Domain.fromValues(new long[]{0, fullVal})).onlyEnforceIf(isPart.not()); } } — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/google/or-tools/issues/2086, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACUPL3JCWYHAHJ442LCCVGTRY5CNBANCNFSM4OKRFJ5A . Thanks for the report. It was an bad int-int64 cast in our code.
gharchive/issue
2020-06-28T13:44:22
2025-04-01T06:44:21.535610
{ "authors": [ "lperron", "samuelo" ], "repo": "google/or-tools", "url": "https://github.com/google/or-tools/issues/2086", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
960017039
VRPTW waiting at every node, departure time Hello, We have a case where we need to be waiting at every node X minutes, and it is different for each node. Currently we get the answer as following: solution.min(timeVar), solution.max(timeVar) Which is the time window's min and max value to get to this node. However we get the same value for all our nodes, meaning that a 'courier' gets to the node and leaves immediately which is wrong, since he has to actually deliver the goods. I've seen that you can modify the distances between nodes by adding the service time there, but still how do you get a proper departure time? Much thanks! Basically, you have to recompute it. Solver will only compute/need arrival time and the transit function should contains the service time + the travel time. When displaying the solution, in your function simply do some post processing to calculate the service time and then departure time. So basically, if we have our time matrix and we do for each node: Calculate times: return routing.registerTransitCallback((long fromIndex, long toIndex) -> { // Convert from routing variable Index to user NodeIndex. int fromNode = manager.indexToNode(fromIndex); int toNode = manager.indexToNode(toIndex); return serviceTime[fromNode] + timeMatrix[fromNode][toNode]; }); And at the end: Arrival : solution.min(timeVar), Departure : serviceTime[index] + solution.max(timeVar) Would that be correct? node = manager.indexToNode(index); Arrival = solution.min(timeVar), Departure = serviceTime[node] + solution.min(timeVar) Thanks for the help @Mizux! Will open a new issue if anything arises.
gharchive/issue
2021-08-04T07:49:01
2025-04-01T06:44:21.540524
{ "authors": [ "Mizux", "despondency" ], "repo": "google/or-tools", "url": "https://github.com/google/or-tools/issues/2716", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1089727462
JVM crashes with Illegal threadstate encountered: 4 What version of OR-Tools and what language are you using? Version: ortools-java-8.2.8710.jar Language: Java Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi) Routing Solver What operating system (Linux, Windows, ...) and version? Ubuntu - 16.04 What did you do? We are solving CVRP with time window, capacity constraint ad pickup and deliveries constraint. It is running in production, but intermittently JVM crashes What did you expect to see I did not expect JVM to crash What did you see instead? JVM crashed Make sure you include information that can help us debug (full error message, model Proto). # A fatal error has been detected by the Java Runtime Environment: # # Internal Error (safepoint.cpp:712), pid=17315, tid=0x00007fa6ee74f700 # fatal error: Illegal threadstate encountered: 4 # # JRE version: Java(TM) SE Runtime Environment (8.0_161-b12) (build 1.8.0_161-b12) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.161-b12 mixed mode linux-amd64 compressed oops) # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x00007fa708108000): JavaThread "Finalizer" daemon [_thread_in_native, id=17321, stack(0x00007fa6ee64f000,0x00007fa6ee750000)] Stack: [0x00007fa6ee64f000,0x00007fa6ee750000], sp=0x00007fa6ee74d9e0, free space=1018k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0xacf94a] VMError::report_and_die()+0x2ba V [libjvm.so+0x5000c9] report_fatal(char const*, int, char const*)+0x59 V [libjvm.so+0x9c4aa2] SafepointSynchronize::block(JavaThread*)+0xb2 V [libjvm.so+0xa7a00d] JavaThread::check_safepoint_and_suspend_for_native_trans(JavaThread*)+0x29d V [libjvm.so+0x6ed243] jni_DeleteGlobalRef+0x93 C [libjniortools.so+0x10e68e] std::_Sp_counted_ptr_inplace<GlobalRefGuard, std::allocator<GlobalRefGuard>, (__gnu_cxx::_Lock_policy)2>::_M_dispose()+0x18 Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j com.google.ortools.constraintsolver.mainJNI.delete_RoutingModel(J)V+0 j com.google.ortools.constraintsolver.RoutingModel.delete()V+25 j com.google.ortools.constraintsolver.RoutingModel.finalize()V+1 J 22930% C2 java.lang.ref.Finalizer$FinalizerThread.run()V (55 bytes) @ 0x00007fa6fa028f80 [0x00007fa6fa028cc0+0x2c0] v ~StubRoutines::call_stub JVM crash log: jvm_crash.txt Could you test with the v9.2 instead ? Closing. Reopen if it is not fixed in 9.2 @Mizux Thanks, for quick response. I will upgrade and check
gharchive/issue
2021-12-28T09:11:47
2025-04-01T06:44:21.545739
{ "authors": [ "Mizux", "lperron", "shahbaz-dev" ], "repo": "google/or-tools", "url": "https://github.com/google/or-tools/issues/3044", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1283433290
ModuleUpdateEvents consider multiple executable sections/maps UprobesUnwindingVisitor uses PERF_RECORD_MMAP events to keep unwindstack::Maps up to date for unwinding, but also to send ModuleUpdateEvents to the client. Before, it was assuming a one-to-one relationship between executable maps and modules. In particular for games running under Wine, we have seen that this is sometimes not the case, both for ELF files (even with a single executable loadable segment) and for PEs (and PEs can also simply have multiple executable sections). Now, we try to send ModuleUpdateEvents with an address range that covers all the executable mappings for the same file, similarly to https://github.com/google/orbit/pull/3786. In order to do this, we have to also look at the existing maps around the new one. And as usual, for PEs we also have to consider executable sections mapped into anonymous executable maps, for which we take advantage of the existing logic in unwindstack::MapInfo::GetFileMemoryFromAnonExecMapIfPeCoffTextSection, as was already the case after https://github.com/google/orbit/pull/3667. Bug: http://b/235481314 Bug: http://b/235480245 Test: Extend UprobesUnwindingVisitorMmapTest. Tried by capturing unaligned triangle.exe from the beginning by setting LD_PRELOAD=libdebugger_preload.so. Verified that the callstacks make sense. This depends on the changes in https://github.com/google/orbit/pull/3807 hence why some tests fail.
gharchive/pull-request
2022-06-24T08:29:38
2025-04-01T06:44:21.551486
{ "authors": [ "dpallotti" ], "repo": "google/orbit", "url": "https://github.com/google/orbit/pull/3827", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
2326796358
Select a version that actually exists The version of zlib (in the purl) seems to be randomly selected for testing purposes (1.2.10-r2), as it doesn't match the rest of the SBOM. The problem is that a particular version never existed, and only showed up because it was incorrectly enumerated in osv.dev. Now that the version enumeration has been fixed it causes different results to show up in the testing snapshot. This PR makes all the version numbers for zlib in the SBOM consistent, and sets it to 1.2.10-r0 which actually exists. (And the snapshot will not change when the fixed alpine enumeration moves to production.) Codecov Report All modified and coverable lines are covered by tests :white_check_mark: Project coverage is 65.48%. Comparing base (854cb01) to head (17ba466). Additional details and impacted files @@ Coverage Diff @@ ## main #1012 +/- ## ========================================== + Coverage 64.96% 65.48% +0.52% ========================================== Files 149 149 Lines 12259 9518 -2741 ========================================== - Hits 7964 6233 -1731 + Misses 3844 2831 -1013 - Partials 451 454 +3 :umbrella: View full report in Codecov by Sentry. :loudspeaker: Have feedback on the report? Share it here.
gharchive/pull-request
2024-05-31T01:21:06
2025-04-01T06:44:21.595451
{ "authors": [ "another-rex", "codecov-commenter" ], "repo": "google/osv-scanner", "url": "https://github.com/google/osv-scanner/pull/1012", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
75526080
[PWS] Added Physical Web User Agent Some websites rely on the "Mozilla5/0" part of the User-Agent string to serve web content. Let's add a Physical Web User Agent to fix that issue. Moreover, this could lead websites in general to serve specific content (small and fast) for those who examine HTTP Headers User-Agent. What do you think? LGTM Can we update url-caster.appspot.com and url-caster-dev.appspot.com as well with this change? Guys I'm not sold on this change. Specifically, there will be many user agents acting as the physical web metadata resolver, and I'm not sure we should be making the promise that this will be the user agent to web servers. Imagine someone wants to make an app that resolves from the phone directly, doesn't want to use a middleman -- should they get different results? Or a company wants to make a private proxy for their employees, or whatever.. ..I think instead we may in the future support a custom data type (perhaps), and signal that fact by passing the Accept header, so that the web server could return a custom manifest or something. Speculative at this point, but just throwing this out there. @mmocny feel free to revert if you're not convinced by this change. Reverted in 293a902536e9f7a8038232396d0c06a960fa0f45. Sorry I just want to consider the implications before committing to this. How about we remove the (compatible; PhysicalWeb/1.0; +http://physical-web.org) part of the Physical Web Service User Agent and simply leave Mozilla/5.0 part so that servers that rely on it to show web content to their users could still be parsed. An example of this is french ISP: http://www.orange.fr Sure, thats a fair initial value, we can iterate from there. On Mon, May 18, 2015 at 9:59 AM François Beaufort notifications@github.com wrote: How about we remove the (compatible; PhysicalWeb/1.0; + http://physical-web.org) part of the Physical Web Service User Agent and simply leave Mozilla/5.0 part so that servers that rely on it to show web content to their users could still be parsed. An example of this is french ISP: http://www.orange.fr — Reply to this email directly or view it on GitHub https://github.com/google/physical-web/pull/380#issuecomment-103069011. Here's a PR which adds only the Mozilla/5.0 User Agent: https://github.com/google/physical-web/pull/390/files
gharchive/pull-request
2015-05-12T08:57:36
2025-04-01T06:44:21.603442
{ "authors": [ "beaufortfrancois", "cco3", "dinhviethoa", "mmocny" ], "repo": "google/physical-web", "url": "https://github.com/google/physical-web/pull/380", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
178057150
Some DRM providers require default KID in wrapped license requests Suggested fix for #528 Thank you for the feedback. I will correct these things No probs, fixed that last thing now Looks like you'll need to update the tests to match. You can run the tests for yourself with python build/test.py. Chrome 53.0.2785 (Mac OS X 10.10.5): Executed 891 of 927 (skipped 36) SUCCESS (6 mins 11.643 secs / 7 mins 27.425 secs) Sorry, thought I did a lint check before pushing. Will fix
gharchive/pull-request
2016-09-20T13:18:55
2025-04-01T06:44:21.636260
{ "authors": [ "birme", "joeyparrish" ], "repo": "google/shaka-player", "url": "https://github.com/google/shaka-player/pull/529", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1968029529
Dict: support efficient key+value iteration I'd like to go over keys and values in a Dict, process them and put results somewhere else. I see two options: Iterate() Iterator allows me to go over keys. I can gen get the corresponding values using Get(Value). This is suboptimal because of the extra hashing+lookup costs. Items() []Tuple allows me to get all keys+values in one go. This is suboptimal because of the extra allocation to hold all the data. I'd like a more efficient way that avoids the above issues. It's a breaking change to introduce a new method to Iterator to get the value of the mapping (it iterates over keys for Dict) so perhaps we can have a new interface (e.g. KeyValueIterator/MappingIterator) with one more extra method (or a method to get both values in one go)? And then perhaps one more interface to extend IterableMapping with a method to get the new kind of iterator (e.g. IterateKeysAndValues() KeyValueIterator or IterateMapping() MappingIterator). keyIterator already has the value in the entry, it just lacks a way to get it. Go itself seems likely to add support for language-level iterators which will open up many exciting possibilities for the Starlark API. For example, it may be possible to say for k, v := range dict.All { ... } without the need for an explicit iterator, or a call to iter.Done, and without allocating an array proportional to dict.Len(). I think we should wait to see what happens there before committing to new API in Starlark.
gharchive/issue
2023-10-30T10:37:47
2025-04-01T06:44:21.673369
{ "authors": [ "adonovan", "ash2k" ], "repo": "google/starlark-go", "url": "https://github.com/google/starlark-go/issues/518", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
181304537
So which "compiler" is correct ??? In another universe far, far away - the files in the acorn/src directory all have a '.js' suffix. The files themselves import/export from/to '"./xxx"' <- note no suffix. 'traceur' gets very unfriendly with that form of name specification. If each 'xxx.js' file is copied to 'xxx2.js' and modified to import/export from/to "xxx2.js", 'traceur' is happy. So according to the newer ECMA specs, which one is correct - with or without? -- Thanks, -- Paul Townsend ECMAScript does not specify the resolve rules. The only existing spec for this is in HTML (<script type=module>) which requires full URLs (it does not add .js) so you should include .js in your import declaration. Not sure that I agree with the policy of requiring the '.js' suffix in the 'from "./zzz.js"'. It should work both with and without the suffix's presence. Are you familiar with the GNU 'make'. It goes to an extreme amount of trouble finding the proper source file. Maybe 'traceur' and other JS processors should follow suit. One article that I saw on the net said that 'traceur' used to accept '"zzz"'. This should probably go in another 'issue' but I'm lazy. It seems that 'traceur' doesn't understand the *nix symlink. I get a bunch of strange errors when I attempt to use them. I have a Cygwin installation that sits on top of a Windows Vista Home Basic OS. When I make the following symlinks cd master/acorn-master/src for x in *.js ; do rm ${x%.js} ln -s $x ${x%.js} done traceur --out junk.js index.js 'traceur' produces beaucoup strange errors. If I make the following hard links instead cd master/acorn-master/src for x in *.js ; do rm ${x%.js} ln $x ${x%.js} done traceur --out junk.js index.js everything seems to work. -- Thanks, -- Paul Townsend From: Erik Arvidsson notifications@github.com Sent: Thursday, October 6, 2016 12:08 AM To: google/traceur-compiler Cc: Paul Townsend; Author Subject: Re: [google/traceur-compiler] So which "compiler" is correct ??? (#2136) ECMAScript does not specify the resolve rules. The only existing spec for this is in HTML ( The implicit file ending has been discussed a lot elsewhere. It does not work on the web. I think having an option to use Node.js's require.resolve semantics might be an option that one could opt in to if they wanted. The symlink one seems bad. @johnjbarton Any idea?
gharchive/issue
2016-10-06T01:25:36
2025-04-01T06:44:21.685278
{ "authors": [ "aabatpurdue", "arv" ], "repo": "google/traceur-compiler", "url": "https://github.com/google/traceur-compiler/issues/2136", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
668231030
TypeError: Cannot read property 'r' of undefined Received the following error after holding Shift + selecting multiple layers (approx. 17) in the editor. TypeError: Cannot read property 'r' of undefined in FP in Unknown in form in designPanel__Form in LF in zF in div in designInspector__TopPanels in div in designInspector__Wrapper in VF in div in inspectorContent__InspectorWrapper in hH in div in inspectorLayout__InspectorBackground in div in inspectorLayout__Layout in bH in div in dropTarget__Content in Unknown in div in dropTarget__DropTargetComponent in Fj in Unknown in SF in CH in QN in div in layout__InspectorArea in div in layout__WorkspaceLayout in Unknown in kH in Unknown in Dm in Unknown in OH in TH in div in layout__Area in section in layout__Editor in RH in Unknown in RN in Unknown in Ce in Unknown in RL in Unknown in sT in Unknown in oM in Unknown in bs in Unknown in xA in Unknown in Qc in Unknown in $l in QN in Se in te in NH in v Video: https://recordit.co/tGtvkuHF48 Console errors: Error can be reproduced on the second page of the Beauty Template ("I woke up like this" ). Looks like similar error report around deleting layers in this issue: https://github.com/google/web-stories-wp/issues/4354 @carlos-kelly @barklund Is this something Pea or Prometheus should look at? Looking at the stack trace here and from #4354, it seems like the presets panel is trying to destruct the color object? i.e. from the object color: { r, g, b, a }, but color is undefined. Maybe need to add some checks here and there to ensure the data is in the right shape. See also steps to reproduce in #4832 Duplicate of #4832
gharchive/issue
2020-07-29T23:20:08
2025-04-01T06:44:21.708724
{ "authors": [ "ernee", "o-fernandez", "swissspidy" ], "repo": "google/web-stories-wp", "url": "https://github.com/google/web-stories-wp/issues/3544", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
620466951
Dashboard: Move focus to left nav on toggle button click Summary Controls focus when dashboard toggle menu button is clicked and left rail is expanded. Relevant Technical Choices In Storybook - wraps PageHeader in NavProvider to make demoing toggle easier Swaps visibility for opacity on view toggle for left rail so that .focus() can get applied. Adds a useLayoutEffect hook to focus left rail when toggle occurs and menu expands Adds aria role 'navigation' to left rail Adds list elements to left rail navigation links, helps with tabbing through content and is more semantic. User-facing changes Now when you have the smaller viewport hamburger menu that expands the left nav and you click or 'enter' into it, you will have your focus moved to the left nav and should be able to tab through content. Testing Instructions Key through dashboard and see that tabbing through the navigation works as you'd expect Verify that clicking also still works Verify that layout is still correct (should have no changes other than focusable elements) See that storybook Dashboard/Components/pageHeader can now toggle (if viewport is < 1340px) Note, you might have to tweak your browser a little bit as firefox and safari handle keying through browsers differently than chrome out of the box. I found I had to add accessibility.tabfocus like in here: https://stackoverflow.com/questions/11704828/how-to-allow-keyboard-focus-of-links-in-firefox to get firefox to work for me. And in Safari you need to open your preferences, navigate to advanced and check 'press tab to highlight each item on a webpage'. Fixes #1786 Can this be merged? Can this be merged? Still pending QA, i'll ping Omar about it
gharchive/pull-request
2020-05-18T19:56:05
2025-04-01T06:44:21.715484
{ "authors": [ "BrittanyIRL", "swissspidy" ], "repo": "google/web-stories-wp", "url": "https://github.com/google/web-stories-wp/pull/1831", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
781548204
[WIP] Upload video on e2e test Summary Please do not review Relevant Technical Choices To-do User-facing changes Testing Instructions Fixes # @swissspidy I had didn't have this as a draft for a reason, I dont get percy screenshot in draft. @swissspidy I had didn't have this as a draft for a reason, I dont get percy screenshot in draft. The only really remaining question here is about importing initial video files at the beginning - do we now want this or not? The only really remaining question here is about importing initial video files at the beginning - do we now want this or not?
gharchive/pull-request
2021-01-07T19:19:49
2025-04-01T06:44:21.718495
{ "authors": [ "spacedmonkey", "swissspidy" ], "repo": "google/web-stories-wp", "url": "https://github.com/google/web-stories-wp/pull/5849", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
815730782
Dashboard: Story views - Replace old popover component with new context menu component Context Integrating the new design system into the Dashboard. Summary Adds the new context menu in 2 places (replacing the popover menu card): My Stories view Saved Templates view Relevant Technical Choices Give links the permission to have an onClick event handler. Clicking a link should allow for other functionality to occur other than navigation. Tried to split up the big event handler that was passed into the old popover menu card. Each item in the new context menu receives its own onClick prop. Left a comment in the PR on the code to chat about this further. To-do none User-facing changes View Before After My Stories grid view My Stories list view Testing Instructions For each view test that the following works: Opening the context menu. Clicking away from the context menu should close it. Clicking each item in the menus should do the action it used to do (nothing has functionally changed). (Optional)Verify that the menus are keyboard accessible. This should have been tested in other prs. QA [ ] This is a non-user-facing change and requires no QA This PR can be tested by following these steps: For each view test that the following works: Opening the context menu. Clicking away from the context menu should close it. Clicking each item in the menus should do the action it used to do (nothing has functionally changed). (Optional)Verify that the menus are keyboard accessible. This should have been tested in other prs. UAT [x] UAT should use the same steps as above. Reviews Does this PR have a security-related impact? no Does this PR change what data or activity we track or use? no Does this PR have a legal-related impact? no Checklist [x] This PR addresses an existing issue and I have linked this PR to it in ZenHub [x] I have tested this code to the best of my abilities [x] I have verified accessibility to the best of my abilities (docs) [x] I have verified i18n and l10n (translation, right-to-left layout) to the best of my abilities [x] This PR contains automated tests (unit, integration, and/or e2e) to verify the code works as intended (docs) [x] I have added documentation where necessary [x] I have added a matching Type: XYZ label to the PR Partially addresses #6102 Found that the context menu (when there aren't enough context menus to span the page) doesn't render in the correct direction. It ends up getting hidden by the scrolling container: Found that the context menu (when there aren't enough context menus to span the page) doesn't render in the correct direction. It ends up getting hidden by the scrolling container: Looks like this is because the menu's height is too big so if it points the other way it'll run into the top of the screen. To fix this we can either: make the menu smaller (less items or decrease the padding of the items) Increase the size of the container or add another container that spans the entire viewport height
gharchive/pull-request
2021-02-24T18:21:53
2025-04-01T06:44:21.733029
{ "authors": [ "samwhale" ], "repo": "google/web-stories-wp", "url": "https://github.com/google/web-stories-wp/pull/6516", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
184206778
player button is not synchronize with audio Hi, I am running instream ad inside google IMA player and It seems that there are few problems: the properties of the video like muted and volume are defined. How can I know the initial state of the video? How can I know these values while the video is playing? When the sound button of the player starts with no sound when the insecure option is chosen the video starts with sound When the sound button of the player starts with no sound and we change the volume to 1 (and dispatch ad volume change event) the video starts unmuted (as it should) but the button of the player is not synchronized - it is still muted (secure and insecure mode) ad tag for example: https://bs.serving-sys.com/Serving/adServer.bs?c=23&cn=display&pli=1073953433&ord=12121212 If you need additional please let me know Thanks remark regarding point 1: values are undefined of volume and muted in secure mode 1 is a known issue, and we're working on fixing it in the IMA SDK itself. Can you clarify points 2 and 3 for me? When you talk about the "player", are you talking about the content player or the player for the video portion of your VPAID? Could you give me steps to repro the issue? e.g. load this tag, click play, click mute, see X but expect Y. Thanks! Hi, thanks for the reply. Regarding point 1 - Do you have estimation when it will be fixed? The other points I'll detail the phases: Problem -> the state of the mute button of the player is not synchronized with the audio Scenario 1 a. Open the following URL - https://developers.google.com/interactive-media-ads/docs/sdks/html5/vastinspector?hl=iw&tag=https%253A%252F%252Fbs.serving-sys.com%252FServing%252FadServer.bs%253Fc%253D23%2526cn%253Ddisplay%2526pli%253D1073982496%2526ord%253D12345%2526cim%253D1 b. click on Test ad (relevant for both secure and insecure mode) c. Click on Audio off -> behave as it should: video is muted and mute button of the player is in state mute (UI: X is displayed) d. Click on Audio on -> video is unmuted but state of the mute button of the player is not changed Scenario 2 in our code we check if we have value of volume from video. if not (like in IMA secure case) our default is 1 and we dispatch AdVolumeChange event to the player. Therefore, I expect the video to start unmuted and that the mute button of the player will be in unmute state, even if user set it before to muted (unless setAdVolume is sent which is not the case) Steps to reproduce: a. Open the following URL - https://developers.google.com/interactive-media-ads/docs/sdks/html5/vastinspector?hl=iw&tag=https%253A%252F%252Fbs.serving-sys.com%252FServing%252FadServer.bs%253Fc%253D23%2526cn%253Ddisplay%2526pli%253D1073982496%2526ord%253D12345%2526cim%253D1 b. choose secure mode c. mute the player button (so in UI will be X) d. click on Test Ad e. expected result: video unmuted + mute btn in state unmuted. Actual result: video unmuted + mute btn is state mute Scenario 3 Getting wrong values in insecure mode when state of the mute button of the player is muted. In insecure mode when setting the mute button of the player to muted I expect to get in the video slot muted true and instead I get videoSlot.volume - 1 and videoSlot.muted - false. As a result the video starts unmuted even though I expect it to start muted I think that as result of these issues when toggling the mute button of the player I get wrong behavior. If you need more information please let me know Hi there, Is this an issue with the IMA SDK in general or the video.js plugin (which uses the IMA SDK)? The samples you linked are using the Video Suite Inspector, which does not use the video.js plugin. If you are using the video.js plugin (the project hosted in this repo) the you're in the right place, but if you're using the IMA SDK without the video.js plugin you'll get better support at our IMA SDK forum. If you're using the video.js plugin, can you replicate your issues in our samples? Thanks! Shawn Closing for lack of response - if you still need help let us know!
gharchive/issue
2016-10-20T11:43:21
2025-04-01T06:44:21.762672
{ "authors": [ "NatalieGabel", "shawnbuso" ], "repo": "googleads/videojs-ima", "url": "https://github.com/googleads/videojs-ima/issues/293", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
588383929
Dialogflow does not handle all context names correctly This is effectively a new version of #2972, but with Google.Cloud.Dialogflow.V2 version 2.0.0. The ContextName class still doesn't handle a pattern of "projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session}/contexts/{context}". We have a change in progress that will add it, but this issue is to keep track of when it's ready. ContextName now does support this pattern. Closing. Phew. (It's not in a release yet, but we can cross that bridge next week.) Dialogflow 3.0.0-beta01 has now been released.
gharchive/issue
2020-03-26T12:27:48
2025-04-01T06:44:21.787153
{ "authors": [ "jskeet" ], "repo": "googleapis/google-cloud-dotnet", "url": "https://github.com/googleapis/google-cloud-dotnet/issues/4665", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
371692054
How to handle large file uploads? I was wondering if this library has something comparable to the createUploadUrl method described here for App Engine Standard's PHP client library. The flexible environment also imposes a 32MB max on POST request payloads, but I can't find an explanation on how to upload large files to Blobstore or Cloud Storage while still directing the rest of the POST data to the controller in our PHP application. We currently use this library to upload files to Cloud Storage from within the controller, but this isn't an option for anything over 32MB. Apologies if this belongs in an App Engine forum instead. Hi @reddigari, If you're uploading files from your PHP application, you likely won't need a signed URL, which is what the createUploadUrl will provide. In that case, you could use Google\Cloud\Storage\Bucket::getResumableUploader() to upload larger files. Should you find that you do need a signed URL, you could make use of Google\Cloud\Storage\StorageObject::signedUploadUrl(). Please feel free to re-open if you have any other questions we can help out with. Hi @dwsupplee, I'm facing the same issue with My ML project and I'm getting the data from Flask to Show. As I want to deploy I get errors of File size limit of XG boost files which are approx 63 MB. How should I handle it so My Model Works Properly and I will get Data from Flask endpoint. https://github.com/saqib772/sportsodds.git
gharchive/issue
2018-10-18T20:09:37
2025-04-01T06:44:21.791910
{ "authors": [ "dwsupplee", "jdpedrie", "reddigari", "saqib772" ], "repo": "googleapis/google-cloud-php", "url": "https://github.com/googleapis/google-cloud-php/issues/1358", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1742705361
docs: misc issues and improvements More improvements are required on the docs to better support the new surface The published docs have duplicate entries for magic methods. For example: https://cloud.google.com/php/docs/reference/cloud-automl/latest/V1.Client.AutoMlClient new and previous clients aren't ordered predictably (e.g. they should be new and then previous, or vise versa, consistently - see AutoML TOC) we still don't include the namespaces, and this is even more important with the new clients (tracked in https://github.com/googleapis/doc-pipeline/issues/478) there are no samples for the new clients - we should include these with the @example annotation when we can! the new clients, which are in beta, are not labeled as such the __call method shows up in the docs, and we don't want it to We should include information in the top of GAPIC clients regarding the migration status to help users on libraries which contain both surfaces Here's an idea for how we could ptentially support namespaces Confirmed these have all been fixed and published.
gharchive/issue
2023-06-05T22:14:40
2025-04-01T06:44:21.796427
{ "authors": [ "bshaffer" ], "repo": "googleapis/google-cloud-php", "url": "https://github.com/googleapis/google-cloud-php/issues/6321", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1972822133
cloud logging: logging java client in async mode always fail the first request Environment details Specify the API at the beginning of the title. For example, "BigQuery: ..."). OS type and version: ubuntu-latest Java version: 11 version(s): google-cloud-logging 3.14.0 Steps to reproduce created a cloud run service that write log entries with logging client with batching settings and retry settings. the first write always failed (with or without retry settings) with timeout exception, any subsequent writes were successful and could be found in logs explorer. Code example // singleton logging client provider loggingOptionsBuilder.setProjectId(configuration.getBackend().getCloudlogging().getProject()) .setBatchingSettings(BatchingSettings.newBuilder() .setElementCountThreshold(10L) .setDelayThreshold(Duration.ofSeconds(1L)) .setRequestByteThreshold(2000L) .build()) .setRetrySettings(RetrySettings.newBuilder() .setMaxRetryDelay(Duration.ofMillis(30000L)) .setTotalTimeout(Duration.ofMillis(120000L)) .setInitialRetryDelay(Duration.ofMillis(250L)) .setRetryDelayMultiplier(1.0) .setInitialRpcTimeout(Duration.ofMillis(120000L)) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ofMillis(120000L)) .build()); } Logging logging = loggingOptionsBuilder.build().getService(); logging.setWriteSynchronicity(Synchronicity.ASYNC); // write logentry. LogEntry entry = LogEntry.newBuilder(StringPayload.of("test cloud logging")) .setSeverity(Severity.INFO) .setLogName(getClass().getSimpleName()) .build(); logging.write(Collections.singleton(entry)); Stack trace ERROR: onFailure exception: com.google.cloud.logging.LoggingException: io.grpc.StatusRuntimeException: DEADLINE_EXCEEDED: deadline exceeded after -0.095967372s. [closed=[], open=[[buffered_nanos=1301304763, waiting_for_connection]]] External references such as API reference guides https://github.com/googleapis/java-logging#controlling-the-batching-settings Any additional information below root cause is due to cloud run cold start, closing
gharchive/issue
2023-11-01T17:46:25
2025-04-01T06:44:21.810544
{ "authors": [ "sqin2019" ], "repo": "googleapis/java-logging", "url": "https://github.com/googleapis/java-logging/issues/1469", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
471690728
HTTP_PROXY/http_proxy env variable name Hey, I've been trying to access google APIs (storage API mainly) using a proxy. The documentation says you can set environment variables HTTP_PROXY/http_proxy with no further explanation (https://www.npmjs.com/package/googleapis#using-a-proxy). So I set http_proxy, and it didn't work for me. Only HTTP_PROXY worked for me. I think it's best to clarify the documentation, or just fix it - I dug down a little bit in your code and found out requests are made using 'teeny-request', and in this package code, they only consider HTTP_PROXY, and not http_proxy. Thanks for digging here! We have a fix queued up over in https://github.com/googleapis/teeny-request/pull/56 for the underlying issue. The fix was released, so we should be good to go! Let me know if there are still any issues.
gharchive/issue
2019-07-23T13:15:22
2025-04-01T06:44:21.813529
{ "authors": [ "JustinBeckwith", "Rantoledo", "stephenplusplus" ], "repo": "googleapis/nodejs-storage", "url": "https://github.com/googleapis/nodejs-storage/issues/776", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
259241283
Add ESLint and Prettify @jmdobry PR to nodejs-repo-tools will be be coming this afternoon. Commit-by-commit might be an easier sanity check path. A couple things I want to call out: I moved the samples tests back into samples/package.json, and I have the samples-tests command in the main repo cd in and call it. This was partially to make the linter happy (it thought that things like ava were not installed because they were not in samples/package.json) but I actually think the separation makes a lot of sense. I <3 prettier. (There is an Atom plugin to just run it on save, which is really nice.) I exempted the samples tests from the Node 4 and Node 6 compatibility checks. (In principle I am willing to do that for system tests also, but at the moment it is not necessary.) Codecov Report Merging #13 into repo-migration will not change coverage. The diff coverage is 100%. @@ Coverage Diff @@ ## repo-migration #13 +/- ## ============================================= Coverage 100% 100% ============================================= Files 6 6 Lines 914 915 +1 ============================================= + Hits 914 915 +1 Impacted Files Coverage Δ src/index.js 100% <100%> (ø) :arrow_up: src/channel.js 100% <100%> (ø) :arrow_up: src/file.js 100% <100%> (ø) :arrow_up: src/bucket.js 100% <100%> (ø) :arrow_up: src/acl.js 100% <100%> (ø) :arrow_up: src/iam.js 100% <100%> (ø) :arrow_up: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 3951665...e46a661. Read the comment docs. One of my favorite code style rules is "be consistent", and this definitely does that. My only issue is some of the style choices I've pointed out. Is there any part of these new tooling processes that auto-formats the code? If that's the case, I don't mind the new rules so much. But if not, the new approach feels a bit robotic, which can deflect contributions (at some point, they'll get sick of a yelling linter and just stop), or at best, makes the review process longer-- they likely won't follow the rules they haven't seen elsewhere, which leaves an extra step for us to do the style-conformity for them. I believe the code is now being formatted by prettier, which does have a small amount of configurability, should we desire.
gharchive/pull-request
2017-09-20T17:26:10
2025-04-01T06:44:21.826904
{ "authors": [ "codecov-io", "jmdobry", "lukesneeringer", "stephenplusplus" ], "repo": "googleapis/nodejs-storage", "url": "https://github.com/googleapis/nodejs-storage/pull/13", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
562514950
Code example PLEASE READ: If you have a support contract with Google, please create an issue in the support console instead of filing on GitHub. This will ensure a timely response. If someone uses your example he gets an error because there is nothing about set credentials in your example and only after research you can understand what was wrong please give people right examples, google all docs it's just a challenge to find what you need, always there is no needed info in docs and you should spend a lot of time to find it Above the example is the step-by-step, pre-requisites for running the example code, which includes authentication details: https://github.com/googleapis/nodejs-translate/blob/master/README.md#quickstart. It requires clicking the link that takes you to the central documentation, but will walk through setting up the service account, downloading a key file, and setting the environment variable GOOGLE_APPLICATION_CREDENTIALS. If you do it that way, you don't need the keyFilename option. I've leaned towards showing that a keyFilename is required during instantiation before, but that still requires additional documentation to explain what "keyFilename" is, how to make a service account, how to make a key, etc. What's a good way we could solve this, that you think would have helped you? it would be great to add some additional explanation here, for example, "You can use this example only if you pass step 4 if you don't want set environment variable you can use authentication like this and like (with path to file)" because when I opened an example I just have seen the code I even haven't read the text above? maybe it's my fault but it will be more user-friendly if you add some additional info into code comments directly I cannot get the sample to work either. First it seems a bit strange that there is already v3 of the API, but the sample uses v2. Anyway, with v2 I do this: const { Translate } = require("@google-cloud/translate").v2; const translate = new Translate({ projectId: "my-project-id", keyFilename: "credentials.json", }); translate.getLanguages("en") .then((x) => { console.log(JSON.stringify(x)); }) .catch((reason) => { console.error(Could not retrieve the list of available languages: ${reason}); }); The credentials.json file is the one that I've downloaded when creating the service account. It fails with "Could not retrieve the list of available languages: Error: The incoming JSON object does not contain a client_email field". So I extended the options for the Translate constructor by: credentials: { client_email: "the email from the service account that ends with iam.gserviceaccount.com", }, Then it complains about a missing private_key field. So I extended the credentials object with a private_key property that I set to the privateKeyData property from the credentials.json file (formatting it properly). But then I get error:0D0680A8:asn1 encoding routines:asn1_check_tlen:wrong tag. And here I don't know what else I could try.
gharchive/issue
2020-02-10T12:00:44
2025-04-01T06:44:21.834668
{ "authors": [ "TimoKunze", "Zimovets", "stephenplusplus" ], "repo": "googleapis/nodejs-translate", "url": "https://github.com/googleapis/nodejs-translate/issues/445", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
179374034
Update naming of grpc fields. Updates googleapis/gax-nodejs#43 @jmdobry @geigerj, please review this too. Please rebase and confirm that build passes before merging.
gharchive/pull-request
2016-09-27T01:00:17
2025-04-01T06:44:21.842692
{ "authors": [ "geigerj", "jmuk" ], "repo": "googleapis/toolkit", "url": "https://github.com/googleapis/toolkit/pull/520", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
326454873
cartographer_ros build error "could not find a package configuration file provided by "tf2_eigen"" I followed the instructions but have problems: ...... _CMake Warning at /home/tmp/ros/share/catkin/cmake/catkinConfig.cmake:76 (find_package): Could not find a package configuration file provided by "tf2_eigen" with any of the following names: tf2_eigenConfig.cmake tf2_eigen-config.cmake Add the installation prefix of "tf2_eigen" to CMAKE_PREFIX_PATH or set "tf2_eigen_DIR" to a directory containing one of the above files. If "tf2_eigen" provides a separate development package or SDK, be sure it has been installed. Call Stack (most recent call first): CMakeLists.txt:45 (find_package) -- Could not find the required component 'tf2_eigen'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found. CMake Error at /home/tmp/ros/share/catkin/cmake/catkinConfig.cmake:83 (find_package): Could not find a package configuration file provided by "tf2_eigen" with any of the following names: tf2_eigenConfig.cmake tf2_eigen-config.cmake Add the installation prefix of "tf2_eigen" to CMAKE_PREFIX_PATH or set "tf2_eigen_DIR" to a directory containing one of the above files. If "tf2_eigen" provides a separate development package or SDK, be sure it has been installed. Call Stack (most recent call first): CMakeLists.txt:45 (find_package) -- Configuring incomplete, errors occurred! See also "/apollo/modules/slam/catkin_ws/build_isolated/cartographer_ros/CMakeFiles/CMakeOutput.log". See also "/apollo/modules/slam/catkin_ws/build_isolated/cartographer_ros/CMakeFiles/CMakeError.log". <== Failed to process package 'cartographer_ros': Command '['/apollo/modules/slam/catkin_ws/install_isolated/env.sh', 'cmake', '/apollo/modules/slam/catkin_ws/src/cartographer_ros/cartographer_ros', '-DCATKIN_DEVEL_PREFIX=/apollo/modules/slam/catkin_ws/devel_isolated/cartographer_ros', '-DCMAKE_INSTALL_PREFIX=/apollo/modules/slam/catkin_ws/install_isolated', '-G', 'Ninja']' returned non-zero exit status 1_ ...... System config: gcc version 4.8.5 (Ubuntu 4.8.5-2 ubuntu1~14.04.1) ROS Indigo Any help would be appreciated.Thanks! sudo apt install ros-indigo-tf2-eigen This might also be useful for you: https://github.com/googlecartographer/cartographer_ros/blob/master/scripts/install_debs.sh
gharchive/issue
2018-05-25T09:48:29
2025-04-01T06:44:21.850922
{ "authors": [ "MichaelGrupp", "xielingsen" ], "repo": "googlecartographer/cartographer_ros", "url": "https://github.com/googlecartographer/cartographer_ros/issues/878", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
651866819
IN_QUALIFIER ?? what IN_QUALIFIER means in the code ? what it does ? It is just for the github API, When you do : https://api.github.com/search/repositories?sort=stars&q=Android and https://api.github.com/search/repositories?sort=stars&q=Androidin:name,description you don't have the same result, I'm guessing that "in:name,description" is to search the term only in name and description IN is an "operator to determine whether a value matches any value in a list of values or a result of a subquery"
gharchive/issue
2020-07-06T22:55:29
2025-04-01T06:44:21.853494
{ "authors": [ "dombroks", "florina-muntenescu", "yoobi" ], "repo": "googlecodelabs/android-paging", "url": "https://github.com/googlecodelabs/android-paging/issues/75", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
186800657
Is there a way to monitor sub-tasks on cloud data flow? For example, let's say, task named "sort bam" executes in parallel (split) by number of input bam files. Right now, on cloud dataflow we can see "sort bam" progress in real time. However, it is impossible to tell the progress of parallel jobs with in "sort bam" task. Is there a way to monitor such parallel jobs on cloud data flow? I appreciate your thoughts on this. Thanks, Mahesh Unfortunately, there's not currently. Dataflow is built for massively parallel tasks, and when you're doing it with finer grained parallelism -- like splitting on billions of rows in files a database -- Dataflow is smart enough to dynamically adjust the sharding, so it's not a fixed number of workers. That also makes it harder to monitor exactly how much of the work has completed. Though you can't do it from the UI, there are a couple of ways you can check status: gsutil ls gs://YOUR-WORKSPACE/TASK-NAME and confirm that the log files exist (they're written when the tasks complete) gcloud alpha genomics operations describe OPERATION-ID (you'll have to filter through the results, like maybe "grep TASK-NAME | wc") Cheers, Jonathan Thanks for the clarification, @jbingham. The work arounds seem interesting. Thanks, Mahesh
gharchive/issue
2016-11-02T13:29:21
2025-04-01T06:44:21.888857
{ "authors": [ "jbingham", "vangalamaheshh" ], "repo": "googlegenomics/dockerflow", "url": "https://github.com/googlegenomics/dockerflow/issues/17", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
253446905
Color/Regular inconsitency The monochrome NotoEmoji-Regular.ttf still uses the old "blob-style" emoji, while NotoColorEmoji.ttf uses the new "Oreo-style" emoji. Besides the different look, the color version has more complete coverage. Will the monochrome emoji receive an update, or are they considered obsolete? Hm sorry, looks like I didn't search well enough. From #35: Unfortunately, we're not currently budgeted to design full b/w emoji. So the monochrome are a second-tier, community-supported font. So the monochrome are a second-tier, community-supported font. Yep, I'm afraid so. Thanks for the clarification. 😊
gharchive/issue
2017-08-28T20:31:55
2025-04-01T06:44:21.896557
{ "authors": [ "dougfelt", "slokhorst" ], "repo": "googlei18n/noto-emoji", "url": "https://github.com/googlei18n/noto-emoji/issues/163", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
95559608
Export individual glyphs as SVG? For some FOSS related application I like to have each glyph of a particular Noto font extracted as well formed SVG files possibly with meaningful file names. Maybe this tools can have or already has this functionality? Thank you FontForge (via python scripting) can probably do this Thank you. I should have note that, I am using fontforge gui for this currently but have to editthe result manually on Inkscape to edit glyph boundraies afterward. Maybe something using fontforge scripting but specialized to work correctly with noto font would be nice. I've also prepared a C++ that is doing this using freetype and have correct SVG boundraies but prefer if there would be some semi-official way for noto to extract glyphs with the project preferred preference and naming style. Using fonttools and the draw() method of ttFont.getGlyphSet()[*] also should be rather straightforward. I'm going to close this since it's unlikely that we'll do this ourselves anytime soon.
gharchive/issue
2015-07-17T00:38:44
2025-04-01T06:44:21.898753
{ "authors": [ "behdad", "davelab6", "dougfelt", "ebraminio" ], "repo": "googlei18n/nototools", "url": "https://github.com/googlei18n/nototools/issues/57", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
637983904
Create Minicart component for checkout screen In this pull request I add and style a smaller version of the cart component. The smaller cart will provide a way for users to see the contents of their cart without having to go back to the cart screen. It has been added as the second half of the checkout screen (along with a form asking for user data which is still in progress). Since the minicart and the actual cart are closely related, I ended up styling the cart component as well. The images below show what the checkout and cart pages look like on a large and medium sized screen. Cart Large Cart Medium Checkout Large Checkout Medium Requesting a review from @googleinterns/measurement-library-owners
gharchive/pull-request
2020-06-12T20:20:28
2025-04-01T06:44:21.902002
{ "authors": [ "Alex7Li" ], "repo": "googleinterns/measurement-library", "url": "https://github.com/googleinterns/measurement-library/pull/10", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2679609822
In IOS simulator navigation screen is showing blank map is not visible I had enabled maps sdk for IOS in the google console and added the api key in the appDelegate.mm file still the map is not visible Thanks for stopping by to let us know something could be better! PLEASE READ If you have a support contract with Google, please create an issue in the support console. This will ensure a timely response. Discover additional support services for the Google Maps Platform, including developer communities, technical guidance, and expert support at the Google Maps Platform support resources page. If your bug or feature request is not related to this particular library, please visit the Google Maps Platform issue trackers. Check for answers on StackOverflow with the google-maps tag. Please be sure to include as much information as possible: Environment details Specify the API at the beginning of the title (for example, "Places: ...") OS type and version Library version and other environment information Steps to reproduce ? Code example # example Stack trace # example Following these steps will guarantee the quickest resolution possible. Thanks! @jaykishan23 and Navigation SDK api is also enabled? https://developers.google.com/maps/documentation/navigation/android-sdk/cloud-setup#enabling-apis @jaykishan23 Do you see any errors in the Xcode console output when the issue occurs? If yes, could you share those logs here? They can provide important clues to help us identify the root cause. No there are no errors but its just the map is not visible in simulator @jokerttu Below thread is coming in Xcode Thread 10: EXC_BAD_ACCESS (code=2, address=0x1224f0000) @jaykishan23 please give us following information: Output of the react-native doctor React native version React version Xcode version Package version This looks like a configuration issues. Double check that the MAPS_API_KEY is configured at appDelegate.mm as instructed in the README.md Also try to remove all restrictions from the api key at the google cloud console for testing purposes (remember to add proper restrictions back after testing) @jokerttu Hi, I had shared below details please let me know if u need more info :- Output of the react-native doctor iOS ✓ Xcode - Required for building and installing your app on iOS ✓ Ruby - Required for installing iOS dependencies ✓ CocoaPods - Required for installing iOS dependencies ✓ ios-deploy - Required for installing your app on a physical device with the CLI ✓ .xcode.env - File to customize Xcode environment React native version : "0.75.4" & react version: "18.3.1" Xcode version : Version 15.4 (15F31d) "packageManager": "yarn@3.6.4" I have the same problem on android and ios, the map is displayed like this, I verified the key and it is not blocked and if I use react-native-maps, it does show me the map, I don't know if I need to configure something else the version I have of react native is "react-native": "0.74.5", as I already mentioned the appdelegate has the key and in android manifest, the code I am using is the same as in the documentation, I also adjusted the app.tsx to validate the NavigationProvider but nothing or does it still does not show me the map, I hope you can help me thanks.
gharchive/issue
2024-11-21T14:06:29
2025-04-01T06:44:21.919742
{ "authors": [ "davidg327", "jaykishan23", "jokerttu" ], "repo": "googlemaps/react-native-navigation-sdk", "url": "https://github.com/googlemaps/react-native-navigation-sdk/issues/358", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
137877670
New sample: mvp-dagger Based on MVP but using Dagger2 for dependency injection. Hey @JoseAlcerreca would love to take care of this during weekend. Are you working on it? Do not want to duplicate effort. Cheers. It was forked a while ago from todo-mvp so it probably needs a git merge todo-mvp and a big conflict resolution. Take a look at https://github.com/googlesamples/android-architecture/tree/dev-todo-mvp-dagger/todoapp I'd use git difftool -d origin/dev-todo-mvp-dagger -- . first, if you have a nice difftool installed like meld it will show differences. They should be as small and few as possible. and feel free to open a PR against that branch. The prod/mock flavors and the Injection class have to be removed from it. Also, before committing code please highlight the changes you plan to make. Thanks! I've built an sample weather app using MVP and Dagger2, but not sure the mvp is structured the same way as you are planning to. Here is the link https://github.com/Ericliu001/Weather2016
gharchive/issue
2016-03-02T13:45:58
2025-04-01T06:44:21.923652
{ "authors": [ "Ericliu001", "JoseAlcerreca", "paddyzab" ], "repo": "googlesamples/android-architecture", "url": "https://github.com/googlesamples/android-architecture/issues/7", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1095494196
google form sample Have an sample of use google form API! Sample: I want read responses of a google Form! How? Specifications PHP version (7.4): OS (Mac/Linux/Windows): Hello @pws2016 ! I created an implementation of the example to consume the Google Forms API. It's at the link https://github.com/googleworkspace/php-samples/pull/92/
gharchive/issue
2022-01-06T16:44:29
2025-04-01T06:44:21.951013
{ "authors": [ "diegosoek", "pws2016" ], "repo": "googleworkspace/php-samples", "url": "https://github.com/googleworkspace/php-samples/issues/89", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
2058901127
🛑 goormEDU is down In 03cca0a, goormEDU (https://edu.goorm.io) was down: HTTP code: 403 Response time: 637 ms Resolved: goormEDU is back up in eb10566 after 5 minutes.
gharchive/issue
2023-12-28T22:29:18
2025-04-01T06:44:21.977238
{ "authors": [ "rlatjdwn4926" ], "repo": "goorm-dev/goorm-status", "url": "https://github.com/goorm-dev/goorm-status/issues/1512", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2120111475
🛑 goormEDU is down In 9a94aef, goormEDU (https://edu.goorm.io) was down: HTTP code: 403 Response time: 583 ms Resolved: goormEDU is back up in 6129058 after 6 minutes.
gharchive/issue
2024-02-06T07:11:41
2025-04-01T06:44:21.979615
{ "authors": [ "rlatjdwn4926" ], "repo": "goorm-dev/goorm-status", "url": "https://github.com/goorm-dev/goorm-status/issues/2689", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2141231663
🛑 goormIDE is down In e526272, goormIDE (https://ide.goorm.io) was down: HTTP code: 403 Response time: 439 ms Resolved: goormIDE is back up in 0c75bba after 1 hour, 12 minutes.
gharchive/issue
2024-02-18T23:11:54
2025-04-01T06:44:21.982045
{ "authors": [ "rlatjdwn4926" ], "repo": "goorm-dev/goorm-status", "url": "https://github.com/goorm-dev/goorm-status/issues/3108", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2217702492
🛑 goormIDE is down In bfda170, goormIDE (https://ide.goorm.io) was down: HTTP code: 403 Response time: 801 ms Resolved: goormIDE is back up in 37aed5d after 35 minutes.
gharchive/issue
2024-04-01T07:20:25
2025-04-01T06:44:21.984597
{ "authors": [ "rlatjdwn4926" ], "repo": "goorm-dev/goorm-status", "url": "https://github.com/goorm-dev/goorm-status/issues/4753", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
282015307
add soup parser in AVAILABLE_PARSERS Add soup parser in AVAILABLE_PARSERS otherwise configuration example in README won't work. @nyanshell Thank you for pointing out the difference between the README and what is actually available. This was removed when removing python 2 support (not sure why, but it was only available for python 2). Can you add tests that show that it works with python 3? Just add a ParserSoup testcase in test_parser.
gharchive/pull-request
2017-12-14T08:14:56
2025-04-01T06:44:21.985887
{ "authors": [ "barrust", "nyanshell" ], "repo": "goose3/goose3", "url": "https://github.com/goose3/goose3/pull/27", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
792793688
Consider SSH connection re-use for faster sync See https://puppet.com/blog/speed-up-ssh-by-reusing-connections/ This was already fixed by #1755
gharchive/issue
2021-01-24T13:14:41
2025-04-01T06:44:21.990080
{ "authors": [ "dominikschulz" ], "repo": "gopasspw/gopass", "url": "https://github.com/gopasspw/gopass/issues/1754", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
268129282
Take out if _WINDOWS so that GPMF_print will work on non Windows plat… …forms 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.
gharchive/pull-request
2017-10-24T17:58:58
2025-04-01T06:44:22.016309
{ "authors": [ "sw-team-release-gpsw", "tcheema-gpsw" ], "repo": "gopro/gpmf-parser", "url": "https://github.com/gopro/gpmf-parser/pull/13", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
154968052
Fix #24 - Implement users' presence management for events A intenção com esse PR é de: Permitir listagem de usuários (via acesso restrito para admins) inscritos em um evento Permitir definir a presença ou ausência para cada usuário inscrito para um dado evento Este PR ainda não está pronto para ser aceito, pois: Falta implementar o toggle de presença no back-end (via AJAX) Falta specs I've prepared a stage to preview changes. Open stage or view logs. Coverage decreased (-0.4%) to 76.342% when pulling 60e0f32bfdd8e6c37c79804d46687e40539be930 on leandro:master into 321d4d73063901ae73c5828e41323f3e002b052a on gorails:master. Coverage decreased (-0.4%) to 76.284% when pulling 89704f90685762aab09ff66fa38cf100d6a08e04 on leandro:master into 321d4d73063901ae73c5828e41323f3e002b052a on gorails:master. Eu irei criar um novo PR para esse issue...não irei mais trabalhar a partir do master do meu leandro/gorails. Irei a partir de agora trabalhar com branches no leandro/gorails para mandar PRs. Nesse caso a branch a ser criada terá nome de issue_24. Ok @leandro , blz.
gharchive/pull-request
2016-05-16T06:20:48
2025-04-01T06:44:22.059265
{ "authors": [ "TeatroIO", "coveralls", "jcottobboni", "leandro" ], "repo": "gorails/gorails", "url": "https://github.com/gorails/gorails/pull/101", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
2320014804
[low priority] Inspect dependencies There is a lot of deps in go.mod which adds a lot of transitive dependencies to projects who import gorgonia/cu (like mine) Try to inspect for what are these deps needed, and possibly eliminate them to shorten download time. I would like to take a look at this. part of this would also be to check if a newer dependency is available and bump the version. cyclic dependency - gorgonia depends on cu and cu depends on gorgonia cc is there twice (modernc.org and github.com/cznic is the same guy?) xc can be bumped to 1.1.0 cc is horribly outdated, current version is like v4.21.2 tensor can be bumped to 0.9.24 etc Heya, sorry I was on a holiday. Let's bump the versions!
gharchive/issue
2024-05-28T02:40:58
2025-04-01T06:44:22.080516
{ "authors": [ "chewxy", "neurlang" ], "repo": "gorgonia/cu", "url": "https://github.com/gorgonia/cu/issues/70", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
1722707929
fix: metadata serialization for self api Metadata was being serialized in base64 format, this PR fixes it Pull Request Test Coverage Report for Build 5061572196 1 of 10 (10.0%) changed or added relevant lines in 1 file are covered. 1 unchanged line in 1 file lost coverage. Overall coverage decreased (-0.06%) to 57.714% Changes Missing Coverage Covered Lines Changed/Added Lines % internal/store/postgres/user_repository.go 1 10 10.0% Files with Coverage Reduction New Missed Lines % internal/store/postgres/user_repository.go 1 55.49% Totals Change from base Build 4860508002: -0.06% Covered Lines: 4721 Relevant Lines: 8180 💛 - Coveralls
gharchive/pull-request
2023-05-23T20:05:55
2025-04-01T06:44:22.158931
{ "authors": [ "coveralls", "krtkvrm" ], "repo": "goto/shield", "url": "https://github.com/goto/shield/pull/9", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
314847193
Build issues on Windows environments Error generated on fresh Windows 10 environment after NodeJS install and running through build instructions for uikit-starter: C:\Users\USER\Documents\Code\uikit-starter\node_modules\uws>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild ) gyp ERR! configure error gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable. gyp ERR! stack at PythonFinder.failNoPython (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:483:19) gyp ERR! stack at PythonFinder.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:508:16) gyp ERR! stack at C:\Program Files\nodejs\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29 gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21) gyp ERR! System Windows_NT 10.0.16299 gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" gyp ERR! cwd C:\Users\USER\Documents\Code\uikit-starter\node_modules\uws gyp ERR! node -v v8.11.1 gyp ERR! node-gyp -v v3.6.2 gyp ERR! not ok Running npm install sass manually before re-running npm install for ui-kit-starter appeared to solve the issue Hi @gordongrace thanks for the detailed issue. I currently don't have a windows device however I'm happy to look into this in more detail tomorrow. I did a google search around the error you received. Error: Can't find Python executable "python" It sounds like there is a problem with Windows 10 connecting to python with NPM. Maybe you can have a look at this issue for windows build tools: https://github.com/felixrieseberg/windows-build-tools/issues/56#issuecomment-308739624 Another solution may be removing your node_modules folder and running npm install again. I just installed the uikit-starter on windows without any issues. Potentially the download for node-sass failed which is why reinstalling it fixed your problem. If you notice the problem again please let me know happy to re open the issue.
gharchive/issue
2018-04-16T22:59:50
2025-04-01T06:44:22.173206
{ "authors": [ "alex-page", "gordongrace" ], "repo": "govau/uikit-starter", "url": "https://github.com/govau/uikit-starter/issues/12", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2375107879
🛑 Crawler APIs is down In f86cb0e, Crawler APIs (https://crawler.ritamdigital.org/services/ritam/api/posts/top-headlines/tag/top-stories/editor) was down: HTTP code: 500 Response time: 11695 ms Resolved: Crawler APIs is back up in 38e0562 after 6 minutes.
gharchive/issue
2024-06-26T11:42:54
2025-04-01T06:44:22.175905
{ "authors": [ "govindbhardwaj" ], "repo": "govindbhardwaj/monitor-ritam", "url": "https://github.com/govindbhardwaj/monitor-ritam/issues/330", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
110035027
Not working on S3 On S3, when click on FAB, the sheet show at the top corner and just a small part visible. When click somewhere else on screen trying to cancel the sheet, FAB button stays hidden. I'm using the FAB implementation from your sample app. Works fine on Nexus 6 Could you post a screenshot of what you're seeing? Also, what version of Android is it running? First one is top left, second one should show the other FAB. All happens on pre-lolipop samsung device Is the sample app working fine on your device? No response, feel free to reopen.
gharchive/issue
2015-10-06T15:25:33
2025-04-01T06:44:22.185186
{ "authors": [ "Lesilva", "gowong" ], "repo": "gowong/material-sheet-fab", "url": "https://github.com/gowong/material-sheet-fab/issues/14", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
185267097
Fill in organism names in database After importing data from CRISPRdb as described in Issue #99, the Organism table still needs more information filled in (just the organism name at present). This information can be fetched from NCBI using the bacterial accession number (i.e. NC_000854). We have a script that does this - acc2gb.py. This returns a large file with all the information we could possibly want about the input list of accession numbers. Another script processes this - bac_info_parser - and makes a dictionary where the keys are the accession numbers in the input file and the values are the organism name and taxonomic information. The function organism_name_update.py This function should: check for accession numbers in the Organism table that don't have an organism name call another function that checks if an organism file has been downloaded from NCBI - this is in progress here. This is optional at this point. modify or use bac_info_parser to extract the organism name based on the accession number Enter the organism name in the database Example: Let's say the Organism table looks like this: OrganismID OrganismName Accession 1 NULL NC_000853 Then after this function is run it should look like this: OrganismID OrganismName Accession 1 Thermotoga maritima MSB8 NC_000853 Done in PR #107
gharchive/issue
2016-10-26T00:22:19
2025-04-01T06:44:22.191789
{ "authors": [ "mbonsma" ], "repo": "goyalsid/phageParser", "url": "https://github.com/goyalsid/phageParser/issues/101", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }