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
golang/go
e6cff690517e66f610bf8787a442a47d92fc14c7
f5f69a3de9a3e0b8d4e211f155853a29cd400e92
crypto/x509: move constraint checking after chain building The standard approach to constraint checking involves checking the constraints during chain building. This is typically done as most chain building algorithms want to find a single chain. We don't do this, and instead build every valid chain we can find. Becau...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -636,107 +636,8 @@ func (c *Certificate) isValid(certType int, currentChain []*Certificate, opts *V\n \t\t}\n \t}\n \n-\tmaxConstraintComparisons := opts.MaxConstraintComparisions\n-\tif maxConstraintComparisons == 0 {\n-\t\tmaxConstraintComparisons = 2500...
2025-10-20T18:04:38
mrdoob/three.js
dce25de35427843f9df1f0aed463efc2efdac488
8ce69e0fbf100cd8ab1b72902ca6a180d3d6abf0
Audio: Ensure progress is reset in `onEnded()`. (#29930) * fix: reset progress onEnded Audio with stop method * fix: Prevent warning by resetting progress when stopping audio without playback control
[ { "path": "src/audio/Audio.js", "patch": "@@ -328,6 +328,7 @@ class Audio extends Object3D {\n \tonEnded() {\n \n \t\tthis.isPlaying = false;\n+\t\tthis._progress = 0;\n \n \t}\n ", "additions": 1, "deletions": 0, "language": "JavaScript" } ]
2024-11-21T09:43:09
denoland/deno
fc7ae0e4282fbd66ee03a26fcd81187b846b0fa6
0ed74e6c5357ba55088e984d0f527a7c1d0247bf
fix(check): fall back to copying tsgo binary if rename fails (#31074) Fixes https://github.com/denoland/deno/issues/31033.
[ { "path": "cli/tsc/go/setup.rs", "patch": "@@ -31,8 +31,8 @@ pub enum DownloadError {\n InvalidDownloadUrl(String, #[source] deno_core::url::ParseError),\n #[error(\"failed to unpack typescript-go: {0}\")]\n UnpackFailed(#[source] AnyError),\n- #[error(\"failed to rename typescript-go: {0}\")]\n- Re...
2025-10-23T21:00:15
tensorflow/tensorflow
6ae6329da15ccfc3e0c5d7cd1d16e0c741f6d52a
f14f5ba791683c5bd3408ad58c02019829497e39
PR #35790: fix(graph_dumper): Fix HLO HTML dump segfaults after gemm_fusion_autotuner Imported from GitHub PR https://github.com/openxla/xla/pull/35790 📝 Summary of Changes - There is a segfault bug when try to dump html after gemm_fusion_autotuner (See #35786 ) - This segfault happens when `IsFused()` returns `true...
[ { "path": "third_party/xla/xla/service/hlo_graph_dumper.cc", "patch": "@@ -96,6 +96,16 @@ using absl::StrJoin;\n using std::nullopt;\n using std::optional;\n \n+// Some fused instructions are not in a fusion computation; require the parent\n+// computation's FusionInstruction to be present before treating t...
2026-01-13T12:29:59
golang/go
c18fa69e528f1679cd9b4c1c04a95f048c68000e
296ecc918d6688b5eeb9abe32d919b0aaa76d798
cmd/go: make ErrNoModRoot work with local state This change reworks the sentinel error value ErrNoModRoot and the type noMainModulesError so that we can determine the appropriate error message to display based on the loader state without depending on the state directly. This commit is part of the overall effort to el...
[ { "path": "src/cmd/go/internal/modget/query.go", "patch": "@@ -185,7 +185,7 @@ func (q *query) validate(loaderstate *modload.State) error {\n \tif q.pattern == \"all\" {\n \t\t// If there is no main module, \"all\" is not meaningful.\n \t\tif !modload.HasModRoot(loaderstate) {\n-\t\t\treturn fmt.Errorf(`can...
2025-10-03T04:31:26
swiftlang/swift
04eec3aba51af2fdcd25a5ae72faf9068c14d23a
dc80892d08656e9c02f776eb2e5dfbb76b999f66
Threading: rename `Win32.cpp` to `WindowsThreading.cpp` (NFC) This renames the source file to accomodate static linking of the runtime. When `libswiftCore.lib` is linked against, we would encounter a linker warning due to the replicated filename: ``` libswiftCore.lib(Win32.cpp.obj) : warning LNK4255: library contain m...
[ { "path": "Runtimes/Core/Threading/CMakeLists.txt", "patch": "@@ -6,7 +6,7 @@ add_library(swiftThreading OBJECT\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Threading/C11.cpp\"\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Threading/Linux.cpp\"\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Threading/Pthreads.cpp\"\n- \"...
2026-02-11T18:17:58
mrdoob/three.js
63949026deb3b3f40752fb9ff5c14546254a3aa3
e30ebff42f61007a985f6858ce58255e866506d2
WebGPURenderer: Add `PointShadowNode` (#29849) * Add `PointShadowNode` (WIP) * use webgpu * fix hash * cleanup * Update ShadowNode.js * revisions * revision * Update webgpu_lights_physical.jpg * ShadowNode: Add `getShadowFilterFn` * Add `Fn` sufix for shadow filters TSL function * PointSh...
[ { "path": "examples/files.json", "patch": "@@ -335,6 +335,7 @@\n \t\t\"webgpu_lights_custom\",\n \t\t\"webgpu_lights_ies_spotlight\",\n \t\t\"webgpu_lights_phong\",\n+\t\t\"webgpu_lights_physical\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_lights_tiled\",", ...
2024-11-21T04:25:16
golang/go
c445a61e5256914510f201d5bda5e526249217d6
6ac40051d3eee124e8c2d2ad93c518034944a1d4
cmd/go: add loaderstate as field on `QueryMatchesMainModulesError` This change modifies the type `QueryMatchesMainModulesError` to have an additional field to store the current module loader state. The field is used to break the dependency on the global `modload.LoaderState` variable. This commit is part of the over...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -683,7 +683,7 @@ func (r *resolver) queryPattern(loaderstate *modload.State, ctx context.Context,\n \n // checkAllowedOr is like modload.CheckAllowed, but it always allows the requested\n // and current versions (even if they are retracted or other...
2025-10-02T20:56:19
denoland/deno
0ed74e6c5357ba55088e984d0f527a7c1d0247bf
6692895b174098536fbe8eba6e83c82a8b8399ed
feat(unstable): add `deno audit` subcommand (#30966) This commit adds a new `deno audit` subcommand that collects all dependencies and queries npm registry for information about known vulnerabilities of used npm packages. ``` $ ../deno/target/debug/deno audit ... ╭ Prototype Pollution Protection Bypass in qs │ Severi...
[ { "path": "cli/args/flags.rs", "patch": "@@ -111,6 +111,17 @@ pub struct AddFlags {\n pub default_registry: Option<DefaultRegistry>,\n }\n \n+#[derive(Clone, Debug, Default, Eq, PartialEq)]\n+pub struct AuditFlags {\n+ pub severity: String,\n+ pub ignore_registry_errors: bool,\n+ pub ignore_unfixable: ...
2025-10-23T16:43:59
tensorflow/tensorflow
f14f5ba791683c5bd3408ad58c02019829497e39
881e7d05f9edb5bd174ee01329e9ab865fc9dbc5
[XLA:PJRT] Adapt size checks to account for packed types. Doing this shows a bug in HloRunner, it does not use the packed device shape when transfering shapes with sub-byte element types (e.g. int4). Fix this bug, and adjust tests that use optimized HLO to have the ElementSizeInBits annotation for packed types. Re-ena...
[ { "path": "third_party/xla/xla/backends/gpu/codegen/emitters/tests/reduce_row/side_output_s4.hlo", "patch": "@@ -8,11 +8,11 @@ add {\n }\n \n fusion {\n- p0 = s4[64,64] parameter(0)\n- convert = s32[64,64] convert(p0)\n+ p0 = s4[64,64]{1,0:E(4)} parameter(0)\n+ convert = s32[64,64]{1,0} convert(p0)\n ...
2026-01-13T12:25:31
swiftlang/swift
94197266560beba001ff4be03aed87e5ae29998f
039d76601aee3533a055140c4438c2fe75e3c16c
[UVT] fix type error when mulitple split files are updated When only one file is updated, SplitFile is automatically coerced into a string as part of the string interpolation. When joining multiple strings however, this requires an explicit cast.
[ { "path": "utils/update_verify_tests/litplugin.py", "patch": "@@ -101,7 +101,7 @@ def propagate_split_files(test_path, updated_files, commands):\n target = SplitFileTarget.create(file, commands, test_path, split_target_dir)\n if target:\n target.copyFrom(file)\n- new.a...
2026-02-11T23:32:07
mrdoob/three.js
0a868eab9a6d6be330cdbb1a5f18c0d99c7c7ccb
20a54620d5737aa1001157afc21c5fa971e3b01a
fix SceneOptimizer (#29935)
[ { "path": "examples/jsm/utils/SceneOptimizer.js", "patch": "@@ -46,6 +46,7 @@ class SceneOptimizer {\n \tgetMaterialPropertiesHash( material ) {\n \n \t\tconst mapProps = [\n+\t\t\t'map',\n \t\t\t'alphaMap',\n \t\t\t'aoMap',\n \t\t\t'bumpMap',\n@@ -237,7 +238,15 @@ class SceneOptimizer {\n \t\t\t\t0\n \t\t\...
2024-11-20T12:26:05
kubernetes/kubernetes
f96472556c2c3ea59302165fc6136e344706094f
1c24a05ce16db3f68ccfa707f49c8ff664afa728
kubeadm: fix a bug where kubeadm upgrade is failed if the content of the `kubeadm-flags.env` file is `KUBELET_KUBEADM_ARGS=""` Signed-off-by: carlory <baofa.fan@daocloud.io>
[ { "path": "cmd/kubeadm/app/phases/kubelet/flags.go", "patch": "@@ -154,7 +154,7 @@ func ReadKubeletDynamicEnvFile(kubeletEnvFilePath string) ([]string, error) {\n \t// Split the flags string by whitespace to get individual arguments.\n \ttrimmedFlags := strings.Fields(flags)\n \tif len(trimmedFlags) == 0 {\...
2026-01-09T09:06:40
golang/go
6a5a45252848b1bac795fc5c3e29680350462f81
dfac972233873c13e449689ce16aa1b9707dd20e
cmd/go: inject vendor dir into builder struct This change adds a new field to the Builder struct to store a function to retrieve the current vendor directory. This allows us to delay the determination of the vendor directory until later, which is currently necessary to successful interaction with the module loader st...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -106,7 +106,7 @@ func printEnvDetails(loaderstate *modload.State, w io.Writer) {\n func printGoEnv(loaderstate *modload.State, w io.Writer) {\n \tenv := envcmd.MkEnv()\n \tenv = append(env, envcmd.ExtraEnvVars(loaderstate)...)\n-\tenv = append(env, en...
2025-10-10T01:01:05
denoland/deno
aedd1084d992218d74b85212024dd477ceb55103
41e70e55189bae961b7864015aa9e176038af72b
fix(check): support isolatedDeclarations (#31061)
[ { "path": "cli/tsc/99_main_compiler.js", "patch": "@@ -163,6 +163,9 @@ function exec({ config, debug: debugFlag, rootNames, localOnly }) {\n : ts.sortAndDeduplicateDiagnostics(\n checkFiles.map((s) => program.getSemanticDiagnostics(s)).flat(),\n )),\n+ ...(options.isolatedDeclarations...
2025-10-23T15:08:49
mrdoob/three.js
587bf61b0984028265e48e9bc804c281b2d8f77c
d6c03fcec870f6c702a8b13e6d51a90b9f6d7384
Examples: Improve `webgpu_postprocessing_sobel`. (#29934) * Examples: Improve `webgpu_postprocessing_sobel`. * E2E: Update exception list.
[ { "path": "examples/webgpu_postprocessing_sobel.html", "patch": "@@ -7,6 +7,10 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"main.css\">\n \t</head>\n \t<body>\n+\t\t<div id=\"info\">\n+\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> - Edge Detection with S...
2024-11-20T12:04:08
tensorflow/tensorflow
c474e8b8c6690258e936d02b05182f8e5357dfab
7d43276e2247eec4ea922b0deb164d5192c093ac
Re-enable previously excluded targets in XLA Windows build and update pass creation signature. The function `CreateOptimizeLoopsPass` had a different return type in the declaration and the definition. This happened to work under the Itanium ABI, but the MSVC ABI includes return types in the symbol name, which led to l...
[ { "path": "third_party/xla/build_tools/ci/build.py", "patch": "@@ -378,18 +378,6 @@ def nvidia_gpu_build_with_compute_capability(\n \"-//xla/backends/gpu/...\",\n \"-//xla/codegen/emitters/tests/...\",\n \"-//xla/service/gpu/...\",\n- # undefined symbols\n- \"-//xla/cod...
2026-01-13T12:18:36
swiftlang/swift
c6e140d1d29b8e1c361b95482786c884da74ef08
a7a0e2ac092e3945ba58452f31b5ddde02f55afa
[Test][LinkerSections] Fix ! pipeline negation for lit internal shell
[ { "path": "test/LinkerSections/function_sections.swift", "patch": "@@ -2,8 +2,9 @@\n // RUN: %empty-directory(%t)\n // RUN: %target-build-swift -Xfrontend -function-sections -emit-module -emit-library -static -parse-stdlib %S/Inputs/FunctionSections.swift -o %t/libFunctionSections.a\n // RUN: %target-build-...
2026-02-11T22:30:46
golang/go
dfac972233873c13e449689ce16aa1b9707dd20e
47bf8f073ed321e1a1c5aff19c4f4ad6362a1c53
crypto/pbkdf2: add missing error return value in example This function returns two values, one was missing in the example. Change-Id: I738597f959011260f666c29b7d3ffad8e5cdc473 GitHub-Last-Rev: 5d99e04f7e1168fd0627e965508181bdb9d1ac25 GitHub-Pull-Request: golang/go#76032 Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/crypto/pbkdf2/pbkdf2.go", "patch": "@@ -27,7 +27,7 @@ import (\n // can get a derived key for e.g. AES-256 (which needs a 32-byte key) by\n // doing:\n //\n-//\tdk := pbkdf2.Key(sha1.New, \"some password\", salt, 4096, 32)\n+//\tdk, err := pbkdf2.Key(sha1.New, \"some password\", salt, 4096, 3...
2025-10-23T20:27:03
mrdoob/three.js
cef3838bb46dfc0789eab335ec6d26041abd9a28
405ad7b22aff351f29d3b33f2b3189ff4aa88abf
WebGPURenderer: Fix `shadowPositionNode` cache (#29921)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -17,6 +17,8 @@ import { HalfFloatType, LessCompare, RGFormat, VSMShadowMap, WebGPUCoordinateSys\n import { renderGroup } from '../core/UniformGroupNode.js';\n import { viewZToLogarithmicDepth } from '../display/ViewportDepthNode.js';\n \n+const shad...
2024-11-19T05:40:23
denoland/deno
41e70e55189bae961b7864015aa9e176038af72b
4fee1ceb6526cdc5924f5585ecf6da555c82f862
fix: debug log for package.json being found was incorrect (#31062)
[ { "path": "libs/config/workspace/discovery.rs", "patch": "@@ -274,10 +274,12 @@ fn discover_workspace_config_files_for_single_dir<\n &pkg_json_path,\n ) {\n Ok(pkg_json) => {\n- log::debug!(\n- \"package.json file found at '{}'\",\n- pkg_json_path.display...
2025-10-23T08:09:08
tensorflow/tensorflow
74654e2222d5aeace4cab24f232d47adb0fd29df
6f5523a40f25ac1f30aeccb82b6b94e740e27366
PR #36302: [xla:gpu] Break a circular dependency from command executor to command Imported from GitHub PR https://github.com/openxla/xla/pull/36302 Instead of checking for `CollectiveCmd`, migrate collective commands to generic `AsyncStart` and `AsyncDone` commands. Copybara import of the project: -- 79861f79a2f56bb...
[ { "path": "third_party/xla/xla/backends/gpu/runtime/BUILD", "patch": "@@ -207,6 +207,7 @@ xla_test(\n \"//xla/stream_executor:platform\",\n \"//xla/stream_executor:platform_manager\",\n \"//xla/stream_executor:semantic_version\",\n+ \"//xla/stream_executor:stream_executor_addr...
2026-01-13T09:58:32
swiftlang/swift
d1f6a0913527be4cf816762106547369f2eccecd
dc80892d08656e9c02f776eb2e5dfbb76b999f66
Demangling,Runtime: rename source files (NFC) This just renames two `Errors.cpp` to different names to accomodate the compaction of `libDemangling` into `swiftCoreRuntime`. This is important as when statically linked we end up with two members with the same name which produces a linker issue: ``` libswiftCore.lib(Erro...
[ { "path": "Runtimes/Core/Demangling/CMakeLists.txt", "patch": "@@ -8,7 +8,7 @@ add_library(swiftDemangling OBJECT\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Demangling/Punycode.cpp\"\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Demangling/Remangler.cpp\"\n \"${SwiftCore_SWIFTC_SOURCE_DIR}/lib/Demangling/NodeDum...
2026-02-11T20:55:07
mrdoob/three.js
405ad7b22aff351f29d3b33f2b3189ff4aa88abf
e0a7471d0d63c6a334afe9a3f4465695cb9baf41
BlendModes: Added `blend*` prefix (#29897) * Rename `BlendMode` -> `BlendModes` * Added `blend` prefix * update examples * improve warning message * rename `blendNormal` -> `blendColor` * move 'blendColor' to Porter Duff formula
[ { "path": "examples/webgpu_backdrop.html", "patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { float, vec3, color, viewportSharedTexture, hue, overlay, posterize, grayscale, saturation, viewportSafeUV, screenUV, checker, uv, time, oscSine, o...
2024-11-19T02:55:59
golang/go
47bf8f073ed321e1a1c5aff19c4f4ad6362a1c53
03bd43e8bb314f1bf1872a41f470bde72ac00b5c
unique: fix inconsistent panic prefix in canonmap cleanup path Other panic messages in the file use the "unique.canonMap" prefix, but this one used "internal/sync.HashTrieMap", looks like it was copied from the "internal/sync" package. Change-Id: Ic3e85154eb5a593d41c19013d5696afed2178b7e Reviewed-on: https://go-revie...
[ { "path": "src/unique/canonmap.go", "patch": "@@ -232,7 +232,7 @@ func (m *canonMap[T]) cleanup(hash uintptr, wp weak.Pointer[T]) {\n \t\t\t// which requires the parents' lock.\n \t\t\tfor i.parent != nil && i.empty() {\n \t\t\t\tif hashShift == 8*goarch.PtrSize {\n-\t\t\t\t\tpanic(\"internal/sync.HashTrieM...
2025-10-22T02:37:49
denoland/deno
4fee1ceb6526cdc5924f5585ecf6da555c82f862
02f6e49276bb4c03634af4aec4487a5a0a9dbebf
fix(cli/args): empty permissions in config should not require -P (#31063)
[ { "path": "cli/args/mod.rs", "patch": "@@ -1065,12 +1065,15 @@ impl CliOptions {\n let set_config_permission_name = match &self.flags.subcommand {\n DenoSubcommand::Bench(_) => dir\n .to_bench_permissions_config()?\n+ .filter(|permissions| !permissions.permissions.is...
2025-10-23T01:05:22
kubernetes/kubernetes
0e67c56a8f26ace2889fd24e098b78e13f9bbffe
036cd9fc6eca29fa39f2820237ea20a35cc32180
Update golang.org/x dependencies to latest versions updates the golang.org/x package family to newer releases: - golang.org/x/crypto: v0.45.0 -> v0.46.0 - golang.org/x/net: v0.47.0 -> v0.48.0 - golang.org/x/sys: v0.38.0 -> v0.40.0 - golang.org/x/time: v0.9.0 -> v0.14.0 - golang.org/x/oauth2: v0.30.0 -> v0.34.0 - gola...
[ { "path": "go.mod", "patch": "@@ -68,15 +68,15 @@ require (\n \tgo.uber.org/goleak v1.3.0\n \tgo.uber.org/zap v1.27.0\n \tgo.yaml.in/yaml/v2 v2.4.3\n-\tgolang.org/x/crypto v0.45.0\n-\tgolang.org/x/net v0.47.0\n-\tgolang.org/x/oauth2 v0.30.0\n-\tgolang.org/x/sync v0.18.0\n-\tgolang.org/x/sys v0.38.0\n-\tgola...
2026-01-11T21:25:45
mrdoob/three.js
e0a7471d0d63c6a334afe9a3f4465695cb9baf41
800a47295c211fd11bbc389620de942d450be629
ArcballControls: Arcball optional focus (#29871) * ArcballControls: Add `enableFocus` option to control focus behavior * Update examples to reflect ArcballControls changes * lint-fix * Update ArcballControls.html * Update ArcballControls.html * Update ArcballControls.html * Update ArcballControls.htm...
[ { "path": "docs/examples/en/controls/ArcballControls.html", "patch": "@@ -132,6 +132,11 @@ <h3>[property:Boolean enableAnimations]</h3>\n \t\t\tSet to true to enable animations for rotation (damping) and focus operation. Default is true.\n \t\t</p>\n \n+\t\t<h3>[property:Boolean enableFocus]</h3>\n+\t\t<p>\...
2024-11-18T09:58:08
tensorflow/tensorflow
6f5523a40f25ac1f30aeccb82b6b94e740e27366
559595aef75d89696c9f57cd992ffad8c360e3d0
PR #36266: Bump numpy from 2.4.0 to 2.4.1 Imported from GitHub PR https://github.com/openxla/xla/pull/36266 Bumps [numpy](https://github.com/numpy/numpy) from 2.4.0 to 2.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p>...
[ { "path": "third_party/xla/requirements_lock_3_11.txt", "patch": "@@ -1,76 +1,76 @@\n-numpy==2.4.0 \\\n- --hash=sha256:009bd0ea12d3c784b6639a8457537016ce5172109e585338e11334f6a7bb88ee \\\n- --hash=sha256:02a2038eb27f9443a8b266a66911e926566b5a6ffd1a689b588f7f35b81e7dc3 \\\n- --hash=sha256:0804a8e4ab...
2026-01-13T09:56:59
swiftlang/swift
335db2a58d4b6689436f4d990e5d313e2b5ef468
f53ccd656df09a1ae8b21bb2d5d9f90302836646
[Concurrency] Look-through explicit capture lists when determining closure isolation We need a contextual parent of the closure expression to determine whether it's a function conversion to a `nonisolated(nonsending)` function type, without that isolation checker would incorrectly mark the closure `@concurrent` in cas...
[ { "path": "lib/Sema/TypeCheckConcurrency.cpp", "patch": "@@ -41,6 +41,7 @@\n #include \"swift/Basic/Assertions.h\"\n #include \"swift/Sema/IDETypeChecking.h\"\n #include \"swift/Strings.h\"\n+#include \"llvm/Support/Casting.h\"\n \n using namespace swift;\n using namespace swift::version;\n@@ -3294,22 +3295...
2026-02-11T21:47:04
golang/go
107fcb70de859f7b8d08ce8bce8cf6a6d944aeff
8378276d66060cf5486cda3c826afc4be9f4a047
internal/goroot: replace HasPrefix+TrimPrefix with CutPrefix Change-Id: I97305df6babbede57bb0c3b48c89c96cb74307f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/668456 Auto-Submit: Sean Liao <sean@liao.dev> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result:...
[ { "path": "src/internal/goroot/gc.go", "patch": "@@ -77,8 +77,8 @@ func (gd *gccgoDirs) init() {\n \tconst prefix = \"libraries: =\"\n \tvar dirs []string\n \tfor _, dirEntry := range dirsEntries {\n-\t\tif strings.HasPrefix(dirEntry, prefix) {\n-\t\t\tdirs = filepath.SplitList(strings.TrimPrefix(dirEntry, ...
2025-04-28T09:00:24
denoland/deno
02f6e49276bb4c03634af4aec4487a5a0a9dbebf
18054af79e74b649c25df161aa0b054d1e1605eb
fix(fmt/json): support hexadecimal numbers, plus sign on numbers, and words with underscores (#31057)
[ { "path": ".dprint.json", "patch": "@@ -12,9 +12,14 @@\n \"quotes\": \"preferSingle\"\n },\n \"exec\": {\n+ \"cwd\": \"${configDir}\",\n \"commands\": [{\n \"command\": \"rustfmt --config imports_granularity=item --config group_imports=StdExternalCrate\",\n- \"exts\": [\"rs\"]\n+ ...
2025-10-22T20:54:29
golang/go
8378276d66060cf5486cda3c826afc4be9f4a047
e5688d0bddb0196b7f057bcae8baf8521c571119
strconv: optimize int-to-decimal and use consistently Integer-to-decimal conversion is hand-written in multiple places in this package, with different incomplete optimizations in different copies. This CL establishes a single implementation, formatBase10, accurately optimized for a variety of systems, and then uses i...
[ { "path": "src/strconv/ftoa.go", "patch": "@@ -483,7 +483,7 @@ func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {\n \t}\n \n \t// mantissa\n-\tdst, _ = formatBits(dst, mant, 10, false, true)\n+\tdst = AppendUint(dst, mant, 10)\n \n \t// p\n \tdst = append(dst, 'p')\n@@ -493,7 +49...
2025-10-17T04:31:09
tensorflow/tensorflow
559595aef75d89696c9f57cd992ffad8c360e3d0
e8f2c157d1063a6529034bf2f2c7038515e09ecb
PR #36283: [ROCm] Skip conditional tests on ROCm as they are not supported by HIP Graphs Imported from GitHub PR https://github.com/openxla/xla/pull/36283 📝 Summary of Changes Conditionals are not supported by HIP graphs and those tests are skipped. 🚀 Kind of Contribution 🐛 Bug Fix Copybara import of the projec...
[ { "path": "third_party/xla/xla/service/gpu/tests/command_buffer_test.cc", "patch": "@@ -78,6 +78,9 @@ class CommandBufferTest\n public ::testing::WithParamInterface<\n DebugOptions::CommandBufferSchedulingMode> {\n protected:\n+ bool IsRocm() {\n+ return test_runner().HasProperty(HloRun...
2026-01-13T09:55:49
denoland/deno
18054af79e74b649c25df161aa0b054d1e1605eb
d0db370d5cb5d646f172b8da2c5e46d045676f74
fix(npm): regression resolving npm bin for default when only one entry (#31055) Closes #31052
[ { "path": "libs/node_resolver/resolution.rs", "patch": "@@ -756,14 +756,8 @@ impl<\n ) -> Result<PathBuf, ResolvePkgJsonBinExportError> {\n let (pkg_json, items) = self\n .resolve_npm_binary_commands_for_package_with_pkg_json(package_folder)?;\n- let bin_name = match sub_path {\n- Some(b...
2025-10-22T17:59:53
golang/go
f92e01c117bf7d115a97229d4b4f81c91faf0f7b
50586182abd82ec724b9beb6b806610d08846d8e
runtime/cgo: fix cgoCheckArg description The description is misleading: cgoCheckArg is called by both cgoCheckPointer and cgoCheckResult. Mention cgoCheckResult in the cgoCheckArg description. Remove extra spaces between words. For #75856 Change-Id: I6780cda76b5cb7b4f9af3fbaa37a6c5099cc8d7d GitHub-Last-Rev: 531928b...
[ { "path": "src/runtime/cgocall.go", "patch": "@@ -33,7 +33,7 @@\n //\n // To make it possible for gcc-compiled C code to call a Go function p.GoF,\n // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't\n-// know about packages). The gcc-compiled C function f calls GoF.\n+// know ab...
2025-10-22T08:36:51
denoland/deno
2b0f277e96768ba345c99c80563b1ba739b90d4f
e4289491d7449e35e029e81ebf051de99fbd0ab0
fix(ext/node): `fs.read/fs.readSync` and `fs.write/fs.writeSync` compatibility (#31013) Towards #29972 - `fs.read` and `fs.readSync`: accepts object option parameter. - `fs.write` and `fs.writeSync`: negative position value defaults to the current seek position. - Allows several node compatibility tests to pass.
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -15,7 +15,6 @@ import {\n notImplemented,\n TextEncodings,\n } from \"ext:deno_node/_utils.ts\";\n-import { type Buffer } from \"node:buffer\";\n import { assertEncoding } from \"ext:deno_node/internal/fs/utils.mjs\";\n \n export type Callba...
2025-10-22T08:48:42
tensorflow/tensorflow
1b34bf5873ffb12321c51d4c44aad03f6893d65e
b7e3297d934046abe978aa65b0cf8f5150d5b029
Introduce the E1000 and E1001 error code for Compile Time HBM and Scoped-Vmem OOMs. PiperOrigin-RevId: 855583905
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -84,6 +84,8 @@ namespace xla::error {\n absl::StatusCode::kResourceExhausted) \\\n X(\"E0102\", RuntimeProgramInputMismatch, absl::StatusCode::kInvalidArgument) \\\n X(\"E0103\", RuntimeUnexpectedCo...
2026-01-13T09:09:40
swiftlang/swift
56a1c35cdd21c184861182332b79b3160a94265a
f53ccd656df09a1ae8b21bb2d5d9f90302836646
[ASTScope] Respect imports when looking up module selectors Previously, UnqualifiedLookupFactory located the modules mentioned in a module selector by simply calling `getLoadedModule()`. This failed to apply a number of behaviors that were dependent on the decl context, most notably checks for whether the module named...
[ { "path": "lib/AST/UnqualifiedLookup.cpp", "patch": "@@ -482,12 +482,17 @@ void UnqualifiedLookupFactory::addImportedResults(const DeclContext *const dc) {\n : ResolutionKind::Overloadable;\n auto moduleToLookIn = dc;\n if (Name.hasModuleSelector()) {\n- // FIXME: Should we look...
2026-02-11T00:52:15
golang/go
7c9fa4d5e9b65be396d7794f645b1f409a9bc39f
557b4d6e0f9de96ce9718f89773f14e6e1b14760
cmd/go: check if build output should overwrite files with renames CopyFile has a check to ensure that only object files are overwritten. Extend this to moveOrCopyFile, so the check also happens when the source and destination file are on the same filesystem (when renames are a valid way of moving files). Fixes #75970...
[ { "path": "src/cmd/go/internal/work/shell.go", "patch": "@@ -123,6 +123,11 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn nil\n \t}\n \n+\terr := checkDstOverwrite(dst, force)\n+\tif err != nil {\n+\t\treturn err\n+\t}\n+\n \t// If we can update the mode and...
2025-10-19T19:00:55
kubernetes/kubernetes
16b375e4ef34860600b9cfc42d42208702faf933
036cd9fc6eca29fa39f2820237ea20a35cc32180
Generalize ErrorChannel to other underlying types
[ { "path": "pkg/scheduler/framework/parallelize/error_channel.go", "patch": "@@ -1,59 +0,0 @@\n-/*\n-Copyright 2019 The Kubernetes Authors.\n-\n-Licensed under the Apache License, Version 2.0 (the \"License\");\n-you may not use this file except in compliance with the License.\n-You may obtain a copy of the ...
2025-11-21T14:03:07
mrdoob/three.js
5b51d6f1e076184f1de771319cff708ac0aa59b0
455e03824855b62963c8a5a4e85b92ba2634271e
KTX2Loader: Fix .minFilter default for untranscoded compressed textures (#29904)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -988,6 +988,9 @@ async function createRawTexture( container ) {\n \n \t\ttexture = new CompressedTexture( mipmaps, container.pixelWidth, container.pixelHeight );\n \n+\t\ttexture.minFilter = mipmaps.length === 1 ? LinearFilter : LinearMipmapLinear...
2024-11-15T23:18:28
denoland/deno
e4289491d7449e35e029e81ebf051de99fbd0ab0
9da9db0d46a3ad7faa7bbd3492969814441f154d
fix: regex pattern syntax in config-file.v1.json (#31038) Into `config-file.v1.json`, `compilerOptions.moduleResolution` has in invalid regexp pattern.
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -247,7 +247,7 @@\n ]\n },\n {\n- \"pattern\": \"^([Nn]ode[Nn]ext)|([Bb]undler))$\"\n+ \"pattern\": \"^([Nn]ode[Nn]ext|[Bb]undler)$\"\n }\n ],\n \"markdown...
2025-10-22T08:08:39
tensorflow/tensorflow
45d49d1e28fb53dccee189d3a97bc5c7782027e4
e6422d7f1357bc1bfb2223bd3e78240258f801cb
Introduce the E300X error codes for SparseCore Compilation failures. PiperOrigin-RevId: 855570373
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -84,6 +84,10 @@ namespace xla::error {\n absl::StatusCode::kResourceExhausted) \\\n X(\"E0102\", RuntimeProgramInputMismatch, absl::StatusCode::kInvalidArgument) \\\n X(\"E0103\", RuntimeUnexpectedC...
2026-01-13T08:28:43
golang/go
5a42af7f6c9ba057171d8a5af6f4b721b8eff10a
4bdb55b5b86fc96addd43a845dabf6b76d100202
go/types, types2: in resolveUnderlying, only compute path when needed When following a RHS chain, the (TypeName) Object path is only needed when there is a cycle (i.e., an error), in which case we can be slow. Rather than always compute the path, only compute it in the error case. In the same vain, allocate the seen m...
[ { "path": "src/cmd/compile/internal/types2/named.go", "patch": "@@ -593,9 +593,7 @@ func (n *Named) resolveUnderlying() {\n \t\treturn\n \t}\n \n-\tseen := make(map[*Named]int)\n-\tvar path []Object\n-\n+\tvar seen map[*Named]int // allocated lazily\n \tvar u Type\n \tfor rhs := Type(n); u == nil; {\n \t\ts...
2025-10-20T17:25:23
mrdoob/three.js
d9b1b3ca8412713895da693a6c659c6b54eef540
651280b3c0e35b576f8534e657f321cdbe0e5fc0
WebGLBackend: Fix geometry change (#29880)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -166,7 +166,7 @@ class WebGLBackend extends Backend {\n \n \t}\n \n-\t async resolveTimestampAsync( renderContext, type = 'render' ) {\n+\tasync resolveTimestampAsync( renderContext, type = 'render' ) {\n \n \t\tif ( ! this.disjoint || ...
2024-11-14T14:47:41
denoland/deno
9da9db0d46a3ad7faa7bbd3492969814441f154d
34dea6098ed4ce88ee8fd86f2561cf69c8e58dd0
fix(check): error when type checking after deduping packages (#31049)
[ { "path": "Cargo.lock", "patch": "@@ -2192,9 +2192,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.103.0\"\n+version = \"0.103.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2594e83855f172895f0e391099ca5d09dc8ae1072789c7e9ed3c3dc52a267d...
2025-10-22T03:11:01
tensorflow/tensorflow
9a9b84f294883c62a0db4185506e405bf1603fa8
c21f75e28c731c8ac9db2a61f1b9e8cd7eed3499
Link TargetParser to _pywrap_tfcompile. tfcompile_wrapper.cc contains s390x-specific code that calls TargetParser methods. The new pywrap rules do not link the TargetParser library to the _pywrap_tfcompile Python extension, resulting in undefined reference errors on s390x systems. This change adds TargetParser to pyw...
[ { "path": "tensorflow/python/BUILD", "patch": "@@ -1524,6 +1524,18 @@ cc_library(\n ),\n )\n \n+cc_library(\n+ name = \"_pywrap_lib_filter\",\n+ deps = if_pywrap(\n+ if_true = select({\n+ \"@platforms//cpu:s390x\": [\n+ \"@llvm-project//llvm:TargetParser\",\n+ ...
2026-01-13T07:09:44
swiftlang/swift
297a04bab4aad6335777d12fc0fc0f7a18101557
dc80892d08656e9c02f776eb2e5dfbb76b999f66
Core: add missing source file for Windows The crash handler interface was missing in the runtime build. This re-synchronises the runtime source list.
[ { "path": "Runtimes/Core/runtime/CMakeLists.txt", "patch": "@@ -130,7 +130,8 @@ if(SwiftCore_ENABLE_BACKTRACING)\n Backtrace.cpp\n BacktraceUtils.cpp\n CrashHandlerMacOS.cpp\n- CrashHandlerLinux.cpp)\n+ CrashHandlerLinux.cpp\n+ CrashHandlerWindows.cpp)\n endif()\n \n target_sources(swif...
2026-02-11T17:56:34
golang/go
4e695dd6346e5c7f7e94f54ed177ef96249d2294
06e57e60a7ff6cbc9c608278cbac4db514c7161a
go/ast: add ParseDirective for parsing directive comments This adds an ast.Directive API for parsing directive comments such as "//go:build" and "//go:embed". This will help tools standardize the syntax of these directive comments. Even within the standard Go tools there's little agreement on the finer details of the...
[ { "path": "api/next/68021.txt", "patch": "@@ -0,0 +1,13 @@\n+pkg go/ast, func ParseDirective(token.Pos, string) (Directive, bool) #68021\n+pkg go/ast, method (*Directive) End() token.Pos #68021\n+pkg go/ast, method (*Directive) ParseArgs() ([]DirectiveArg, error) #68021\n+pkg go/ast, method (*Directive) Pos...
2025-08-29T01:40:57
mrdoob/three.js
651280b3c0e35b576f8534e657f321cdbe0e5fc0
2058544e2c2e9bac3cd714a3cb0453386e02a17a
Examples: Improve `webgpu_postprocessing_ssr`. (#29878) * Examples: Improve `webgpu_postprocessing_ssr`. * E2E: Update exception list.
[ { "path": "examples/webgpu_postprocessing_ssr.html", "patch": "@@ -4,19 +4,18 @@\n <head>\n \n \t<head>\n-\t\t<title>three.js webgpu - postprocessing - Screen Space Reflection</title>\n+\t\t<title>three.js webgpu - postprocessing - Screen Space Reflections (SSR)</title>\n \t\t<meta charset=\"utf-8\">\n \t\t...
2024-11-14T12:28:32
denoland/deno
0f81808c8823304b28619b2afb121883a3973f04
568e247187dba08c812a74b1a5d4415f790eee99
fix(coverage): don't process coverage for blob: urls (#31035) Fixes #31030.
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -441,6 +441,7 @@ fn filter_coverages(\n .filter(|e| {\n let is_internal = e.url.starts_with(\"ext:\")\n || e.url.starts_with(\"data:\")\n+ || e.url.starts_with(\"blob:\")\n || e.url.ends_with(\"__anonymous__\")\n ||...
2025-10-21T06:59:21
tensorflow/tensorflow
d9547b75e797e7f29a6ce448becafa0f1eae5867
31a8937d4cc078bd7b63b1e4cbd84b6142ea2cfd
Introduce the E0200 error code for Unexpected Core Halts errors at runtime. PiperOrigin-RevId: 855523690
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -83,6 +83,8 @@ namespace xla::error {\n X(\"E0101\", RuntimeProgramAllocationFailure, \\\n absl::StatusCode::kResourceExhausted) \\\n X(\"E0102\", RuntimeProgramInput...
2026-01-13T06:02:18
golang/go
06e57e60a7ff6cbc9c608278cbac4db514c7161a
6c3d0d259f2d83a338a3a7da268e2dd5834aa35f
go/types, types2: only report version errors if new(expr) is ok otherwise If new(expr) is used before Go 1.26, don't report version errors if there are other problems with the expression. While at it, implement multiple missing type checks for new(expr) and add corresponding test cases that were missed in CL 704935 (...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -639,31 +639,31 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// new(T) or new(expr)\n \t\t// (no argument evaluated yet)\n \t\targ := argList[0]\n-\t\tcheck.exprOrType(x, arg, true)\n-\t\tvar T...
2025-10-20T22:02:23
mrdoob/three.js
3e29a395ceb52cd332613a62fbb712fc1123d04a
cb663c5fd331c916c3419c0c057a8cdd5c3b5abc
SSRNode: Add temporary fix for Chrome. (#29875)
[ { "path": "examples/jsm/tsl/display/SSRNode.js", "patch": "@@ -155,7 +155,7 @@ class SSRNode extends TempNode {\n \n \t\t\tconst metalness = this.metalnessNode.uv( uvNode ).r;\n \n-\t\t\t // fragments with no metalness do not reflect their environment\n+\t\t\t// fragments with no metalness do not reflect th...
2024-11-14T03:21:19
swiftlang/swift
c8711d132ac9a714e703d93d637c9d9d1f3895f6
dc80892d08656e9c02f776eb2e5dfbb76b999f66
TempRValueElimination: ignore `fix_lifetime` instruction in alias analysis `fix_lifetime` has memory-write effects defined. However, in TempRValueElimination we don't shrink lifetimes. Therefore we can safely ignore this instruction. rdar://168840965
[ { "path": "SwiftCompilerSources/Sources/Optimizer/FunctionPasses/TempRValueElimination.swift", "patch": "@@ -365,7 +365,7 @@ private struct Liverange {\n let aliasAnalysis = context.aliasAnalysis\n \n while let inst = liverange.pop() {\n- if inst.mayWrite(toAddress: copy.sourceAddress, aliasAna...
2026-02-11T17:52:18
denoland/deno
ec3ece4ec38a0c14b0101761c39b431f0e21e46f
d38b20ca7a73b213f2322f3118cd459b40694bf9
fix(kv): do not error when creating kv db with relative path and `-A` (#31021) This upgrades `deno_path_util` from 0.6.1 to 0.6.3, which includes a fix for path normalization of relative paths. This resolves issues where `Deno.openKv()` would fail with "NotFound" errors when using `-A` flag with relative paths that do...
[ { "path": "Cargo.lock", "patch": "@@ -2717,9 +2717,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_path_util\"\n-version = \"0.6.1\"\n+version = \"0.6.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"bfe02936964b2910719bd488841f6e884349360113c7abf6f4c6b28ca9cd7a...
2025-10-21T03:21:30
kubernetes/kubernetes
80cc14831edefcb889ebaeeb1bddda698415dbc8
6f93518c7f47d0581384962301a379ad17159bec
E2E framework: fix nil pointer crash in TContext Not all framework instances have a default namespace. TContext crashed for those.
[ { "path": "test/e2e/framework/framework.go", "patch": "@@ -180,7 +180,9 @@ var _ ktesting.ContextTB = &Framework{}\n func (f *Framework) TContext(ctx context.Context) ktesting.TContext {\n \ttCtx := ktesting.InitCtx(ctx, f)\n \ttCtx = tCtx.WithClients(f.clientConfig, f.restMapper, f.ClientSet, f.DynamicClie...
2026-01-09T15:23:11
mrdoob/three.js
cb663c5fd331c916c3419c0c057a8cdd5c3b5abc
e5e8d20b8b8eaa3309bfc5cda816688612ddb9f3
TiledLightsNode: Fix `reflectedLight` declaration sequence (#29874)
[ { "path": "examples/jsm/tsl/lighting/TiledLightsNode.js", "patch": "@@ -204,6 +204,8 @@ class TiledLightsNode extends LightsNode {\n \t\tlightingModel.directDiffuse.append();\n \t\tlightingModel.directSpecular.append();\n \n+\t\tsuper.setupLights( builder, lightNodes );\n+\n \t\tFn( () => {\n \n \t\t\tLoop(...
2024-11-13T19:42:39
golang/go
6c3d0d259f2d83a338a3a7da268e2dd5834aa35f
39fd61ddb0b5987749979bc7e453cf2a575c9392
path/filepath: reword documentation for Rel The existing func Rel's API documentation was presented in a rather dense way without a lot of organization that oriented around topical flow, so the documentation has been cleaned up to present the function's behavior more clearly and concisely. Fixes #75893 Change-Id: I6...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -173,19 +173,20 @@ func unixAbs(path string) (string, error) {\n \treturn Join(wd, path), nil\n }\n \n-// Rel returns a relative path that is lexically equivalent to targpath when\n-// joined to basepath with an intervening separator. That is,\n-// [Join](...
2025-10-16T17:14:45
tensorflow/tensorflow
f6e86938d6b5904df330866419e704374fc5883a
9564a78147969be1e30f7554b21312b810fe97a2
Add utility methods to wrap absl::Status's and messages with and XLA error code. PiperOrigin-RevId: 855483429
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -137,6 +137,40 @@ inline std::string GetErrorUrl(ErrorCode code) {\n return absl::StrCat(\"https://openxla.org/xla/errors/error_\", id);\n }\n \n+// Returns the error message with the standard XLA Error Code formatting:\n+// \"EXXXX: ErrorN...
2026-01-13T03:29:11
swiftlang/swift
24d1ee02f43f44359c38923ea055103e6a402f09
cddeec6575548fb40661994c100ac9f9041c5c33
[DebugInfo] Emit inheritance info for generic classes with -gdwarf-types rdar://170020164
[ { "path": "lib/IRGen/IRGenDebugInfo.cpp", "patch": "@@ -1277,6 +1277,15 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {\n llvm::DICompositeType *DITy = DBuilder.createStructType(\n Scope, Name, File, Line, SizeInBits, AlignInBits, Flags, DerivedFrom,\n DBuilder.getOrCreateArray(Mem...
2026-02-10T02:43:48
denoland/deno
d38b20ca7a73b213f2322f3118cd459b40694bf9
243857c362793beb5f048d178bd665fb29ba0696
test: disable test-fs-glob.mjs (#31029) This test is currently crashing on CI all the time. Disabling for the time being.
[ { "path": "tests/node_compat/config.toml", "patch": "@@ -441,7 +441,8 @@\n \"parallel/test-fs-existssync-false.js\" = {}\n \"parallel/test-fs-fchown.js\" = {}\n \"parallel/test-fs-fsync.js\" = {}\n-\"parallel/test-fs-glob.mjs\" = {}\n+# TODO(bartlomieju): crashes constantly on CI, disabling for now\n+# \"pa...
2025-10-20T18:59:31
mrdoob/three.js
20c67d6d9f5632e14ad4906be39b0c3462c40ea0
b2057a3aca32e4fe0e01f317ff0ee3e287eb9b4c
WebGPURenderer: Fix ImageBitmap flip in WebGLBackend (#29866) * WebGPURenderer: Fix ImageBitmap flip in WebGLBackend * Update TextureNode.js --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -126,7 +126,7 @@ class TextureNode extends UniformNode {\n \n \t\tconst texture = this.value;\n \n-\t\tif ( builder.isFlipY() && ( texture.isRenderTargetTexture === true || texture.isFramebufferTexture === true || texture.isDepthTexture === true )...
2024-11-13T15:33:49
golang/go
39fd61ddb0b5987749979bc7e453cf2a575c9392
4a0115c886101717dfc6186a3296b69fc4415487
go/types, types2: guard Named.underlying with Named.mu It appears that CL 695977 introduced a data race on Named.underlying. This fixes that race by specifying a new namedState called underlying, which, perhaps unsurprisingly, signals that Named.underlying is populated. Unfortunately, the underlying namedState is ind...
[ { "path": "src/cmd/compile/internal/types2/named.go", "patch": "@@ -47,10 +47,8 @@ import (\n // soon.\n //\n // We achieve this by tracking state with an atomic state variable, and\n-// guarding potentially concurrent calculations with a mutex. At any point in\n-// time this state variable determines which...
2025-10-17T17:16:34
denoland/deno
243857c362793beb5f048d178bd665fb29ba0696
9e572c78750bb721ae1ece2b2ffaa0589870112f
fix(ext/node): false deprecation warning on `crypto.createHmac` (#31025) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/crypto.ts", "patch": "@@ -329,7 +329,7 @@ function createHmac(\n key: string | ArrayBuffer | KeyObject,\n options?: TransformOptions,\n ) {\n- return Hmac(hmac, key, options);\n+ return Hmac_(hmac, key, options);\n }\n \n function createSign(algorithm: string, options?: W...
2025-10-20T18:22:25
mrdoob/three.js
485f7f08269ce2bbf6d046553ca0691307fb79f6
bb7f17afb4a64102d7b950e03059d08e18d810dc
WebGPU: Logarithmic Depth Buffer Rename/Revision + GTAONode Fixes (#29870) * 1. Renamed the function 'perspectiveDepthToLogarithmicDepth' to 'viewZToLogarithmicDepth' and modified it to expect a negative viewZ value in order maintain consistency with 'viewZToOrthographicDepth' and 'viewZToPerspectiveDepth' 2. Added f...
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -1,5 +1,5 @@\n import { DataTexture, RenderTarget, RepeatWrapping, Vector2, Vector3 } from 'three';\n-import { getNormalFromDepth, getScreenPosition, getViewPosition, QuadMesh, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, ...
2024-11-13T10:28:16
golang/go
8f74f9daf4d2fe708cf28d0e2b9cce079fa19248
8a6c64f4fe726c956ea876cea0fed9494290130f
sync: re-enable race even when panicking Not doing this can cause user code running after this panic (e.g.: defers) to produce non-existing races. Change-Id: Ia6aec88aaeee3b9c17e7b8019d697ffa88dfb492 Reviewed-on: https://go-review.googlesource.com/c/go/+/713460 Commit-Queue: Nicolas Hillegeer <aktau@google.com> Revie...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -204,13 +204,14 @@ func (wg *WaitGroup) Wait() {\n \t\t\t\t}\n \t\t\t}\n \t\t\truntime_SemacquireWaitGroup(&wg.sema, synctestDurable)\n-\t\t\tif wg.state.Load() != 0 {\n-\t\t\t\tpanic(\"sync: WaitGroup is reused before previous Wait has returned\")\n-\t\t\t}\n...
2025-10-21T11:43:36
kubernetes/kubernetes
7bc62e74ab39048b00194b8ef6ead09c2dfb5e98
c180d6762d7ac5059d9b50457cafb0d7f4cf74a9
FIX: Deep copy MapType in CEL composition to prevent data race This commit fixes a fatal crash (concurrent map read/write) in NewCompositedCompilerFromTemplate by: - Refactoring CEL EnvSet composition to eliminate cloning and symbol conflicts - Adding NewCompositedCompilerForTypeChecking for typechecking - Removing d...
[ { "path": "staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go", "patch": "@@ -34,56 +34,102 @@ import (\n \t\"k8s.io/apiserver/pkg/cel/lazy\"\n )\n \n-const VariablesTypeName = \"kubernetes.variables\"\n+const variablesTypeName = \"kubernetes.variables\"\n \n // CompositedCompiler compiles...
2026-01-08T02:09:15
tensorflow/tensorflow
aa2f9dffd0f9a8b17dd2a7f0545b98fd9bcdc177
7fb4cbe94171d79d762f632511644ef690c17832
PR #36311: [xla:gpu] Cleanup NCCL collectives logging and errors Imported from GitHub PR https://github.com/openxla/xla/pull/36311 [xla:gpu] Cleanup NCCL collectives logging and errors 1. Add a little bit more details to log message when creating NCCL communicators 2. Convert multi-line logging to absl::StreamFormat...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/nccl_collectives.cc", "patch": "@@ -149,10 +149,11 @@ NcclCollectives::CreateCommunicatorsWithCancel(\n return InvalidArgument(\n \"CliqueIds size must be 1 for NCCL communicator initialization\");\n }\n- VLOG(1) << \"Initialize NCCL (ve...
2026-01-13T03:01:39
denoland/deno
9e572c78750bb721ae1ece2b2ffaa0589870112f
b252cc78c2b426a3b2ebfacd942aa9908785dfc4
fix(unstable): read npm lazy caching from unstable config in deno.json as well (#31026)
[ { "path": "cli/args/mod.rs", "patch": "@@ -1370,7 +1370,7 @@ impl CliOptions {\n | DenoSubcommand::Outdated(_)\n ) {\n NpmCachingStrategy::Manual\n- } else if self.flags.unstable_config.npm_lazy_caching {\n+ } else if self.unstable_npm_lazy_caching() {\n NpmCachingStrategy::Laz...
2025-10-20T17:59:50
mrdoob/three.js
2c2bfc34fbe1179b1ea0a06853e84b6f6ae9c743
901c516933f54b3bef610a11fbbe70d5a2cd335b
Codesplit WebGL/WebGPU entrypoints: Fix WebGPU Addons (#29644) * Codesplit WebGL/WebGPU entrypoints: Fix WebGPU Addons * fix instance points example * feedbacks * update
[ { "path": "examples/jsm/lines/webgpu/Line2.js", "patch": "@@ -1,7 +1,8 @@\n+import { Line2NodeMaterial } from 'three/tsl';\n+\n import { LineSegments2 } from './LineSegments2.js';\n import { LineGeometry } from '../LineGeometry.js';\n \n-import { Line2NodeMaterial } from 'three';\n \n class Line2 extends Li...
2024-11-12T14:41:26
swiftlang/swift
c834f223331ab4baad0bd62b27db9755d0e40759
1c8b03557c766119a61d6819d69f4e49c6b083b1
Sema: fix AllInheritedProtocolsRequest caching status The implementation states and is separately cached, but the macro instantiation for SWIFT_REQUEST claims it's using the built-in cache. I assume this is an NFC that doesn't fix anything, but it's improper.
[ { "path": "include/swift/AST/NameLookupTypeIDZone.def", "patch": "@@ -47,7 +47,7 @@ SWIFT_REQUEST(NameLookup, InheritedProtocolsRequest,\n ArrayRef<ProtocolDecl *>(ProtocolDecl *), SeparatelyCached,\n NoLocationInfo)\n SWIFT_REQUEST(NameLookup, AllInheritedProtocolsRequest,\n- ...
2026-02-11T17:49:12
golang/go
8a6c64f4fe726c956ea876cea0fed9494290130f
4620db72d273097a1c5fd11e44ce688618559579
syscall: use rawSyscall6 to call ptrace in forkAndExecInChild On darwin and openbsd, the autogenerated ptrace wrapper is nosplit because it is called from forkAndExecInChild. This makes it difficult to modify and improve the underlying syscall mechanism, as ptrace is almost over the nosplit limit. We better call ptr...
[ { "path": "src/syscall/exec_libc2.go", "patch": "@@ -59,7 +59,6 @@ func forkAndExecInChild(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr\n \t\tr1 uintptr\n \t\tnextfd int\n \t\ti int\n-\t\terr error\n \t\tpgrp _C_int\n \t\tcred ...
2025-10-02T13:12:30
kubernetes/kubernetes
1b33c52ef1d8ac2830977fb7c683f41662ab480d
758ef0ffbce5cbca7a893d839dde892d79c2738f
Fix data race in devicemanager PluginDisconnected logging Don't log the endpoint struct in PluginDisconnected() - it contains a gRPC client and logging it via reflection races with Close(). The logger walks the struct with reflection, reading gRPC internals, while Close() is modifying mutex state in the background. R...
[ { "path": "pkg/kubelet/cm/devicemanager/manager.go", "patch": "@@ -250,7 +250,7 @@ func (m *ManagerImpl) PluginDisconnected(logger klog.Logger, resourceName string\n \n \tif ep, exists := m.endpoints[resourceName]; exists {\n \t\tm.markResourceUnhealthy(logger, resourceName)\n-\t\tlogger.V(2).Info(\"Endpoin...
2026-01-09T13:14:06
mrdoob/three.js
901c516933f54b3bef610a11fbbe70d5a2cd335b
ed9f5a1977d356e4f6c01ccbe89521e310273db3
WebGPURenderer: Fix OffscreenCanvas Support in WebGL (#29867)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -415,7 +415,10 @@ class WebGLTextureUtils {\n \n \t\t\t\treturn source.image.data;\n \n-\t\t\t} else if ( source instanceof ImageBitmap || source instanceof OffscreenCanvas || source instanceof HTMLImageElement || source insta...
2024-11-12T14:33:33
denoland/deno
48f273b8c916a3cab5dd3aadc11b541647813790
9e21ce5532ed3e6ac90d04a90f6c1b5ffb4f52b4
fix(ext/node): process.moduleLoadList as undefined (#31022)
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -833,6 +833,8 @@ process.features = { inspector: false };\n // TODO(kt3k): Get the value from --no-deprecation flag.\n process.noDeprecation = false;\n \n+process.moduleLoadList = [];\n+\n if (isWindows) {\n delete process.getgid;\n delete process....
2025-10-20T14:51:46
golang/go
4620db72d273097a1c5fd11e44ce688618559579
b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c
runtime: use timer_settime64 on 32-bit Linux Linux introduced new syscalls to fix the year 2038 issue. To still be able to use the old ones, the Kconfig option COMPAT_32BIT_TIME would be necessary. Use the new 64-bit syscall for timer_settime by default. Add a fallback to use the 32-bit syscall when the 64-bit versio...
[ { "path": "src/runtime/defs_linux_386.go", "patch": "@@ -237,10 +237,14 @@ type ucontext struct {\n \tuc_sigmask uint32\n }\n \n-type itimerspec struct {\n+type itimerspec32 struct {\n \tit_interval timespec32\n \tit_value timespec32\n }\n+type itimerspec struct {\n+\tit_interval timespec\n+\tit_value ...
2025-10-18T14:43:53
swiftlang/swift
20067d31810d5bad2ee4214f8027b71ea7c2b756
eab492ffb5fa59084dc551ab82854bd754b49493
extend builtin return nullability workaround to C mode A clang bug leads to nullability annotations on the return value of builtin functions being dropped. Since this only happens in C interop mode, there's a workaround in place to detect these functions and drop the corresponding nullability info in C++ interop mode....
[ { "path": "lib/ClangImporter/ImportType.cpp", "patch": "@@ -2344,8 +2344,13 @@ ImportedType ClangImporter::Implementation::importFunctionReturnType(\n // context that uses C++ interop. In order to avoid the x-ref resolution\n // failure, normalize the return type's nullability for builtin functions in\n...
2026-02-11T17:40:24
mrdoob/three.js
d35544a5c9fcb48c5020dac683c4e5ddb7f8aaf7
5255e36623e2f7cf97a647278bd67391c34ee3e6
WGSLNodeBuilder: Fix `generateWrapFunction()` cache includes (#29846)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -247,25 +247,27 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\tif ( nodeCode === undefined ) {\n \n+\t\t\tconst includes = [];\n+\n \t\t\tlet code = `fn ${ functionName }( coord : vec2f ) -> vec2f {\\n\\n\\treturn vec2f(\\n`;\n...
2024-11-08T16:00:53
denoland/deno
00353e7494b093f9ffd82c11e922718a302806e6
7912110a938bc41c204d94f491bc4b93c6e0385a
fix(npm): occasional panic when upgrading npm package constraints (#31006) Closes https://github.com/denoland/deno/issues/30997
[ { "path": "Cargo.lock", "patch": "@@ -2559,9 +2559,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.41.0\"\n+version = \"0.41.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"00d083e04150ff9a330abe8f7a9f702dc9bee98b5d438b27d4ab975dc55fbd5c\"...
2025-10-17T16:38:27
golang/go
b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c
46cc53290003340877413b8a53511b4f3685d213
os: support deleting read-only files in RemoveAll on older Windows versions The Windows implementation of RemoveAll supports deleting read-only files only on file systems that supports POSIX semantics and on newer Windows versions (Windows 10 RS5 and latter). For all the other cases, the read-only bit was not clearer...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -209,7 +209,7 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|DELETE,\n+\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n \t\tobjAttrs,\n ...
2025-10-21T14:14:03
swiftlang/swift
1043f0b087337f162f9d6ddcee7d24a675a9df82
8b029c81e8f918e55aa27d5b9d94ea067136c57e
fix two more tests
[ { "path": "test/ClangImporter/rdar156524292.swift", "patch": "@@ -1,6 +1,6 @@\n // RUN: %empty-directory(%t)\n // RUN: split-file %s %t\n-// RUN: %target-swift-frontend -typecheck -verify %t/main.swift -I %t -verify-additional-file %t/cmodule.h\n+// RUN: %target-swift-frontend -typecheck -verify %t/main.swi...
2026-02-11T09:27:42
mrdoob/three.js
5255e36623e2f7cf97a647278bd67391c34ee3e6
8f55e4ba465f3384249b5132683ecea69fac4949
ShadowNode: Fix warning property name.
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -367,7 +367,7 @@ class ShadowNode extends Node {\n \n \t\tif ( builder.material.shadowNode ) { // @deprecated, r171\n \n-\t\t\tconsole.warn( 'THREE.NodeMaterial: \".shadowNode\" is deprecated. Use \".receivedShadowNode\" instead.' );\n+\t\t\tconsole...
2024-11-08T15:37:23
denoland/deno
05958afda0943917c1d0b5a039c1d9141fb56da0
a44f0cb99fe4b7a4c5117ec91efcc71b6bdc7fe0
fix(npm): handle deno run/install of npm package with only directories.bin (#30919)
[ { "path": "Cargo.lock", "patch": "@@ -6290,6 +6290,7 @@ dependencies = [\n \"deno_semver\",\n \"futures\",\n \"lazy-regex\",\n+ \"log\",\n \"once_cell\",\n \"path-clean\",\n \"pretty_assertions\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/task_runner...
2025-10-17T16:06:15
tensorflow/tensorflow
1bca87edd23da094613ba2905039b3b10dda60fc
f980a1fac7cbfd162917ffc6eca47ba277eb393c
IFRT proxy: Fix nullptr bug. An earlier std::move() meant that the 'shared_promise' pointer was invalid when the `if (!status.ok())` code branch was reached. PiperOrigin-RevId: 855472120
[ { "path": "third_party/xla/xla/python/ifrt_proxy/client/grpc_client_session.cc", "patch": "@@ -124,23 +124,22 @@ GrpcClientSession::GrpcClientSession(\n \n tsl::Future<std::shared_ptr<IfrtResponse>> GrpcClientSession::Enqueue(\n std::unique_ptr<IfrtRequest> request) {\n- auto [promise, future] = tsl::M...
2026-01-13T02:43:58
golang/go
46cc53290003340877413b8a53511b4f3685d213
2163a5802103ebe84cbf0d77cee7097185bd8e8d
cmd/compile/internal/ssa: fix typo in comment Change-Id: Ic48a756b71a62be1c6c4cfe781c02b89010e2338 GitHub-Last-Rev: 8c0d89b475c204af66d528799713276c57da16f8 GitHub-Pull-Request: golang/go#75985 Reviewed-on: https://go-review.googlesource.com/c/go/+/713041 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go", "patch": "@@ -99,7 +99,7 @@ func init() {\n \t\t}\n \t}\n \n-\t// Floating pointer registers.\n+\t// Floating point registers.\n \tfor r := 32; r <= 63; r++ {\n \t\tmask := addreg(r, \"\")\n \t\tfpMask |= mask", "additions": 1, "deletions"...
2025-10-20T16:18:42
mrdoob/three.js
d2f7f08a431829385d7bc30bcd931bf03d51e7fb
3728a0aafd5ee04a9a4bc66eb3f56f556bd8da15
Line2NodeMaterial: Fix broken dash. (#29835)
[ { "path": "src/materials/nodes/Line2NodeMaterial.js", "patch": "@@ -6,7 +6,7 @@ import { materialColor, materialLineScale, materialLineDashSize, materialLineGap\n import { modelViewMatrix } from '../../nodes/accessors/ModelNode.js';\n import { positionGeometry } from '../../nodes/accessors/Position.js';\n i...
2024-11-07T16:34:03
swiftlang/swift
4e112450aee36afc1181df9b80c8656dbd955191
f0ce45f11d78906b85e873ae10f305aadfcf7afa
Fix windows path
[ { "path": "test/TypeRoundTrip/Inputs/build-modules.py", "patch": "@@ -9,7 +9,7 @@\n \n tmp = sys.argv[1]\n testcases = sys.argv[2]\n-build_cmd = sys.argv[3]\n+build_cmd = sys.argv[3].replace(\"\\\\\", \"/\")\n lib_pattern = sys.argv[4]\n \n imports = []", "additions": 1, "deletions": 1, "languag...
2026-02-11T17:11:54
denoland/deno
a44f0cb99fe4b7a4c5117ec91efcc71b6bdc7fe0
e8fe235d54ec51bccb553fdce297814df5f722da
fix(ext/node): support option object parameter on `fs.write` and `fs.writeSync` (#30999) Closes #30972 Other changes: - Re-enables ignored tests on `tests/unit_node/_fs/_fs_write_test.ts` - Ported the polyfill to `.ts`, though defining the types are tricky since our implementation (ported from node) mutates a lot of ...
[ { "path": "ext/node/lib.rs", "patch": "@@ -537,7 +537,7 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_unlink.ts\",\n \"_fs/_fs_utimes.ts\",\n \"_fs/_fs_watch.ts\",\n- \"_fs/_fs_write.mjs\",\n+ \"_fs/_fs_write.ts\",\n \"_fs/_fs_writeFile.ts\",\n \"_fs/_fs_writev.ts\",\n \"_nex...
2025-10-17T12:28:31
kubernetes/kubernetes
53d94b06b9f08f5a61d17a4a793742e64b22cf47
1c24a05ce16db3f68ccfa707f49c8ff664afa728
Fix flaky typecheck: enforce serial execution to prevent OOM
[ { "path": "hack/verify-typecheck.sh", "patch": "@@ -39,8 +39,8 @@ if [[ $# == 0 ]]; then\n fi\n \n ret=0\n-TYPECHECK_SERIAL=\"${TYPECHECK_SERIAL:-false}\"\n-go run ./test/typecheck \"$@\" \"--serial=$TYPECHECK_SERIAL\" || ret=$?\n+TYPECHECK_SERIAL=\"${TYPECHECK_SERIAL:-true}\"\n+go run ./test/typecheck \"--...
2026-01-09T05:10:43
golang/go
2163a5802103ebe84cbf0d77cee7097185bd8e8d
306eacbc112f2052d82c419fe312153b8b2ab613
crypto/internal/fips140/entropy: increase AllocsPerRun iterations TestNISTECAllocations is flaky (~1% failure rate) on my local Windows machine since CL 710058, which touched TestEntropyRace. These tests are unrelated, but some allocations might be incorrectly accounted to TestNISTECAllocations, affecting the end res...
[ { "path": "src/crypto/internal/fips140test/nistec_test.go", "patch": "@@ -18,7 +18,7 @@ import (\n func TestNISTECAllocations(t *testing.T) {\n \tcryptotest.SkipTestAllocations(t)\n \tt.Run(\"P224\", func(t *testing.T) {\n-\t\tif allocs := testing.AllocsPerRun(10, func() {\n+\t\tif allocs := testing.AllocsP...
2025-10-17T10:40:05
tensorflow/tensorflow
3fc70818474d393b177652d156d00e2aa11b66c0
13f66b574d98d1477693423e074ce29daf763c29
Introduce new error codes for frequently occuring Runtime Errors. PiperOrigin-RevId: 855468861
[ { "path": "third_party/xla/xla/error/error_codes.h", "patch": "@@ -58,25 +58,31 @@ namespace xla::error {\n // - an Enum value ErrorCode::kBinaryTooLarge that can be used in the XLA\n // codebase to uniquely identify error sources.\n \n-#define XLA_ERROR_CODE_LIST(X) ...
2026-01-13T02:30:06
mrdoob/three.js
3728a0aafd5ee04a9a4bc66eb3f56f556bd8da15
d2875f678ffcc19c9e122ab6ab01627baf0581a5
Renderer: Fix `getShaderAsync()`. (#29832)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -173,7 +173,7 @@ class Renderer {\n \n \t\t\t\tconst material = scene.overrideMaterial || object.material;\n \n-\t\t\t\tconst renderObject = this._objects.get( object, material, scene, camera, renderList.lightsNode, renderContext );\n+\t\t\t\tconst ...
2024-11-07T11:15:34
denoland/deno
e43662812db4f1c9c51aec875781d80593727313
377aed98509fc48537401f472da180eda9180549
fix(lockfile): purged package reqs should be removed from the jsr deps when changing workspace config (#30998)
[ { "path": "Cargo.lock", "patch": "@@ -2378,9 +2378,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.32.1\"\n+version = \"0.32.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"64deefbf7192aab1428bf68d2d221cf3161c47481d03a50f4ffc43c7ee104...
2025-10-16T15:11:17
mrdoob/three.js
8bc792bca178bb04479bf5b40953b5c09b50973b
d82b5922806e158164f7897669b072bb00555014
WebGPURenderer: hardware clipping support. (#28578) * hardware clipping * misc fixes lint --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -20,7 +20,7 @@ import { lightingContext } from '../../nodes/lighting/LightingContextNode.js';\n import IrradianceNode from '../../nodes/lighting/IrradianceNode.js';\n import { depth, perspectiveDepthToLogarithmicDepth, viewZToOrthographicDepth } ...
2024-11-06T17:50:57
kubernetes/kubernetes
19fa5ef5eb070f7401f958c8b28c173071b86d96
758ef0ffbce5cbca7a893d839dde892d79c2738f
apimachinery/field: Add MarkDeclarativeNative support to Error and ErrorList
[ { "path": "staging/src/k8s.io/apimachinery/pkg/util/validation/field/error_matcher.go", "patch": "@@ -44,6 +44,7 @@ type ErrorMatcher struct {\n \tmatchOrigin bool\n \tmatchDetail func(want, got string) bool\n \trequireOriginWhenInvalid bool\n+\tmatchDeclarativeNative bool\n \t//...
2026-01-06T21:23:52
golang/go
306eacbc112f2052d82c419fe312153b8b2ab613
a5a249d6a64508376320bc48546a6a43aebecda7
cmd/go/testdata/script: disable list_empty_importpath test on Windows The test is flaking on windows, and I haven't been able to figure out why. For now, to unblock folks, just allow the value that occasionally appears: 'no errors' to avoid having a broken test. This seems like it's probably a race though so we should...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,6 +1,12 @@\n ! go list all\n ! stderr 'panic'\n-stderr 'invalid import path'\n+[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n+# #73976: Allow 'no errors' on Windows and Solaris until issue\n+# is resolved to pr...
2025-10-20T17:51:13
tensorflow/tensorflow
c7d7ab75711d49ee0c8ed2eb52fdff6fca04cef1
5909c569def51f0ec2e5def709890b754044a497
[StableHLO optim] Fix min nan folding bug Fixes openxla/stablehlo#2887 PiperOrigin-RevId: 855456462
[ { "path": "third_party/xla/third_party/stablehlo/temporary.patch", "patch": "@@ -130,4 +130,114 @@ diff --ruN a/stablehlo/stablehlo/integrations/cpp/builder/StablehloBuilderTest.c\n }\n \n OwningOpRef<ModuleOp> module = mb->build();\n+diff --ruN a/stablehlo/stablehlo/tests/transforms/stablehlo_aggres...
2026-01-13T01:43:14
denoland/deno
377aed98509fc48537401f472da180eda9180549
98f62cee78e85bfc47c62ed703777c6bc8794f1c
fix(lsp): refresh configuration when tsconfig.json is changed (#30993)
[ { "path": "cli/lsp/compiler_options.rs", "patch": "@@ -1,6 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n use std::collections::BTreeMap;\n+use std::collections::HashSet;\n use std::sync::Arc;\n \n use deno_config::deno_json::CompilerOptions;\n@@ -17,6 +18,7 @@ use crate::lsp::config::...
2025-10-15T21:38:00