repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
swiftlang/swift
20dd7577cbdd188bd65e68449132f3e0af527a56
1fa08f7ba705d066ac622eb31278ebe31baba5b0
Fix test on linux
[ { "path": "test/embedded/existential-class-bound8.swift", "patch": "@@ -13,7 +13,7 @@\n \n \n // ORIGINBINARY-NOT: e8MyModule0A5ClassCAA08InternalC5BoundAAWP\n-// CLIENTBINARY: S _$e8MyModule0A5ClassCAA08InternalC5BoundAAWP\n+// CLIENTBINARY: {{(S|V)}} _$e8MyModule0A5ClassCAA08InternalC5BoundAAWP\n \n // BE...
2026-01-13T16:41:49
golang/go
fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb
1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1
os: do not follow dangling symlinks in Root when O_CREATE|O_EXCL on AIX OpenFile with O_CREATE|O_EXCL should not follow dangling symlinks. On AIX it does, because AIX's openat(2) apparently returns ELOOP in this case. Most Unices return EEXIST. Ensure that we never follow symlinks in the final component of the path w...
[ { "path": "src/os/root_unix.go", "patch": "@@ -83,8 +83,18 @@ func rootOpenFileNolog(root *Root, name string, flag int, perm FileMode) (*File,\n \tfd, err := doInRoot(root, name, nil, func(parent int, name string) (fd int, err error) {\n \t\tignoringEINTR(func() error {\n \t\t\tfd, err = unix.Openat(parent,...
2025-05-30T21:05:10
denoland/deno
9b2b1c41f53faeff8c8707bec3ed23d02661601c
6002d2624e567d92c5d659be77dfa14fc4db28fa
fix(cli): configure v8 isolate with cgroups-constrained memory limit (#29078) This change configures V8 isolates to respect memory limits imposed by cgroups on Linux. It adds support for detecting both cgroups v1 and v2 memory limits, enabling Deno to properly adapt to containerized environments with memory constrain...
[ { "path": "cli/args/flags.rs", "patch": "@@ -1213,6 +1213,7 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <g>DENO_TLS_CA_STORE</> Comma-separated list of order dependent certificate stores.\n Possible values: \"system\", \"mozilla\" <p(245)>(defaults to \"mozilla\")</>\n <g...
2025-05-13T15:07:59
mrdoob/three.js
4acb78002425969f7c0cf46423ea5f728c41dfbc
cf7a4643736ecc95210718c06f6c27f04e3fd8fc
WebGPURenderer: bug fixes for WebGLBackend (#27410) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/common/Renderer.js", "patch": "@@ -298,6 +298,7 @@ class Renderer {\n \t\t\trenderContext.depthTexture = renderTargetData.depthTexture;\n \t\t\trenderContext.width = renderTargetData.width;\n \t\t\trenderContext.height = renderTargetData.height;\n+\t\t\trenderContext.render...
2023-12-20T14:44:55
tensorflow/tensorflow
900d4c4de113890017427e7f84d9cb7015f970a0
bcf015cf00be006de7f7180cd76045a201d55f9f
Move KernelArgs into its own file This is a pure cleanup change that moves the `KernelArgs` type and its related functions into its own file. In detail this is doing the following: - Moves `stream_executor::KernelArgs` and related types and functions from `kernel.h` into the new file `kernel_args.h` - Move the corres...
[ { "path": "third_party/xla/xla/stream_executor/BUILD", "patch": "@@ -638,10 +638,10 @@ xla_cc_test(\n \n cc_library(\n name = \"kernel\",\n- srcs = [\"kernel.cc\"],\n hdrs = [\"kernel.h\"],\n deps = [\n \":device_memory\",\n+ \":kernel_args\",\n \":kernel_metadata\",\n ...
2025-11-11T09:25:40
golang/go
1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1
a35701b3525ccd140995a216758760c60e7c58d7
net/http: make the zero value of CrossOriginProtection work Currently, CrossOriginProtection must be constructed by NewCrossOriginProtection. If you try to use the zero value, most methods will panic with a nil dereference. This CL makes CrossOriginProtection use on-demand initialization instead, so the zero value ha...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -26,23 +26,23 @@ import (\n // Requests without Sec-Fetch-Site or Origin headers are currently assumed to be\n // either same-origin or non-browser requests, and are allowed.\n //\n+// The zero value of CrossOriginProtection is valid and has no trusted origins\...
2025-06-10T16:26:03
swiftlang/swift
2194b5139a0d579a8af138532555bcc47be92beb
355424f8b50f2b7b97f64f86854176e39ce667d3
SILGen: More useful fatal error message from useConformance() When we find an invalid conformance here, we would print a message with no further information. Change the method to take a SILInstruction as well, since we have one most of the time. If an instruction is provided, we print it out together with the parent S...
[ { "path": "lib/SILGen/SILGen.h", "patch": "@@ -607,18 +607,19 @@ class LLVM_LIBRARY_VISIBILITY SILGenModule : public ASTVisitor<SILGenModule> {\n void emitLazyConformancesForType(NominalTypeDecl *NTD);\n \n /// Mark a protocol conformance as used, so we know we need to emit it if\n- /// it's in our TU....
2026-01-13T13:36:23
denoland/deno
6002d2624e567d92c5d659be77dfa14fc4db28fa
1022decc799ee2f811d42f749c1af89ccb0d75e8
fix(ext/node): allow `rejectUnauthorized: false` in `node:tls` (#29245) Fix #29228 Allow disable TLS cert verification using `options.rejectUnauthorized`. If passed. `--unsafely-ignore-certificate-errors` overrides `rejectUnauthorized: false`
[ { "path": "ext/net/02_tls.js", "patch": "@@ -181,12 +181,29 @@ async function startTls(\n caCerts = [],\n alpnProtocols = undefined,\n } = { __proto__: null },\n+) {\n+ return startTlsInternal(conn, {\n+ hostname,\n+ caCerts,\n+ alpnProtocols,\n+ });\n+}\n+\n+function startTlsInternal(\...
2025-05-13T12:13:58
mrdoob/three.js
3e1c5f4e5733541b2cb7456488016cccc3e92ac1
fe312e19c2d8fa4219d035f0b83bc13a46fb1927
Nodes: use relative references inside examples/jsm (#27381) Fixes https://github.com/mrdoob/three.js/issues/27354
[ { "path": "examples/jsm/loaders/MaterialXLoader.js", "patch": "@@ -19,7 +19,7 @@ import {\n \tmx_safepower, mx_contrast,\n \tmx_srgb_texture_to_lin_rec709,\n \tsaturation\n-} from 'three/nodes';\n+} from '../nodes/Nodes.js';\n \n const colorSpaceLib = {\n \tmx_srgb_texture_to_lin_rec709", "additions": 1...
2023-12-20T01:37:40
tensorflow/tensorflow
ad0687cd49476d840fb14efe27e45abaca3aeefd
6757a4216da336e9f65b6976608563d436dd925f
[XLA:GPU] Avoid running out of shared memory for prefix sum kernel. Experimentation shows that with 64 bit types we would run out of shared memory with block size 1024, so only allow up to block size 512. PiperOrigin-RevId: 830748681
[ { "path": "third_party/xla/xla/stream_executor/cuda/cub_prefix_sum_kernel_cuda.cu.cc", "patch": "@@ -31,8 +31,8 @@ namespace {\n template <unsigned int BLOCK_SIZE, typename ElementT>\n __device__ void RowPrefixSum(const ElementT* data_in, ElementT* data_out,\n size_t num_items) ...
2025-11-11T06:23:54
golang/go
a35701b3525ccd140995a216758760c60e7c58d7
a189516d3a1623f2560f80569c4b64bdffc4ac78
cmd/dist: only install necessary tools when doing local test Instead of installing all of cmd, install only the tools that cmd/dist would normally install. Also, remove the addition of the buildid tool to the list of commands in the toolchain in debug mode. The uses of buildid were removed in CL 451360. For #71867 ...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1390,7 +1390,21 @@ func toolenv() []string {\n \treturn env\n }\n \n-var toolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\", \"cmd/preprofile\"}\n+var (\n+\ttoolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\"...
2025-06-10T15:12:10
denoland/deno
1022decc799ee2f811d42f749c1af89ccb0d75e8
acd0c94b4670a1d79295c59d71d8e470b60c4288
fix(ext/node): align input validation of Buffer.compare (#29275)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -382,25 +382,14 @@ const BufferIsBuffer = Buffer.isBuffer = function isBuffer(b) {\n };\n \n const BufferCompare = Buffer.compare = function compare(a, b) {\n- if (isUint8Array(a)) {\n- a = BufferFrom(\n- a,\n- TypedArrayPrototyp...
2025-05-13T08:14:19
mrdoob/three.js
e041e082b7e437a9a226b60851016c1c98022c01
74ca7d86a7110e670f8d84f21a1dcd7567ecc797
WebGLRenderer: Add support for AgX Tone Mapping (#27366) * Add support for AGX tone mapping * Update tonemapping example * Update test * AGX -> AgX * glsl lint, suffixes fix * Adjust tone mapping constant values * Update src/renderers/shaders/ShaderChunk/tonemapping_pars_fragment.glsl.js Co-author...
[ { "path": "examples/jsm/postprocessing/OutputPass.js", "patch": "@@ -5,6 +5,7 @@ import {\n \tLinearToneMapping,\n \tReinhardToneMapping,\n \tCineonToneMapping,\n+\tAgXToneMapping,\n \tACESFilmicToneMapping,\n \tSRGBTransfer\n } from 'three';\n@@ -59,6 +60,7 @@ class OutputPass extends Pass {\n \t\t\telse i...
2023-12-19T15:22:22
tensorflow/tensorflow
543b842731033b73b406ffa8b17f810a783484b6
478f5c6d3d3810f7f61543e670819af7f2966cc5
Remove spurious error log messages. PiperOrigin-RevId: 830679060
[ { "path": "third_party/xla/xla/backends/cpu/transforms/library_matcher.h", "patch": "@@ -43,6 +43,9 @@ class LibraryMatcher {\n case DebugOptions::LIBRARY_FUSION_TYPE_ELTWISE:\n fuse_eltwise_ = true;\n break;\n+ // Not intended to be used by LibraryMatcher.\n+ case ...
2025-11-11T02:24:15
golang/go
a189516d3a1623f2560f80569c4b64bdffc4ac78
f18d046568496dd331657df4ba90218821cb9ffd
runtime: don't do a direct G handoff in semrelease on systemstack semrelease is safe to call on the system stack (since it just readies goroutines) except for the fact that it might perform a direct G handoff and call into the scheduler. If handoff is set to false this is exceptionally rare, but could happen, and has ...
[ { "path": "src/runtime/sema.go", "patch": "@@ -261,11 +261,13 @@ func semrelease1(addr *uint32, handoff bool, skipframes int) {\n \t\t\ts.ticket = 1\n \t\t}\n \t\treadyWithTime(s, 5+skipframes)\n-\t\tif s.ticket == 1 && getg().m.locks == 0 {\n+\t\tif s.ticket == 1 && getg().m.locks == 0 && getg() != getg()....
2025-06-09T21:45:33
denoland/deno
acd0c94b4670a1d79295c59d71d8e470b60c4288
eb1303b8f24b1857a709cd8ea073dc1093f3c721
fix(ext/node): add AES CTR to supported ciphers list (#29273) Fix https://github.com/denoland/deno/issues/29047
[ { "path": "ext/node/polyfills/internal/crypto/util.ts", "patch": "@@ -77,6 +77,9 @@ const supportedCiphers = [\n \"aes256\",\n \"aes-128-gcm\",\n \"aes-256-gcm\",\n+ \"aes-128-ctr\",\n+ \"aes-192-ctr\",\n+ \"aes-256-ctr\",\n ];\n \n export function getCiphers(): string[] {", "additions": 3, ...
2025-05-13T04:15:36
mrdoob/three.js
74ca7d86a7110e670f8d84f21a1dcd7567ecc797
73fafde8d07c21e38c57998716e71560d5c1d20f
WebGPURenderer: Compute Snow Example (#27400) * NodeMaterial: Check toneMapped=true * Renderer: overrideMaterial compatible with positionNode * GaussianBlurNode: Added resolution * add `webgpu_compute_particles_snow` example * update * fix scale offset collision * update initial pos y
[ { "path": "examples/files.json", "patch": "@@ -322,6 +322,7 @@\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\",\n+\t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_compute_points\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_textu...
2023-12-19T15:08:29
kubernetes/kubernetes
f3d1fd23c576f4691a336444496ab7e6c619624c
b5c4ebc8985b3de7acf7e69fc75068d1a2ee4f41
Fix comments and reformat import statements
[ { "path": "staging/src/k8s.io/client-go/gentype/type.go", "patch": "@@ -23,9 +23,9 @@ import (\n \n \tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n \t\"k8s.io/apimachinery/pkg/runtime\"\n-\ttypes \"k8s.io/apimachinery/pkg/types\"\n-\twatch \"k8s.io/apimachinery/pkg/watch\"\n-\trest \"k8s.io/client-go/re...
2025-10-20T13:55:12
golang/go
ee7bfbdbcc75c17c9f6f357f7950cfae0d63811c
985d600f3aa8654b854f8b2c822552c052ed3d30
cmd/compile/internal/ssa: fix PPC64 merging of (AND (S[RL]Dconst ...) CL 622236 forgot to check the mask was also a 32 bit rotate mask. Add a modified version of isPPC64WordRotateMask which valids the mask is contiguous and fits inside a uint32. I don't this is possible when merging SRDconst, the first check should a...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -1583,6 +1583,11 @@ func GetPPC64Shiftme(auxint int64) int64 {\n // operation. Masks can also extend from the msb and wrap to\n // the lsb too. That is, the valid masks are 32 bit strings\n // of the form: 0..01..10..0 or 1..10..01..1 or 1....
2025-06-04T13:51:11
mrdoob/three.js
73fafde8d07c21e38c57998716e71560d5c1d20f
e5c2a56d035df52b3b4d6f4a066e65bc1941f634
WebGPURenderer: Backdrop Water Example (#27397) * fix triplanar with dynamic mesh * add example: `webgpu_backdrop_water` * fix names * cleanup * cleanup * revision * Update puppeteer.js * revision * revision * caustic * revision * revision * Update webgpu_backdrop_water.html * up...
[ { "path": "examples/files.json", "patch": "@@ -316,6 +316,7 @@\n \t\"webgpu (wip)\": [\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_backdrop_area\",\n+\t\t\"webgpu_backdrop_water\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_compute_audio\",", "additions": 1,...
2023-12-19T14:56:12
denoland/deno
eb1303b8f24b1857a709cd8ea073dc1093f3c721
363223aa6afbd33545e597b35af05db79a228027
fix(ext/node): use primordials in `ext/node/polyfills/internal/querystring.ts` (#29264)
[ { "path": "ext/node/polyfills/internal/querystring.ts", "patch": "@@ -1,13 +1,22 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { ERR_INVALID_URI } from \"ext:deno_no...
2025-05-13T02:06:25
kubernetes/kubernetes
f6e2ea7b96835954271f74bd857d8ade05a3f603
e2453c503ea3c3961e78f963ade4d7cbe1ba5f46
build/common.sh: fix support for Rootless Docker In the case of Rootless mode, `docker run` should not be invoked with `--user`. Fix issue 134669 Regression in PR 134510 Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
[ { "path": "build/common.sh", "patch": "@@ -322,6 +322,10 @@ function kube::build::destroy_container() {\n \"${DOCKER[@]}\" rm -f -v \"$1\" >/dev/null 2>&1 || true\n }\n \n+function kube::build::is_docker_rootless() {\n+ \"${DOCKER[@]}\" info --format '{{json .SecurityOptions}}' | grep -q \"name=rootless\...
2025-10-18T16:01:10
golang/go
985d600f3aa8654b854f8b2c822552c052ed3d30
848a768ba76d7c386c2aa4f05bc2e9e51b5948b9
runtime: use small struct TestSynctest to ensure cleanups run Finalizers and cleanup funcs weren't running on the windows-arm64 builder. Put finalizers/cleanups on a small struct containing a pointer rather than an *int, which fixes the problem. Also uncomment a synctest.Wait that was accidentally commented out. Fix...
[ { "path": "src/runtime/testdata/testsynctest/main.go", "patch": "@@ -9,6 +9,7 @@ import (\n \t\"runtime\"\n \t\"runtime/metrics\"\n \t\"sync/atomic\"\n+\t\"unsafe\"\n )\n \n // This program ensures system goroutines (GC workers, finalizer goroutine)\n@@ -27,6 +28,11 @@ func numGCCycles() uint64 {\n \treturn...
2025-06-06T19:59:04
denoland/deno
363223aa6afbd33545e597b35af05db79a228027
865d046ba3b43005d22680060c925d8211b389b8
fix(ext/node): export CallTracker as named export (#29271)
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -938,6 +938,7 @@ export default Object.assign(assert, {\n \n export {\n AssertionError,\n+ CallTracker_ as CallTracker,\n deepEqual,\n deepStrictEqual,\n doesNotMatch,", "additions": 1, "deletions": 0, "language": "Unknown" }, {...
2025-05-13T01:15:48
mrdoob/three.js
e5c2a56d035df52b3b4d6f4a066e65bc1941f634
722bb0974ce326c9b0423554f18697df0cea6e2e
WebGPURenderer: Fix the use of same Material with different Skeleton (#27398)
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -129,6 +129,12 @@ export default class RenderObject {\n \n \t\t}\n \n+\t\tif ( object.skeleton ) {\n+\n+\t\t\tcacheKey += object.skeleton.uuid + ',';\n+\n+\t\t}\n+\n \t\tif ( object.morphTargetInfluences ) {\n \n \t\t\tcacheKey += objec...
2023-12-19T00:31:38
tensorflow/tensorflow
dfa9e6a1496a227bbd4d442763458592ae435332
08b8916592017be00ed2145bc8db5bccb530e16a
Fix tosa compile error (#104129) Change-Id: If68df1f1c4c0eee0105b06709801203db7aab3ae Signed-off-by: Tai Ly <tai.ly@arm.com>
[ { "path": "tensorflow/compiler/mlir/tosa/tfl_passes.h", "patch": "@@ -42,8 +42,8 @@ struct TOSATFLLegalizationPipelineOptions\n llvm::cl::desc(\"Dequantize the TFLite softmax\"), llvm::cl::init(false)};\n \n TOSATFLLegalizationPipelineOptions() {\n- disabled_patterns = std::nullopt;\n- enabled...
2025-11-10T18:54:02
mrdoob/three.js
c71a2d852d07a2a415df84504c22d4bbfb37befb
6b19d228468ca9111e9e108912e2c3a5d516d9d6
Added THREE.Timer. (#17912) * Added THREE.Timer. * Timer: Make now() private. * Timer: Fix typo. * Timer: Shorten method and variable names. * Timer: Remove js and add d.ts file. * Timer: Transform to class. * Update webgl_morphtargets_sphere.html * Delete Timer.d.ts * Update webgl_morphtargets...
[ { "path": "examples/jsm/misc/Timer.js", "patch": "@@ -0,0 +1,144 @@\n+class Timer {\n+\n+\tconstructor() {\n+\n+\t\tthis._previousTime = 0;\n+\t\tthis._currentTime = 0;\n+\t\tthis._startTime = now();\n+\n+\t\tthis._delta = 0;\n+\t\tthis._elapsed = 0;\n+\n+\t\tthis._timescale = 1;\n+\n+\t\tthis._useFixedDelt...
2023-12-16T14:26:03
golang/go
848a768ba76d7c386c2aa4f05bc2e9e51b5948b9
049a5e603634dfdbc73b4255c7e72eabc3922d5b
runtime: clarify stack traces for bubbled goroutines Use the synctest bubble ID to identify bubbles in traces, rather than the goroutine ID of the bubble's root goroutine. Some waitReasons include a "(synctest)" suffix to distinguish a durably blocking state from a non-durable one. For example, "chan send" vs. "chan ...
[ { "path": "src/runtime/runtime2.go", "patch": "@@ -1093,10 +1093,10 @@ const (\n \twaitReasonGCWeakToStrongWait // \"GC weak to strong wait\"\n \twaitReasonSynctestRun // \"synctest.Run\"\n \twaitReasonSynctestWait // \"synctest.Wai...
2025-06-05T21:21:47
denoland/deno
865d046ba3b43005d22680060c925d8211b389b8
2f876b52d15efcb900776a0b56e7f8c751ba4199
fix(ext/node): use primordials in `ext/node/polyfills/internal/timers.mjs` (#29269) Towards #24236. Replaces JS intrinsics with equivalent primordial versions.
[ { "path": "ext/node/polyfills/internal/timers.mjs", "patch": "@@ -1,14 +1,16 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore...
2025-05-13T00:09:51
swiftlang/swift
77679131d18111f4b5ca07dc18b72824b2dd4f2c
15edad813ddf8cb9289a1eedeab7f014062eb5c6
utils: fix the check-incremental script Instead of `-sil-output-path`/`-ir-output-path` use the new `-save-sil`/`-save-irgen`/`-save-ir` options, because the former options are not compatible with `-supplementary-output-file-map`. Also, write the LLVM IR directly after IRGen to catch potential non-determinisms in IRGe...
[ { "path": "utils/check-incremental", "patch": "@@ -52,9 +52,11 @@ def print_diff(output_file, suffix):\n \n def print_ir_diffs(output_file):\n if EMIT_IR and VERBOSE:\n- print(\"\\n## SIL differences:\")\n+ print(\"\\n## SIL differences:\", flush=True)\n print_diff(output_file, \"....
2026-01-13T09:45:18
tensorflow/tensorflow
8d5a5847a892a8bf4d794189675fd734318a20a5
f4382ba1f8bc9f268230ff85022ca4986a4e42cc
build_config: Disable gtest_fail_if_no_test_selected. The iteration loop of debugging sharded tests with this flag is very painful, and internal tests can't run with it in presubmit, so we end up with empty shards failing because of this in postsubmit, which then need aggravating trivial fixes. PiperOrigin-RevId: 830...
[ { "path": "third_party/xla/xla/tsl/platform/default/build_config.bzl", "patch": "@@ -438,7 +438,7 @@ def strict_cc_test(\n shuffle_tests = True,\n args = None,\n fail_if_no_test_linked = True,\n- fail_if_no_test_selected = True,\n+ fail_if_no_test_selected = False,\n ...
2025-11-10T17:47:15
mrdoob/three.js
f765d87b6fc86256adeb680056d316609171a30f
7f29595326ea71d8e7479172caed0586354ad1c9
WebGLRenderer: Add `WEBGL_clip_cull_distance` support. (#27371) * init WEBGL_clip_cull_distance support * remove unecessary conditions webgl2 * try fix directx * feedbacks * remove unecessary code * Update webgl_clipculldistance.html Style clean up. * Update WebGLExtensions.js * Update webgl_cl...
[ { "path": "docs/api/ar/materials/ShaderMaterial.html", "patch": "@@ -327,8 +327,8 @@ <h3>[property:Object extensions]</h3>\n \tderivatives: false, // set to use derivatives\n \tfragDepth: false, // set to use fragment depth values \n \tdrawBuffers: false, // set to use draw buffers \n-\tshaderTextureLOD: fa...
2023-12-15T11:44:19
golang/go
049a5e603634dfdbc73b4255c7e72eabc3922d5b
ac1686752bf65eaefebb340bd642177e2cc27bde
runtime: return a different bubble deadlock error when main goroutine is done The synctest.Test function waits for all goroutines in a bubble to exit before returning. If there is ever a point when all goroutines in a bubble are durably blocked, it panics and reports a deadlock. Panic with a different message dependi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -488,7 +488,7 @@ func TestDeadlockRoot(t *testing.T) {\n }\n \n func TestDeadlockChild(t *testing.T) {\n-\tdefer wantPanic(t, \"deadlock: all goroutines in bubble are blocked\")\n+\tdefer wantPanic(t, \"deadlock: main bubble goroutine has exit...
2025-06-05T20:55:35
kubernetes/kubernetes
0613fdeccb5acf249bc281fc82a1889cfe51b729
e34f01402f2be14e68b03a58c054f1a86bff55b9
kubeadm: add missing cluster-info context validation When retrieving the cluster-info CM, ensure the cluster pointed out by the current context in the kubeconfig is validated. Add unit test for the above. Make the function GetClusterFromKubeConfig() to return various errors. Handle the errors on call sites. Add unit...
[ { "path": "cmd/kubeadm/app/cmd/join.go", "patch": "@@ -692,7 +692,10 @@ func fetchInitConfigurationFromJoinConfiguration(cfg *kubeadmapi.JoinConfigurati\n \t}\n \n \t// Create the final KubeConfig file with the cluster name discovered after fetching the cluster configuration\n-\t_, clusterinfo := kubeconfig...
2025-10-19T15:03:46
denoland/deno
1b3630438132690e9b6159d84a6bce3c40a152fa
5ddbb36d3fdb45fd7c7b0fc92948db23dc4bff35
fix(check): write lockfile after type checking (#29265) Type checking might discover `npm:@types/node`, so write after type checking.
[ { "path": "cli/module_loader.rs", "patch": "@@ -220,11 +220,6 @@ impl ModuleLoadPreparer {\n \n self.graph_roots_valid(graph, roots, allow_unknown_media_types)?;\n \n- // write the lockfile if there is one\n- if let Some(lockfile) = &self.lockfile {\n- lockfile.write_if_changed()?;\n- }\n-...
2025-05-12T19:31:38
tensorflow/tensorflow
f4382ba1f8bc9f268230ff85022ca4986a4e42cc
17c7a2d697ac73feb3c98437dadbcce0ec9c6b17
[XLA:GPU] Fix BuffersChecksumThunk breaking on multi-GPU setups Bug discovered when investigating NaN checker slowdown. Same issue applies to BuffersChecksumThunk and BuffersFloatCheckThunk. PiperOrigin-RevId: 830456321
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -3139,16 +3139,23 @@ cc_library(\n \"//xla/stream_executor/gpu:gpu_kernel_registry\",\n \"//xla/tsl/platform:errors\",\n \"//xla/tsl/platform:statusor\",\n+ \"@com_google_absl//absl/base:core_headers\",\n...
2025-11-10T16:32:14
golang/go
da0e8c4517178f545ee78b11e3d91e1daa7ce07a
7800f4f0adbc749be95d13be48524e9702c50bbc
cmd/compile: relax reshaping condition CL 641955 changes the Unified IR reader to not doing shapify when reading reshaping expression. However, this condition only matters with pointer type shaping, which will lose the original type, causes the reshaping ends up with a completely different type. This CL relaxes the c...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -1014,7 +1014,25 @@ func (pr *pkgReader) objDictIdx(sym *types.Sym, idx index, implicits, explicits\n \t// arguments.\n \tfor i, targ := range dict.targs {\n \t\tbasic := r.Bool()\n-\t\tif dict.shaped && !pr.reshaping {\n+\t\tisPointerShape ...
2025-06-03T14:35:20
denoland/deno
0598b62c4f4abe3ddd604f8fed0bde913e7d6660
9cb72064d307f36a7c9433d861ed1e5d6cb173df
chore: update "Build from source" link in README (#29258) Fixes https://github.com/denoland/deno/issues/29253
[ { "path": "README.md", "patch": "@@ -54,8 +54,8 @@ winget install --id=DenoLand.Deno\n \n ### Build and install from source\n \n-Complete instructions for building Deno from source can be found in the manual\n-[here](https://docs.deno.com/runtime/manual/references/contributing/building_from_source).\n+Compl...
2025-05-12T06:41:53
mrdoob/three.js
3d65226309fc3a474991cb2911674d1eca171914
64467c0166e3a7a36f513052882519c15a3ece95
WebGPURenderer: PostProcessing + GaussianBlurNode + QuadMesh (#27369) * WebGPURenderer: PostProcessing + GaussianBlurNode * update example * revision * revision * Fix RTT & Framebuffer flipY * Fix multi-scene backgroundNode * fixes * new webgpu_portal example * fix title * cleanup * clean...
[ { "path": "examples/files.json", "patch": "@@ -349,6 +349,7 @@\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",\n+\t\t\"webgpu_portal\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",", "additions": 1, "deletions": 0, "langu...
2023-12-15T04:09:26
golang/go
7800f4f0adbc749be95d13be48524e9702c50bbc
d184f8dc020ac635cea02c046ab1d0b87dfd624d
log/slog: fix level doc on handlers Fixed doc on {JSON,Text}Handler.Handle: the level is never omitted. Fixes #73943. Change-Id: Ia470cbe5d713ab18dd80eeea1c0ab8f5e6d30f3f Reviewed-on: https://go-review.googlesource.com/c/go/+/680055 Auto-Submit: Jonathan Amsterdam <jba@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/log/slog/json_handler.go", "patch": "@@ -63,9 +63,7 @@ func (h *JSONHandler) WithGroup(name string) Handler {\n // Otherwise, the key is \"time\"\n // and the value is output as with json.Marshal.\n //\n-// If the Record's level is zero, the level is omitted.\n-// Otherwise, the key is \"leve...
2025-06-08T12:49:25
mrdoob/three.js
37cb4ae8dd1c035182c544b54965bd81e8e01feb
fff4f00482cb260588fc6dc6c7488c88b42b51a0
WebGLUniformsGroups: Fix and improve UBOs array caching system (#27374) * fix and improve UBOs array caching system * simplify cache check
[ { "path": "src/renderers/webgl/WebGLUniformsGroups.js", "patch": "@@ -102,17 +102,17 @@ function WebGLUniformsGroups( gl, info, capabilities, state ) {\n \n \t\t\t\tconst uniform = uniformArray[ j ];\n \n-\t\t\t\tif ( hasUniformChanged( uniform, i, cache ) === true ) {\n+\t\t\t\tif ( hasUniformChanged( unif...
2023-12-14T10:21:06
denoland/deno
9cb72064d307f36a7c9433d861ed1e5d6cb173df
e601df6bfbf9419acd6903f559f7f1fa9aa20021
fix(ext/node): implement dgram setMulticastLoopback (#29241) `npm:multicast-dns` works in Deno now. Ref https://github.com/denoland/deno/issues/18324
[ { "path": "ext/net/01_net.js", "patch": "@@ -378,14 +378,19 @@ class Listener {\n }\n }\n \n-const _setBroadcast = Symbol(\"setBroadcast\");\n const _dropMembership = Symbol(\"dropMembership\");\n+const _setBroadcast = Symbol(\"setBroadcast\");\n+const _setMultiLoopback = Symbol(\"setMultiLoopback\");\n c...
2025-05-12T03:23:15
tensorflow/tensorflow
43aae2e9cd074c6473a8e414b56021e070b780b5
a819c35e82964a758211bb0aac213c95dccce77f
[XLA:GPU] Fix BuffersFloatCheckThunk breaking on multi-GPU setups Each kernel needs to be loaded on every device separately. Attempting to run a kernel handle from one device on another fails with "invalid handle" error. Thunk objects are reused across all devices available locally, so they need to use correct kernel...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -3202,6 +3202,7 @@ cc_library(\n \"@com_google_absl//absl/log\",\n \"@com_google_absl//absl/status\",\n \"@com_google_absl//absl/strings\",\n+ \"@com_google_absl//absl/synchronization\",\n ] + if_cuda...
2025-11-10T15:52:53
kubernetes/kubernetes
4ba0891cf461849f403b542ffa43d24754e5e5f4
b067e452909f31fe3a8b018696678737ad3fc66e
Fixing data race in etcd watcher
[ { "path": "staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go", "patch": "@@ -24,6 +24,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"time\"\n \n \tclientv3 \"go.etcd.io/etcd/client/v3\"\n@@ -55,17 +56,17 @@ const (\n var defaultWatcherMaxLimit int64 = maxLimit\n...
2025-10-18T13:42:51
swiftlang/swift
f53014312e823d46d46ed26aca27993ff3cc8959
2a653338c60052af23cf4eeee162bfaa8e70fa02
ClangImporter: Fix bogus deprecation warning
[ { "path": "lib/ClangImporter/SwiftifyDecl.cpp", "patch": "@@ -42,7 +42,7 @@ using namespace importer;\n \n #ifndef NDEBUG\n #define DBGS llvm::dbgs() << \"[swiftify:\" << __LINE__ << \"] \"\n-#define DUMP(x) DLOG(\"\"); x->dump()\n+#define DUMP(x) DLOG(\"\"); x->dump(llvm::errs())\n #define DLOG_SCOPE(x) DL...
2026-01-13T01:19:43
golang/go
d184f8dc020ac635cea02c046ab1d0b87dfd624d
0ccfbc834a489f92745613b2e06275c2cfe6ace0
runtime: check for gsignal in racecall on loong64 This issue has been fixed for amd64, arm64 and other platforms in CL 643875, but it was missed when the race support was submitted for loong64. Fixes #71395. Change-Id: I678f381e868214f1b3399be43187db49e1660933 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/runtime/race_loong64.s", "patch": "@@ -461,8 +461,13 @@ TEXT\tracecall<>(SB), NOSPLIT|NOFRAME, $0-0\n \t// Switch to g0 stack.\n \tMOVV\tR3, R23\t// callee-saved, preserved across the CALL\n \tMOVV\tR1, R24\t// callee-saved, preserved across the CALL\n+\n+\t// Switch to g0 stack if we aren't ...
2025-06-05T11:23:55
mrdoob/three.js
9807b24377614a8198af843adfab97f8915cecfc
a633443de25d2aaa4fb5a3b3d441439ac0842694
Docs: Fixed import error (#27372)
[ { "path": "docs/examples/en/utils/SceneUtils.html", "patch": "@@ -21,7 +21,7 @@ <h2>Import</h2>\n \t\t</p>\n \n \t\t<code>\n-\t\t\timport { SceneUtils } from 'three/addons/utils/SceneUtils.js';\n+\t\t\timport * as SceneUtils from 'three/addons/utils/SceneUtils.js';\n \t\t</code>\n \n \t\t<h2>Methods</h2>", ...
2023-12-13T15:40:31
tensorflow/tensorflow
a819c35e82964a758211bb0aac213c95dccce77f
006b29324e6fc25450146aa4cf8166c7f8a26851
[XLA:CPU][XTile] Set the init value of the reductions tests to the neutral value. We were previously testing incorrect behavior as the init value of a reduce must be the neutral value of the reduce function, I am going to take advantage of this requirement so I need to update the tests first. PiperOrigin-RevId: 83043...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/tiled/tiled_kernel_test.py", "patch": "@@ -26,6 +26,13 @@\n create_literal = testlib_utilities.create_literal_from_np\n \n \n+class InputSpec:\n+\n+ def __init__(self, shape: tuple[int, ...], input_value):\n+ self.shape = shape\n+ self.input_value =...
2025-11-10T15:39:00
denoland/deno
e601df6bfbf9419acd6903f559f7f1fa9aa20021
853982238a8e5fe9fb3720b7dbd9cd0af79c6d22
fix: allow specifying otel config in `--env-file` (#29240) Alternative to https://github.com/denoland/deno/pull/28127 that does cli flag parsing, then env file loading, then resolves config with env vars. This also fixes several other issues related to env vars in the --env-file not being used for certain config. Cl...
[ { "path": "cli/args/flags.rs", "patch": "@@ -355,7 +355,7 @@ pub struct ServeFlags {\n pub watch: Option<WatchFlagsWithPaths>,\n pub port: u16,\n pub host: String,\n- pub worker_count: Option<usize>,\n+ pub parallel: bool,\n pub open_site: bool,\n }\n \n@@ -367,7 +367,7 @@ impl ServeFlags {\n ...
2025-05-12T01:09:52
kubernetes/kubernetes
786f4e9c20ae958895cd8e03fb504ac04f259ce9
7f50c56b1aee651924f39317329d33977f3c736a
fix validateFunctionShape nil pointer if RequestedToCapacityRatio not set Signed-off-by: bin <bin.pan@daocloud.io>
[ { "path": "pkg/scheduler/apis/config/validation/validation_pluginargs.go", "patch": "@@ -317,9 +317,17 @@ func ValidateNodeResourcesFitArgs(path *field.Path, args *config.NodeResourcesFi\n \t\t\tallErrs = append(allErrs, field.NotSupported(strategyPath.Child(\"type\"), args.ScoringStrategy.Type, sets.List(s...
2025-06-05T12:47:53
golang/go
0ccfbc834a489f92745613b2e06275c2cfe6ace0
78eadf5b3de568297456fe137b65ff16e8cc8bb6
os/signal: doc link to syscall.EPIPE Add godoc link for EPIPE error. Change-Id: I5df35f700684510328f92bb5d4946c5123ba5f2c Reviewed-on: https://go-review.googlesource.com/c/go/+/667757 Auto-Submit: Michael Knyszek <mknyszek@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Knyszek <mknysz...
[ { "path": "src/os/signal/doc.go", "patch": "@@ -98,12 +98,13 @@ the behavior depends on the file descriptor number. A write to a\n broken pipe on file descriptors 1 or 2 (standard output or standard\n error) will cause the program to exit with a SIGPIPE signal. A write\n to a broken pipe on some other file ...
2025-04-24T14:46:44
swiftlang/swift
c5189de1829b44f7aeddb319ac739f2856e565e3
123791a1323efd0d8d42bc74f7d1b20dc11c91e1
[ScanDependency] Fix canImport when versioned checks all eval to false Fix a corner case when following conditions are met in a single module: * Module A is imported in the current module * There exists a versioned `canImport` check for a module A * All `canImport` check within the module evaluated to false If all ab...
[ { "path": "lib/AST/ASTContext.cpp", "patch": "@@ -2844,15 +2844,19 @@ bool ASTContext::canImportModule(ImportPath::Module moduleName, SourceLoc loc,\n bool underlyingVersion) {\n llvm::VersionTuple versionInfo;\n llvm::VersionTuple underlyingVersionInfo;\n- if (!canImpo...
2026-01-12T23:49:13
tensorflow/tensorflow
088b21c29e0fdc058835145776cd27d8adb12686
7ea5845716a48c8476a0822c9256d28aeaaa988c
[XLA:GPU] Refactor: Separate Checksum and FloatCheck pass logic in ThunkBufferDebugPass This change refactors `ThunkBufferDebugPass::Run` to use distinct internal functions, `RunChecksumPassInternal` and `RunFloatCheckPassInternal`, for handling the Checksum and FloatChecker modes, respectively. This improves modulari...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -3005,6 +3005,7 @@ cc_library(\n \":buffers_float_check_thunk\",\n \":custom_call_thunk\",\n \":sequential_thunk\",\n+ \":shaped_slice\",\n \":thunk\",\n \":thunk_id\",\n \":thunk_...
2025-11-10T13:28:44
denoland/deno
853982238a8e5fe9fb3720b7dbd9cd0af79c6d22
2fe200f6efd77044f2bf66b0ba17bee10de738e0
fix(otel): don't panic when using worker threads (#29248) This commit changes how workers are spawned - instead of having a "sync" phase that creates a worker and only then moves to to an "async" block within a Tokio runtime, now a worker is spawned already on a Tokio runtime. Closes https://github.com/denoland/deno/...
[ { "path": "runtime/ops/worker_host.rs", "patch": "@@ -19,6 +19,7 @@ use deno_web::MessagePortError;\n use log::debug;\n \n use crate::ops::TestingFeaturesEnabled;\n+use crate::tokio_util::create_and_run_current_thread;\n use crate::web_worker::run_web_worker;\n use crate::web_worker::SendableWebWorkerHandle...
2025-05-12T00:51:08
golang/go
78eadf5b3de568297456fe137b65ff16e8cc8bb6
4d1c255f159d90557b43ede07f8b9a209e1fb49c
all: update vendored dependencies [generated] The Go 1.25 RC is due soon. This is the time to once again update all golang.org/x/... module versions that contribute packages to the std and cmd modules in the standard library to latest master versions. For #36905. [git-generate] go install golang.org/x/build/cmd/upda...
[ { "path": "src/cmd/go.mod", "patch": "@@ -4,18 +4,18 @@ go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.14.0\n-\tgolang.org/x/build v0.0.0-20250211223606-a5e3f75caa63\n-\tgolang.org/x/mod v0.24.1-0.20250508140430-9d3333156f46\n-\tgolang.org/x/sy...
2025-06-04T19:35:31
swiftlang/swift
3906a5b0403794aea18cd59e376a162ba0ba13b8
b37511ef429e7e5dd44d9d1297ade7931fcdc5f7
[IRGen] Fix direct result type mapping in IRGenThunk::emit rdar://167636802 The type was not mapped to its native representation before writing it into the combined explosion
[ { "path": "lib/IRGen/GenThunk.cpp", "patch": "@@ -493,8 +493,10 @@ void IRGenThunk::emit() {\n if (auto *structTy = dyn_cast<llvm::StructType>(combined.combinedTy)) {\n llvm::Value *expandedResult =\n llvm::UndefValue::get(combined.combinedTy);\n- for (size_t i = 0, ...
2026-01-12T20:39:54
denoland/deno
2fe200f6efd77044f2bf66b0ba17bee10de738e0
5ab029db2225d52e4fb90fd0acb727da407beb7d
fix(coverage): don't panic if all covered files are ignored via directive (#29250) Closes https://github.com/denoland/deno/issues/29218
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -740,6 +740,12 @@ pub fn cover_files(\n }\n }\n \n+ // All covered files, might have had ignore directive and we can end up\n+ // with no reports at this point.\n+ if file_reports.is_empty() {\n+ return Err(anyhow!(\"No covered files included i...
2025-05-12T00:47:32
tensorflow/tensorflow
8d416731843034c6917bcefed05962a07f851ee7
42eb0dbe341e4b16f829da6f123b57ee460906a9
PR #33656: [ROCm] Fix rocm device lib failure due to clash in include dirs Imported from GitHub PR https://github.com/openxla/xla/pull/33656 📝 Summary of Changes Fix build error reported here: https://github.com/openxla/xla/issues/33589 🎯 Justification https://github.com/openxla/xla/issues/33589 The issue happens ...
[ { "path": "third_party/xla/third_party/rocm_device_libs/build_defs.bzl", "patch": "@@ -2,110 +2,149 @@\n \n load(\"@bazel_skylib//lib:paths.bzl\", \"paths\")\n \n-def bitcode_library(\n- name,\n- srcs = [],\n- hdrs = [],\n- file_specific_flags = {}):\n- \"\"\"Builds a bitcode ...
2025-11-10T11:25:23
mrdoob/three.js
28f99d7da331de4cfa456a404e226f787974d57f
ca7261b12e3caebce06958bc08e8cc386dc333d4
Fix: CSM lights when shadow maps are disabled (#27358) * Fix indentation * Allow shadows to be disabled from GUI * Fix: when shadows are disabled, light contribution still needs to be considered
[ { "path": "examples/jsm/csm/CSMShader.js", "patch": "@@ -62,7 +62,7 @@ IncidentLight directLight;\n \tvec4 spotColor;\n \tvec3 spotLightCoord;\n \tbool inSpotLightMap;\n- \n+\n \t#if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0\n \tSpotLightShadow spotLightShadow;\n \t#endif\n@@ -112,76 +112,81 @...
2023-12-11T16:10:36
golang/go
4d1c255f159d90557b43ede07f8b9a209e1fb49c
3432c68467d50ffc622fed230a37cd401d82d4bf
net/http: strip sensitive proxy headers from redirect requests Similarly to Authentication entries, Proxy-Authentication entries should be stripped to ensure sensitive information is not leaked on redirects outside of the original domain. https://fetch.spec.whatwg.org/#authentication-entries Thanks to Takeshi Kaneko...
[ { "path": "src/net/http/client.go", "patch": "@@ -806,7 +806,8 @@ func (c *Client) makeHeadersCopier(ireq *Request) func(req *Request, stripSensit\n \t\tfor k, vv := range ireqhdr {\n \t\t\tsensitive := false\n \t\t\tswitch CanonicalHeaderKey(k) {\n-\t\t\tcase \"Authorization\", \"Www-Authenticate\", \"Cook...
2025-05-21T18:11:44
denoland/deno
5ab029db2225d52e4fb90fd0acb727da407beb7d
2a01ac448273ffe3a4b2774598fab196a2269668
fix(ext/node): use primordials in `ext/node/polyfills/internal/cli_table.ts` (#29257) Towards #24236. Replaces JS intrinsics with their equivalent primordial versions.
[ { "path": "ext/node/polyfills/internal/cli_table.ts", "patch": "@@ -1,10 +1,17 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-igno...
2025-05-12T00:47:28
swiftlang/swift
bd67f95305910d98e6d7e166488ee90c08c9a8f8
7c5c6658cceee4fe7d264b76a1f0e6c2275bec06
FP Parsing: Fix over-eager underflow check An early check for underflow was a bit too aggressive, resulting in values that would otherwise round up to the smallest subnormal failing to go through the regular rounding logic. Resolves #86462 Resolves rdar://167942063
[ { "path": "stdlib/public/core/FloatingPointFromString.swift", "patch": "@@ -593,7 +593,7 @@ fileprivate func hexFloat(\n return .infinity(sign: sign) // Overflow\n }\n \n- if binaryExponent < targetFormat.minBinaryExponent - targetFormat.significandBits + 1 {\n+ if binaryExponent < targetFormat.minB...
2026-01-12T19:52:31
mrdoob/three.js
ca7261b12e3caebce06958bc08e8cc386dc333d4
a79aa37d33989877af6d0e4b58f95125547345d8
LineMaterial: Fix clipping at edge artifacts (#27349) * Fix containing cube * Sceenshot update
[ { "path": "examples/jsm/lines/LineMaterial.js", "patch": "@@ -169,51 +169,34 @@ ShaderLib[ 'line' ] = {\n \n \t\t\t#ifdef WORLD_UNITS\n \n-\t\t\t\t// get the offset direction as perpendicular to the view vector\n \t\t\t\tvec3 worldDir = normalize( end.xyz - start.xyz );\n-\t\t\t\tvec3 offset;\n-\t\t\t\tif (...
2023-12-11T09:44:35
tensorflow/tensorflow
42eb0dbe341e4b16f829da6f123b57ee460906a9
978f51e45d7ce880a036ecd5d151886010a6e42c
Remove failing deps check. Downloading libpfm fails with 403 Forbidden error. PiperOrigin-RevId: 830345061
[ { "path": "third_party/xla/.github/workflows/bazel_query.yml", "patch": "@@ -41,8 +41,8 @@ jobs:\n run: parallel --ungroup --retries 3 --delay 15 --nonall -- bazelisk build --nobuild //xla/...\n - name: \"Run bazel query //xla/...\"\n run: bazelisk query //xla/... > /dev/null\n- -...
2025-11-10T10:28:50
golang/go
3432c68467d50ffc622fed230a37cd401d82d4bf
1aa336209363d9715e145244c7b22620ac0f0584
runtime: make bubbled timers more consistent with unbubbled This CL makes two changes to reduce the predictability with which bubbled timers fire. When asynctimerchan=0 (the default), regular timers with an associated channel are only added to a timer heap when some channel operation is blocked on that channel. This ...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -226,8 +226,8 @@ func TestTimerNondeterminism(t *testing.T) {\n \t\tconst iterations = 1000\n \t\tvar seen1, seen2 bool\n \t\tfor range iterations {\n-\t\t\ttm1 := time.NewTimer(0)\n-\t\t\ttm2 := time.NewTimer(0)\n+\t\t\ttm1 := time.NewTimer(1...
2025-06-02T16:26:27
denoland/deno
2a01ac448273ffe3a4b2774598fab196a2269668
9b9a61adbb06b49add51a0925973d2fdb29649cf
fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/handle.ts` (#29239) Towards #24236. This PR updates JS intrinsics with their primordial equivalents.
[ { "path": "ext/node/polyfills/internal/fs/handle.ts", "patch": "@@ -1,12 +1,9 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { EventEmitter } from \"node:events\";\n ...
2025-05-11T11:38:53
kubernetes/kubernetes
d0a2a0d22e760abe7103da4908bb86d12d7f6e13
f794aa12d78f5b1f9579ce8a991a116a99a2c43c
e2e: find and fix reuse of test names This reports and fixes for test/e2e: ERROR: E2E suite initialization was faulty, these errors must be fixed: ERROR: apimachinery/mutatingadmissionpolicy.go:184: full test name is not unique: "[sig-api-machinery] MutatingAdmissionPolicy [Privileged:ClusterAdmin] [Feature:M...
[ { "path": "test/e2e/apimachinery/mutatingadmissionpolicy.go", "patch": "@@ -19,11 +19,12 @@ package apimachinery\n import (\n \t\"context\"\n \t\"fmt\"\n+\t\"time\"\n+\n \tadmissionregistrationv1alpha1 \"k8s.io/api/admissionregistration/v1alpha1\"\n \t\"k8s.io/apiserver/pkg/features\"\n \t\"k8s.io/kubernete...
2025-10-17T14:31:39
swiftlang/swift
b9bc10eb869187229fd2fe4a17cd8867c5d9c8a4
28e0924108e6578590cfa61a65d9c42b7fd5bd1c
[CSTrail] Fix forward declarations to make header otherwise order dependent
[ { "path": "include/swift/Sema/CSTrail.h", "patch": "@@ -20,6 +20,7 @@\n #include \"swift/AST/AnyFunctionRef.h\"\n #include \"swift/AST/Type.h\"\n #include \"swift/AST/Types.h\"\n+#include \"swift/AST/CatchNode.h\"\n #include \"swift/Sema/Constraint.h\"\n #include \"llvm/ADT/ilist.h\"\n #include <vector>\n@@...
2026-01-12T17:24:56
mrdoob/three.js
2d38c5dbf0410586c4e67356f8e9fec6df6a3dd5
850f318d038cebbc07486384564a85f39f82e9a0
WebGPURenderer: MaterialX (#27294) * MathNode: Add `bitcast()` * WGSLNodeBuilder: Add `greaterThan` for vec3 * WGSLNodeBuilder: XOR * NodeBuilder: .buildFunctionNode() and getFunctionOperator() * TSL: Function Overloading * SplitNode: Fix expected output if used uvec or ivec * TSL Transpiler: Improve...
[ { "path": "examples/files.json", "patch": "@@ -340,8 +340,10 @@\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_loader_gltf_iridescence\",\n \t\t\"webgpu_loader_gltf_sheen\",\n+\t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",\n+\t\t\"webgpu_materialx_noi...
2023-12-07T19:21:25
golang/go
1aa336209363d9715e145244c7b22620ac0f0584
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
Revert "cmd/compile: Enable inlining of tail calls" This reverts CL 650455 and CL 655816. Reason for revert: it causes #73747. Properly fixing it gets into trickiness with defer/recover, wrapper, and inlining. We're late in the Go 1.25 release cycle. Fixes #73747. Change-Id: Ifb343d522b18fec3fec73a7c886678032ac8e4d...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -785,7 +785,7 @@ func inlineCallCheck(callerfn *ir.Func, call *ir.CallExpr) (bool, bool) {\n \tif call.Op() != ir.OCALLFUNC {\n \t\treturn false, false\n \t}\n-\tif call.GoDefer {\n+\tif call.GoDefer || call.NoInline {\n \t\treturn false, fals...
2025-06-03T19:44:32
denoland/deno
9b9a61adbb06b49add51a0925973d2fdb29649cf
c27aaf9f2637eeac937fdf0c0f03fceebfc00eb4
ci: revert to the old way of uploading canary (#29251) This broke CI and I was unable to fix it so far.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -177,7 +177,7 @@ const cloneRepoStep = [{\n // Use depth > 1, because sometimes we need to rebuild main and if\n // other commits have landed it will become impossible to rebuild if\n // the checkout is too shallow.\n- \"fetch-depth\"...
2025-05-11T11:00:00
kubernetes/kubernetes
9d83f71cdec68e3c09e420914f7eac5ea16b90f1
a77f845141aa913153509cf11f67b815e8fd5e89
fix validation_test.go to use path normalization
[ { "path": "pkg/api/testing/validation.go", "patch": "@@ -40,12 +40,43 @@ type ValidateFunc func(ctx context.Context, obj runtime.Object) field.ErrorList\n type ValidateUpdateFunc func(ctx context.Context, obj, old runtime.Object) field.ErrorList\n \n // VerifyVersionedValidationEquivalence tests that all ve...
2025-10-15T04:35:42
mrdoob/three.js
a5a728dab166e25a4cfa53519ccfbc0de6ba8daf
4c7912c7b482397c7d2c432957430d42cf991df2
ImageBitmapLoader: Cache promises to deduplicate requests. (#27270) * Fix for dispose error sampleRenderTarget is being deleted and set to null by super.dispose(); the check for undefined was incorrect causing an attempt to call dispose on a null object. * Removed disposal of sampleRenderTarget entierly * Fix ...
[ { "path": "src/loaders/ImageBitmapLoader.js", "patch": "@@ -49,6 +49,25 @@ class ImageBitmapLoader extends Loader {\n \n \t\t\tscope.manager.itemStart( url );\n \n+\t\t\t// If cached is a promise, wait for it to resolve\n+\t\t\tif ( cached.then ) {\n+\n+\t\t\t\tcached.then( imageBitmap => {\n+\n+\t\t\t\t\ti...
2023-12-07T18:41:13
swiftlang/swift
da764e5daa8b02e0c7fa6509a2e7169f5d6a6ca6
f4e78a61dfbbaae7f1f03861d7ea8077546a4146
MoveOnlyChecker: Fix iterative destructuring in computeAvailableValues rdar://167469090
[ { "path": "lib/SILOptimizer/Mandatory/MoveOnlyBorrowToDestructureUtils.cpp", "patch": "@@ -944,7 +944,8 @@ AvailableValues Implementation::computeAvailableValues(SILBasicBlock *block) {\n // earlier value required. Instead, we do a final loop afterwards using\n // the interval map to update each...
2026-01-12T14:51:15
golang/go
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
d4bf7167935e84e7200e95649563d1368cf05331
cmd/trace: handle Sync event at the beginning of the trace Currently the code assumes that there's no Sync event at the start of the trace, but this hasn't been correct for some time. Count Syncs and look for at least one instead of looking for zero. Fixes #73962. Change-Id: I2b4199a21c699c5b50b3d5add37dc46a515108c6...
[ { "path": "src/cmd/trace/gen.go", "patch": "@@ -215,12 +215,12 @@ func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event\n // to trace.ResourceNone (the global scope).\n type globalRangeGenerator struct {\n \tranges map[string]activeRange\n-\tseenSync bool\n+\tseenSync int\n }\n ...
2025-06-03T20:30:43
denoland/deno
c27aaf9f2637eeac937fdf0c0f03fceebfc00eb4
5044f2f355817c8763240fffb9cd0872647e1049
fix(ext/node): implement dgram socket setMulticastTTL (#29232) Ref https://github.com/ipfs/helia/issues/73#issuecomment-2864091259
[ { "path": "ext/net/01_net.js", "patch": "@@ -380,6 +380,7 @@ class Listener {\n \n const _setBroadcast = Symbol(\"setBroadcast\");\n const _dropMembership = Symbol(\"dropMembership\");\n+const _setMulticastTTL = Symbol(\"setMulticastTTL\");\n \n function setDatagramBroadcast(conn, broadcast) {\n return co...
2025-05-10T03:52:02
kubernetes/kubernetes
77d87a0e633293f47c16940377cde9e9270b209c
f84423813bdd5b31c4119f512820eeaa3d7de89e
fix normalization rule post-rebase
[ { "path": "pkg/registry/resource/resourceclaim/strategy.go", "patch": "@@ -57,13 +57,11 @@ var resourceClaimNormalizationRules = []field.NormalizationRule{\n \t{\n \t\t// The \"exactly\" struct was added in v1beta2. In earlier API\n \t\t// versions, its fields were directly part of the DeviceRequest.\n-\t\t...
2025-10-12T23:06:35
tensorflow/tensorflow
07289c060d0a50f56f4b364e3b9ff4a6db556c33
5fb239b99374207bd3d0c9bafd806265bc0c510d
Introduce KernelArgumentPackingSpec This is a declarative way of defining a transformation from `xla::emitters::KernelArguments` to the actual kernel launch arguments that a specific CUDA or ROCm kernel needs. `xla::emitters::KernelArguments` derives the kernel arguments from the HLO parameters and result. It's order...
[ { "path": "third_party/xla/xla/stream_executor/BUILD", "patch": "@@ -594,6 +594,48 @@ xla_cc_test(\n ],\n )\n \n+cc_library(\n+ name = \"kernel_argument_packing_spec\",\n+ srcs = [\"kernel_argument_packing_spec.cc\"],\n+ hdrs = [\"kernel_argument_packing_spec.h\"],\n+ deps = [\n+ \":d...
2025-11-08T17:15:51
mrdoob/three.js
f584af21121d1a16f4c69427c68169b7496d179f
9abdebb6d21e52ff80d943e9ce80725f9869929a
Editor: Fix loading zip files with `.glTF`. (#27337)
[ { "path": "editor/js/Loader.js", "patch": "@@ -963,7 +963,7 @@ function Loader( editor ) {\n \n \t\t\t\t{\n \n-\t\t\t\t\tconst loader = await createGLTFLoader();\n+\t\t\t\t\tconst loader = await createGLTFLoader( manager );\n \t\t\t\t\t\n \t\t\t\t\tloader.parse( strFromU8( file ), '', function ( result ) {\...
2023-12-07T15:26:19
golang/go
d4bf7167935e84e7200e95649563d1368cf05331
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
runtime: reduce per-P memory footprint when greenteagc is disabled There are two additional sources of memory overhead per P that come from greenteagc. One is for ptrBuf, but on platforms other than Windows it doesn't actually cost anything due to demand-paging (Windows also demand-pages, but the memory is 'committed'...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -131,6 +131,7 @@ package runtime\n import (\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n+\t\"internal/goexperiment\"\n \t\"internal/runtime/atomic\"\n \t\"internal/runtime/gc\"\n \t\"unsafe\"\n@@ -717,7 +718,7 @@ func gcStart(trigger gcTrigger) {\n \t\t\tthrow(...
2025-06-03T19:28:00
denoland/deno
5044f2f355817c8763240fffb9cd0872647e1049
b14e1043062d68d5301d74ce52e7e37012835f99
fix(ext/node): hold weak reference to sqlite database in instances (#29210) Deterministic close and releases file lock on Windows. Fixes https://github.com/denoland/deno/issues/29033
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -67,6 +67,7 @@ struct ApplyChangesetOptions<'a> {\n \n pub struct DatabaseSync {\n conn: Rc<RefCell<Option<rusqlite::Connection>>>,\n+ statements: Rc<RefCell<Vec<*mut libsqlite3_sys::sqlite3_stmt>>>,\n options: DatabaseSyncOptions,\n location:...
2025-05-10T03:51:53
mrdoob/three.js
0e054301880a45142dd96b18f520a01a7a76ba10
62a2a0ccc85b8b24ecdfc887fcae0b6e33531836
WebGLShadowMap: Dispose of unique depth/distance materials. (#27326) * WebGLShadowMap: Dispose of unique depth/distance materials. * Update WebGLShadowMap.js Fix comment. * Update WebGLShadowMap.js
[ { "path": "src/renderers/webgl/WebGLShadowMap.js", "patch": "@@ -279,6 +279,7 @@ function WebGLShadowMap( _renderer, _objects, _capabilities ) {\n \n \t\t\t\t\tcachedMaterial = result.clone();\n \t\t\t\t\tmaterialsForVariant[ keyB ] = cachedMaterial;\n+\t\t\t\t\tmaterial.addEventListener( 'dispose', onMater...
2023-12-06T22:28:40
kubernetes/kubernetes
c7eb3751b9e9cce9c77215e0b910057293c7d0ab
9b9cd768a05782b6cfeef62bec7696b441d7ad93
Fix volume mount changePermissions test flake
[ { "path": "pkg/volume/volume_linux_test.go", "patch": "@@ -341,9 +341,9 @@ func TestProgressTracking(t *testing.T) {\n \tvar permissionSleepDuration = 5 * time.Millisecond\n \n \t// Override how often progress is reported\n-\tprogressReportDuration = 200 * time.Millisecond\n+\tprogressReportDuration = 300 *...
2025-10-16T09:55:57
tensorflow/tensorflow
ef367277397bd96b2e72907dee3999d5e588394b
6fa61af21ca4a623cbe60c1ddd11aabcb1d33b8e
PR #33388: [XLA:GPU][oneAPI] Enable RBE for the ONEAPI presubmit Imported from GitHub PR https://github.com/openxla/xla/pull/33388 Enable RBE for the ONEAPI presubmit to leverage remote caching/parallelism. Copybara import of the project: -- b31cc598ff56b211d1d52aacac1e85905b392486 by mraunak <mayank.kumar.raunak@in...
[ { "path": "third_party/xla/build_tools/ci/build.py", "patch": "@@ -377,7 +377,13 @@ def nvidia_gpu_build_with_compute_capability(\n Build(\n type_=BuildType.XLA_LINUX_X86_GPU_ONEAPI_GITHUB_ACTIONS,\n repo=\"openxla/xla\",\n- configs=(\"sycl\", \"sycl_hermetic\", \"icpx_clang\"),\n+ configs=(\n...
2025-11-08T08:22:55
golang/go
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
test: add another regression test for issue 73309 Fixed #73309 Change-Id: Id715b9c71c95c92143a7fdb5a66b24305346dd3b Reviewed-on: https://go-review.googlesource.com/c/go/+/678415 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Aut...
[ { "path": "src/cmd/compile/internal/types2/stdlib_test.go", "patch": "@@ -333,6 +333,7 @@ func TestStdFixed(t *testing.T) {\n \t\t\"issue56103.go\", // anonymous interface cycles; will be a type checker error in 1.22\n \t\t\"issue52697.go\", // types2 does not have constraints on stack size\n \t\t\"issue7...
2025-06-03T17:04:26
denoland/deno
b14e1043062d68d5301d74ce52e7e37012835f99
7852806c3aeb071d8cb9ce3d0ed09a61cb6e9638
fix(ext/node): use "localhost" as default tls hostname (#29231) Fixes https://github.com/denoland/deno/issues/29229
[ { "path": "ext/node/polyfills/_tls_wrap.ts", "patch": "@@ -85,7 +85,8 @@ export class TLSSocket extends net.Socket {\n constructor(socket: any, opts: any = kEmptyObject) {\n const tlsOptions = { ...opts };\n \n- const hostname = opts.servername ?? opts.host ?? socket._host;\n+ const hostname = o...
2025-05-10T03:51:49
mrdoob/three.js
62a2a0ccc85b8b24ecdfc887fcae0b6e33531836
35adaa03aab0e3121bd00c9145c30a1d7698d2cf
Triangle: Return `null` if the triangle is degenerated. (#27311) * BatchedMesh: Add sorting and frustum culling for shadows * Triangle.getBarycoord: throw error if a degenerate triangle is used * Return null, instead * Fix test * Fix containsPoint
[ { "path": "docs/api/en/math/Triangle.html", "patch": "@@ -97,7 +97,7 @@ <h3>\n \t\t\t[page:Vector3 target] — the result will be copied into this Vector3.<br /><br />\n \n \t\t\tReturn a [link:https://en.wikipedia.org/wiki/Barycentric_coordinate_system barycentric coordinate] \n-\t\t\tfrom the given vector. ...
2023-12-06T22:28:25
kubernetes/kubernetes
30c3c990d0e8f70f9a47fd5814d531aac36f1a4a
563919c6858cf32e460005ffe67f33d1baf2fbe2
prevent shellcheck warning https://www.shellcheck.net/wiki/SC2153 this is not a mispelling of KUBE_OUTPUT_SUBPATH, the unprefixed version is an optional override which sets _KUBE_OUTPUT_SUBPATH, which is handled in hack/lib/init.sh where golang.sh is sourced
[ { "path": "hack/lib/golang.sh", "patch": "@@ -666,7 +666,7 @@ kube::golang::place_bins() {\n V=4 kube::log::status \"Creating ${THIS_PLATFORM_BIN} symlink for non-dockerized build\"\n rm -f \"${THIS_PLATFORM_BIN}\"\n mkdir -p \"$(dirname \"${THIS_PLATFORM_BIN}\")\"\n- ln -s \"...
2025-10-16T03:17:43
tensorflow/tensorflow
61a5ba283e2a28b8a25204b0b1314874ae03f996
5e1a6c27c9e3d5c2de3c65a6e945dea9eb9cb9dc
[XLA:GPU] Make BufferDebugLog generic over the entry type. The goal of the cl is to make BufferDebugLog class entry type independent. In the nearest future we would like to extend amount of data we collect on the device side by different buffer debug kernels. Checksum kernel needs only one value while NaN checker (wou...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/buffers_checksum_thunk.cc", "patch": "@@ -103,7 +103,7 @@ absl::Status BuffersDebugChecksumThunk::ExecuteOnStream(\n TF_RETURN_IF_ERROR(kernel_->Launch(\n thread_dim, se::BlockDim(1, 1, 1), params.stream, log_entry_id,\n device_buffer, ...
2025-11-07T22:52:01
golang/go
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
cmd/compile: better error message when import embed package Fixes #73955 Change-Id: I7cf3ab4c70dc2e2765b54b88ae8cfc77a3073344 Reviewed-on: https://go-review.googlesource.com/c/go/+/678355 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Robert Griesemer <gri@g...
[ { "path": "src/cmd/compile/internal/noder/noder.go", "patch": "@@ -458,7 +458,7 @@ func Renameinit() *types.Sym {\n func checkEmbed(decl *syntax.VarDecl, haveEmbed, withinFunc bool) error {\n \tswitch {\n \tcase !haveEmbed:\n-\t\treturn errors.New(\"go:embed only allowed in Go files that import \\\"embed\\\...
2025-06-03T15:01:27
denoland/deno
7852806c3aeb071d8cb9ce3d0ed09a61cb6e9638
c9d456b74ad496536046666b95b4160405f9a403
fix(ext/node): Fix export loadEnvFile from `node:process` (#29237) Fixes https://github.com/denoland/deno/issues/29236
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -789,9 +789,11 @@ process.getBuiltinModule = getBuiltinModule;\n // TODO(kt3k): Implement this when we added -e option to node compat mode\n process._eval = undefined;\n \n-process.loadEnvFile = (path = \".env\") => {\n+export function loadEnvFile(path...
2025-05-10T03:51:26
mrdoob/three.js
35adaa03aab0e3121bd00c9145c30a1d7698d2cf
96ac576e0915f6d8f56f38cfcb12de73506031c5
Fixed: Flow reports an error in multiple materials (#27302) (#27324) Co-authored-by: shiyanglong <shiyanglong@hixianchang.com>
[ { "path": "examples/jsm/modifiers/CurveModifier.js", "patch": "@@ -214,8 +214,26 @@ export class Flow {\n \t\t\t\tchild instanceof InstancedMesh\n \t\t\t) {\n \n-\t\t\t\tchild.material = child.material.clone();\n-\t\t\t\tmodifyShader( child.material, uniforms, numberOfCurves );\n+\t\t\t\tif ( Array.isArray(...
2023-12-06T09:10:20
swiftlang/swift
a85c34452aec66e37efaf86d8093b42f565d4956
412f8ca59a83722acbbc361a0b214f5d6668934e
DestroyHoisting: don't bail for lexical liveranges We don't need to check for lexical liveranges anymore because we now have "fixed" liveranges throughout the optimizer pipeline (https://github.com/swiftlang/swift/pull/85334).
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/DestroyHoisting.swift", "patch": "@@ -245,12 +245,7 @@ private extension InstructionRange {\n }\n \n default:\n- // We cannot extend a lexical liverange with a non-lexical liverange, because afterwards the\n- ...
2026-01-12T12:48:39
golang/go
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
94764d093822721337243de77aeba72df1f9b230
cmd/dist: don't install tools that won't be shipped in distribution We shouldn't be installing these tools because we will remove them in distpack. Installing the tools will also prevent us from testing what happens when the tools are missing. The changes below this on the stack, CL 677775 (cmd/doc: build cmd/doc dir...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1516,7 +1516,7 @@ func cmdbootstrap() {\n \t}\n \n \t// To recap, so far we have built the new toolchain\n-\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link)\n+\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link, cmd/preprofile)\n \t// using the Go bootstrap toolchain ...
2025-05-30T16:53:42
tensorflow/tensorflow
95aabf9f548e0c505066b91e6f7658e2174d729c
345fdfabee987c84de3fffe6bd4436348ecde435
downgrade error message to warning PiperOrigin-RevId: 829525390
[ { "path": "third_party/xla/xla/stream_executor/cuda/cuda_executor.cc", "patch": "@@ -1779,7 +1779,8 @@ CudaExecutor::CreateDeviceDescription(int device_ordinal) {\n info.cluster_uuid = fabric_info->cluster_uuid;\n info.clique_id = fabric_info->clique_id;\n } else {\n- LOG(ERROR) << fabr...
2025-11-07T19:57:32
denoland/deno
c9d456b74ad496536046666b95b4160405f9a403
a2f129720e5b5cf09f799e6cf31e319c6c362fcb
fix(cache): added support for the --env-file flag (#29160) Adds support for the --env-file flag, allowing environment variables such as DENO_AUTH_TOKENS to be loaded from a file.
[ { "path": "cli/args/flags.rs", "patch": "@@ -1897,6 +1897,7 @@ Future runs of this module will trigger no downloads or compilation unless --rel\n .arg(frozen_lockfile_arg())\n .arg(allow_scripts_arg())\n .arg(allow_import_arg())\n+ .arg(env_file_arg())\n })\n }\n \n@@ -4659,6 +4660,...
2025-05-10T02:03:11