id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k โ | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
2,668,398,708 | kubernetes | DRA: create DRAAdminAccess KEP | ### What would you like to be added?
In 1.32, the DRAAdminAccess feature gate was added to keep the "adminAccess" field in alpha while promoting structured parameters to beta. For the sake of time this was done in https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/4381-dra-structured-parameters.
We should now prepare a separate KEP for it and remove all references to it from KEP 4381.
In that new KEP, we need to decide how to do permission checks for the field. Options:
- VAP (current approach): not active by default in new cluster
- builtin admission controller: doable, but more work than a VAP
- RBAC++: not available yet, probably needs to be extended
/cc @ritazh
/sig auth
/sig node
/wg device-management
Most of the remaining work probably falls under SIG Auth.
### Why is this needed?
One KEP per feature is better for tracking stability.
| sig/node,kind/feature,sig/auth,triage/accepted,wg/device-management | medium | Major |
2,668,408,582 | rust | Multi fn items can be casted to fn pointers implicitly but it does not work with only one fn item | ### Code
```Rust
fn foo() {}
fn bar() {}
fn main() {
let _x: Vec<fn()> = [foo].into_iter().collect();
// let _x: Vec<fn()> = [foo, bar].into_iter().collect();
}
```
### Current output
```Shell
error[E0277]: a value of type `Vec<fn()>` cannot be built from an iterator over elements of type `fn() {foo}`
--> src/main.rs:6:43
|
6 | let _x: Vec<fn()> = [foo].into_iter().collect();
| ^^^^^^^ value of type `Vec<fn()>` cannot be built from `std::iter::Iterator<Item=fn() {foo}>`
|
= help: the trait `FromIterator<fn() {foo}>` is not implemented for `Vec<fn()>`
but trait `FromIterator<fn()>` is implemented for it
= help: for that trait implementation, expected `fn()`, found `fn() {foo}`
note: the method call chain might not have had the expected associated types
--> src/main.rs:6:31
|
6 | let _x: Vec<fn()> = [foo].into_iter().collect();
| ----- ^^^^^^^^^^^ `Iterator::Item` is `fn() {foo}` here
| |
| this expression has type `[fn() {foo}; 1]`
note: required by a bound in `collect`
--> /playground/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:1967:19
|
1967 | fn collect<B: FromIterator<Self::Item>>(self) -> B
| ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `Iterator::collect`
For more information about this error, try `rustc --explain E0277`.
```
### Desired output
```Shell
Compiled successfully
```
### Rationale and extra context
The following call with two fn items would be compiled successfully:
```rust
fn foo() {}
fn bar() {}
fn main() {
// let _x: Vec<fn()> = [foo].into_iter().collect();
let _x: Vec<fn()> = [foo, bar].into_iter().collect();
}
```
### Other cases
```Rust
```
### Rust Version
```Shell
Build using the Nightly version: 1.84.0-nightly
(2024-11-17 5ec7d6eee7e0f5236ec1)
```
### Anything else?
_No response_ | A-diagnostics,T-compiler,A-coercions | low | Critical |
2,668,409,071 | excalidraw | UI font, add Xiaolai as a falback to Excalifont | So that CJK is displayed in the UI as well. Double check that Xiaolai gets registered in all the different cases (empty scene, readonly link, etc.).

| good first issue,font | low | Minor |
2,668,417,974 | godot | display_server_wayland.cpp has unreachable code | ### Tested versions
4.3 src Linux
### System information
Linux
### Issue description
File:
https://github.com/godotengine/godot/blob/fd4c29a189e53a1e085df5b9b9a05cac9351b3ef/platform/linuxbsd/wayland/display_server_wayland.cpp#L374-L382
Code:
```cpp
Point2i DisplayServerWayland::mouse_get_position() const {
MutexLock mutex_lock(wayland_thread.mutex);
// We can't properly implement this method by design.
// This is the best we can do unfortunately.
return Input::get_singleton()->get_mouse_position();
return Point2i(); // <- unreachable
}
```
### Steps to reproduce
see above
### Minimal reproduction project (MRP)
see above
_Edit by the production team: added syntax highlighting and added the link to the file._ | bug,platform:linuxbsd,topic:porting,topic:codestyle | low | Minor |
2,668,451,734 | rust | compiler bug | <!--
-->
### Code
12000-15000 lines of Rust code. If you think that it is valueable for me to provide more information let me know before I start to dig through this.
The bug dissappeared by deleting the ./target/ directory and recompiling.
### Meta
<!--
If you're using the stable version of the compiler, you should also check if the
bug also exists in the beta or nightly versions.
-->
`rustc --version --verbose`:
```
rustc 1.81.0 (eeb90cda1 2024-09-04)
```
### Error output
```
thread 'rustc' panicked at compiler/rustc_metadata/src/rmeta/def_path_hash_map.rs:23:54:
called `Option::unwrap()` on a `None` value
```
<!--
Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
environment. E.g. `RUST_BACKTRACE=1 cargo build`.
-->
<details><summary><strong>Backtrace</strong></summary>
<p>
```
[Running 'cargo run --bin scheduling_system']
Blocking waiting for file lock on package cache
Blocking waiting for file lock on package cache
Blocking waiting for file lock on package cache
Compiling scheduling_system v0.1.0 (/home/cbrje/projects/ordinator/ordinator-api/scheduling_system)
thread 'rustc' panicked at compiler/rustc_metadata/src/rmeta/def_path_hash_map.rs:23:54:
called `Option::unwrap()` on a `None` value
stack backtrace:
0: rust_begin_unwind
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/std/src/panicking.rs:665:5
1: core::panicking::panic_fmt
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/panicking.rs:74:14
2: core::panicking::panic
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/panicking.rs:148:5
3: core::option::unwrap_failed
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/option.rs:2020:5
4: <rustc_query_system::dep_graph::dep_node::DepNode as rustc_middle::dep_graph::dep_node::DepNodeExt>::extract_def_id
5: rustc_query_impl::plumbing::force_from_dep_node::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>>
6: <rustc_query_impl::plumbing::query_callback<rustc_query_impl::query_impl::type_of::QueryType>::{closure#0} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_query_system::dep_graph::dep_node::DepNode)>>::call_once
7: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
8: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
9: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
10: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
11: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
12: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_type_ir::canonical::Canonical<rustc_middle::ty::context::TyCtxt, rustc_middle::ty::ParamEnvAnd<rustc_middle::ty::predicate::Predicate>>, rustc_middle::query::erase::Erased<[u8; 2]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
13: <rustc_trait_selection::traits::fulfill::FulfillProcessor as rustc_data_structures::obligation_forest::ObligationProcessor>::process_obligation
14: <rustc_data_structures::obligation_forest::ObligationForest<rustc_trait_selection::traits::fulfill::PendingPredicateObligation>>::process_obligations::<rustc_trait_selection::traits::fulfill::FulfillProcessor>
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::confirm_builtin_call
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
31: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
41: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
42: rustc_hir_typeck::check::check_fn
43: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_closure
44: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
45: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
46: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
47: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
48: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
49: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
50: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
51: rustc_hir_typeck::check::check_fn
52: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_closure
53: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
54: rustc_hir_typeck::check::check_fn
55: rustc_hir_typeck::typeck
[... omitted 9 frames ...]
56: rustc_hir_analysis::check_crate
57: rustc_interface::passes::analysis
[... omitted 1 frame ...]
58: rustc_interface::interface::run_compiler::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
error: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: rustc 1.81.0 (eeb90cda1 2024-09-04) running on x86_64-unknown-linux-gnu
note: compiler flags: --crate-type bin -C panic=abort -C embed-bitcode=no -C debuginfo=2 -C incremental=[REDACTED]
note: some of the compiler flags provided by cargo are hidden
query stack during panic:
#0 [evaluate_obligation] evaluating trait selection obligation `actix::address::channel::AddressSender<agents::tactical_agent::TacticalAgent>: actix::address::channel::Sender<shared_types::tactical::TacticalRequestMessage>`
#1 [typeck] type-checking `agents::orchestrator::<impl at scheduling_system/src/agents/orchestrator.rs:89:1: 89:18>::handle`
#2 [analysis] running analysis passes on this crate
end of query stack
there was a panic while trying to force a dep node
try_mark_green dep node stack:
#0 TraitSelect(acf96d00149b5230-5a1656faecfb744d)
#1 TraitSelect(899481a9d0fc17ef-f8e92bf418646f1a)
#2 TraitSelect(a6d1874fa255230b-5d721251afa3aefe)
#3 TraitSelect(b12ff30b1bf399a8-fb50c5413460e82)
#4 evaluate_obligation(bb32c38117febccd-d97e88f56c1e7a3b)
end of try_mark_green dep node stack
there was a panic while trying to force a dep node
try_mark_green dep node stack:
#0 type_of_opaque(scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle::{opaque#0})
#1 type_of(scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle::{opaque#0})
#2 check_well_formed(scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle::{opaque#0})
#3 check_mod_type_wf(scheduling_system[1f2c]::agents::orchestrator)
end of try_mark_green dep node stack
thread 'rustc' panicked at compiler/rustc_metadata/src/rmeta/def_path_hash_map.rs:23:54:
called `Option::unwrap()` on a `None` value
stack backtrace:
0: rust_begin_unwind
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/std/src/panicking.rs:665:5
1: core::panicking::panic_fmt
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/panicking.rs:74:14
2: core::panicking::panic
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/panicking.rs:148:5
3: core::option::unwrap_failed
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/core/src/option.rs:2020:5
4: <rustc_query_system::dep_graph::dep_node::DepNode as rustc_middle::dep_graph::dep_node::DepNodeExt>::extract_def_id
5: rustc_query_impl::plumbing::force_from_dep_node::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>>
6: <rustc_query_impl::plumbing::query_callback<rustc_query_impl::query_impl::type_of::QueryType>::{closure#0} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_query_system::dep_graph::dep_node::DepNode)>>::call_once
7: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
8: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
9: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
10: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
11: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
12: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_type_ir::canonical::Canonical<rustc_middle::ty::context::TyCtxt, rustc_middle::ty::ParamEnvAnd<rustc_middle::ty::predicate::Predicate>>, rustc_middle::query::erase::Erased<[u8; 2]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
13: <rustc_trait_selection::traits::fulfill::FulfillProcessor as rustc_data_structures::obligation_forest::ObligationProcessor>::process_obligation
14: <rustc_data_structures::obligation_forest::ObligationForest<rustc_trait_selection::traits::fulfill::PendingPredicateObligation>>::process_obligations::<rustc_trait_selection::traits::fulfill::FulfillProcessor>
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::confirm_builtin_call
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_match::{closure#0}
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
31: rustc_hir_typeck::check::check_fn
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_closure
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_block_with_expected
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: rustc_hir_typeck::check::check_fn
41: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_closure
42: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
43: rustc_hir_typeck::check::check_fn
44: rustc_hir_typeck::typeck
[... omitted 9 frames ...]
45: rustc_hir_analysis::check_crate
46: rustc_interface::passes::analysis
[... omitted 1 frame ...]
47: rustc_interface::interface::run_compiler::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
error: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: rustc 1.81.0 (eeb90cda1 2024-09-04) running on x86_64-unknown-linux-gnu
note: compiler flags: --crate-type bin -C panic=abort -C embed-bitcode=no -C debuginfo=2 -C incremental=[REDACTED]
note: some of the compiler flags provided by cargo are hidden
query stack during panic:
#0 [evaluate_obligation] evaluating trait selection obligation `actix::address::channel::AddressSender<agents::tactical_agent::TacticalAgent>: actix::address::channel::Sender<shared_types::tactical::TacticalRequestMessage>`
#1 [typeck] type-checking `api::routes::http_to_scheduling_system`
#2 [analysis] running analysis passes on this crate
end of query stack
there was a panic while trying to force a dep node
try_mark_green dep node stack:
#0 TraitSelect(acf96d00149b5230-5a1656faecfb744d)
#1 TraitSelect(899481a9d0fc17ef-f8e92bf418646f1a)
#2 TraitSelect(a6d1874fa255230b-5d721251afa3aefe)
#3 TraitSelect(b12ff30b1bf399a8-fb50c5413460e82)
#4 evaluate_obligation(bd25b5bc52f3387-117923fd2c965a12)
end of try_mark_green dep node stack
there was a panic while trying to force a dep node
try_mark_green dep node stack:
#0 type_of_opaque(scheduling_system[1f2c]::api::routes::http_to_scheduling_system::{opaque#0})
#1 type_of(scheduling_system[1f2c]::api::routes::http_to_scheduling_system::{opaque#0})
#2 check_well_formed(scheduling_system[1f2c]::api::routes::http_to_scheduling_system::{opaque#0})
#3 check_mod_type_wf(scheduling_system[1f2c]::api::routes)
end of try_mark_green dep node stack
note: no errors encountered even though delayed bugs were created
note: those delayed bugs will now be shown as internal compiler errors
error: internal compiler error: {OpaqueTypeKey { def_id: DefId(0:3235 ~ scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle::{opaque#0}), args: [ReLateParam(DefId(0:1716 ~ scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle), BrNamed(DefId(0:3234 ~ scheduling_system[1f2c]::agents::orchestrator::{impl#1}::handle::'_), '_))] }: OpaqueTypeDecl { hidden_type: OpaqueHiddenType { span: scheduling_system/src/agents/orchestrator.rs:91:5: 94:46 (#4744), ty: ?0t } }}
|
= note: delayed at compiler/rustc_infer/src/infer/opaque_types/table.rs:44:43
0: <rustc_errors::DiagCtxtInner>::emit_diagnostic
1: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
2: <rustc_span::ErrorGuaranteed as rustc_errors::diagnostic::EmissionGuarantee>::emit_producing_guarantee
3: <rustc_errors::DiagCtxtHandle>::delayed_bug::<alloc::string::String>
4: core::ptr::drop_in_place::<rustc_infer::infer::InferCtxt>
5: core::ptr::drop_in_place::<rustc_hir_typeck::typeck_root_ctxt::TypeckRootCtxt>
6: rustc_hir_typeck::typeck
7: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
8: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
9: rustc_query_impl::plumbing::force_from_dep_node::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>>
10: <rustc_query_impl::plumbing::query_callback<rustc_query_impl::query_impl::typeck::QueryType>::{closure#0} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_query_system::dep_graph::dep_node::DepNode)>>::call_once
11: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
12: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
13: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
14: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
15: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_green::<rustc_query_impl::plumbing::QueryCtxt>
16: rustc_query_system::query::plumbing::ensure_must_run::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 0]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt>
17: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
18: rustc_hir_analysis::check_crate
19: rustc_interface::passes::analysis
20: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
21: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
22: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
23: rustc_interface::interface::run_compiler::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}
24: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
25: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
26: <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/alloc/src/boxed.rs:2070:9
27: <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/alloc/src/boxed.rs:2070:9
28: std::sys::pal::unix::thread::Thread::new::thread_start
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/std/src/sys/pal/unix/thread.rs:108:17
29: start_thread
30: clone3
error: internal compiler error: {OpaqueTypeKey { def_id: DefId(0:3400 ~ scheduling_system[1f2c]::api::routes::http_to_scheduling_system::{opaque#0}), args: [] }: OpaqueTypeDecl { hidden_type: OpaqueHiddenType { span: scheduling_system/src/api/routes.rs:28:1: 32:18 (#5298), ty: ?0t } }}
|
= note: delayed at compiler/rustc_infer/src/infer/opaque_types/table.rs:44:43
0: <rustc_errors::DiagCtxtInner>::emit_diagnostic
1: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
2: <rustc_span::ErrorGuaranteed as rustc_errors::diagnostic::EmissionGuarantee>::emit_producing_guarantee
3: <rustc_errors::DiagCtxtHandle>::delayed_bug::<alloc::string::String>
4: core::ptr::drop_in_place::<rustc_infer::infer::InferCtxt>
5: core::ptr::drop_in_place::<rustc_hir_typeck::typeck_root_ctxt::TypeckRootCtxt>
6: rustc_hir_typeck::typeck
7: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
8: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
9: rustc_query_impl::plumbing::force_from_dep_node::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>>
10: <rustc_query_impl::plumbing::query_callback<rustc_query_impl::query_impl::typeck::QueryType>::{closure#0} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_query_system::dep_graph::dep_node::DepNode)>>::call_once
11: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
12: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
13: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
14: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_previous_green::<rustc_query_impl::plumbing::QueryCtxt>
15: <rustc_query_system::dep_graph::graph::DepGraphData<rustc_middle::dep_graph::DepsType>>::try_mark_green::<rustc_query_impl::plumbing::QueryCtxt>
16: rustc_query_system::query::plumbing::ensure_must_run::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 0]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt>
17: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
18: rustc_hir_analysis::check_crate
19: rustc_interface::passes::analysis
20: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
21: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
22: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
23: rustc_interface::interface::run_compiler::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}
24: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
25: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
26: <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/alloc/src/boxed.rs:2070:9
27: <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/alloc/src/boxed.rs:2070:9
28: std::sys::pal::unix::thread::Thread::new::thread_start
at /rustc/eeb90cda1969383f56a2637cbd3037bdf598841c/library/std/src/sys/pal/unix/thread.rs:108:17
29: start_thread
30: clone3
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: rustc 1.81.0 (eeb90cda1 2024-09-04) running on x86_64-unknown-linux-gnu
note: compiler flags: --crate-type bin -C panic=abort -C embed-bitcode=no -C debuginfo=2 -C incremental=[REDACTED]
note: some of the compiler flags provided by cargo are hidden
query stack during panic:
end of query stack
thread 'rustc' panicked at library/core/src/panicking.rs:229:5:
panic in a destructor during cleanup
error: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: rustc 1.81.0 (eeb90cda1 2024-09-04) running on x86_64-unknown-linux-gnu
note: compiler flags: --crate-type bin -C panic=abort -C embed-bitcode=no -C debuginfo=2 -C incremental=[REDACTED]
note: some of the compiler flags provided by cargo are hidden
query stack during panic:
end of query stack
thread caused non-unwinding panic. aborting.
error: could not compile `scheduling_system` (bin "scheduling_system")
Caused by:
process didn't exit successfully: `/home/cbrje/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name scheduling_system --edition=2021 scheduling_system/src/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=51 --crate-type bin --emit=dep-info,link -C panic=abort -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("extensive_assertions"))' -C metadata=67c55e0a54f90f16 -C extra-filename=-67c55e0a54f90f16 --out-dir /home/cbrje/projects/ordinator/ordinator-api/target/debug/deps -C incremental=/home/cbrje/projects/ordinator/ordinator-api/target/debug/incremental -L dependency=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps --extern actix=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libactix-7e327b6cadab76e5.rlib --extern actix_rt=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libactix_rt-f221b53a5da6ce05.rlib --extern actix_web=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libactix_web-66549a0dc42b9198.rlib --extern actix_web_actors=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libactix_web_actors-e32fc945cf925ba8.rlib --extern anyhow=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libanyhow-4e112fe982d5a6bb.rlib --extern arc_swap=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libarc_swap-2ec006c15e6d4936.rlib --extern atomic_enum=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libatomic_enum-4e2dc186d0d6ddb0.so --extern bincode=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libbincode-50067c023ee41964.rlib --extern calamine=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libcalamine-d7763a449201c734.rlib --extern chrono=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libchrono-0d5e9e9aa65fe083.rlib --extern chrono_tz=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libchrono_tz-a278fb7f07dc3e86.rlib --extern colored=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libcolored-5be76fa0737c69d0.rlib --extern csv=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libcsv-610f3ce35ed3f4d8.rlib --extern data_processing=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libdata_processing-32725d1225e989e8.rlib --extern dotenvy=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libdotenvy-9e57049d5ead3534.rlib --extern futures=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libfutures-88122388b6c588f2.rlib --extern futures_util=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libfutures_util-8c8398311e077943.rlib --extern itertools=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libitertools-444d6d3b6b0b6ea2.rlib --extern priority_queue=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libpriority_queue-d64983fb4a9a2fed.rlib --extern proptest=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libproptest-7c5648759959faef.rlib --extern rand=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/librand-edf2faa9f9e1fed5.rlib --extern regex=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libregex-4df0e697c67b1f77.rlib --extern rust_decimal=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/librust_decimal-828308e38360c33c.rlib --extern serde=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libserde-05d61c43d6c5edcd.rlib --extern serde_json=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libserde_json-64ba3fc86c457c84.rlib --extern serde_json_any_key=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libserde_json_any_key-86ae2a6d01dc91ff.rlib --extern shared_types=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libshared_types-912054020b984d56.rlib --extern strum=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libstrum-4f08d89a9125ddef.rlib --extern strum_macros=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libstrum_macros-bd62b5e7759fe7d3.so --extern thiserror=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libthiserror-016ae815a1967939.rlib --extern tokio=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtokio-3189da269dc1c799.rlib --extern toml=/hom
e/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtoml-d90c0e0ba49379e4.rlib --extern tracing=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtracing-770154f983d0a551.rlib --extern tracing_appender=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtracing_appender-cce8029ecbfca948.rlib --extern tracing_flame=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtracing_flame-be50a713f3908937.rlib --extern tracing_subscriber=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libtracing_subscriber-70970d7983566d50.rlib --extern uuid=/home/cbrje/projects/ordinator/ordinator-api/target/debug/deps/libuuid-d3a12a4867d9ef31.rlib -L native=/home/cbrje/projects/ordinator/ordinator-api/target/debug/build/zstd-sys-b2c590615b25cbf0/out` (signal: 6, SIGABRT: process abort signal)
[Finished running. Exit status: 101]
```
</p>
</details>
| I-ICE,T-compiler,A-incr-comp,C-bug,S-needs-repro | low | Critical |
2,668,490,040 | kubernetes | Failure cluster [c199077e...]: Pod InPlace Resize Container pod-resize-resource-quota-test | ### Failure cluster [c199077e785ee1358fcf](https://go.k8s.io/triage#c199077e785ee1358fcf)
##### Error text:
```
[FAILED] exceeded quota: resize-resource-quota, requested: memory=350Mi, used: memory=700Mi, limited: memory=800Mi
Expected an error to have occurred. Got:
<nil>: nil
In [It] at: k8s.io/kubernetes/test/e2e/node/pod_resize.go:172 @ 11/13/24 12:32:16.302
```
Another failure:
```
container[c1] status resources mismatch: Expected
<v1.ResourceRequirements>:
limits:
cpu: 300m
memory: 300Mi
requests:
cpu: 300m
memory: 300Mi
to equal
<v1.ResourceRequirements>:
limits:
cpu: 400m
memory: 400Mi
requests:
cpu: 400m
memory: 400Mi
```
#### Recent failures:
[11/18/2024, 3:48:51 AM ci-kubernetes-e2e-gci-gce](https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/ci-kubernetes-e2e-gci-gce/1858341567471816704)
[11/17/2024, 5:34:50 PM ci-kubernetes-e2e-gci-gce-ip-alias](https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/ci-kubernetes-e2e-gci-gce-ip-alias/1858187048112885760)
[11/17/2024, 11:42:35 AM ci-containerd-e2e-ubuntu-gce](https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/ci-containerd-e2e-ubuntu-gce/1858098195528159232)
[11/17/2024, 5:48:18 AM ci-kubernetes-e2e-kind-alpha-beta-features](https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/ci-kubernetes-e2e-kind-alpha-beta-features/1858008341704347648)
[11/16/2024, 12:34:32 PM ci-containerd-e2e-ubuntu-gce](https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/ci-containerd-e2e-ubuntu-gce/1857748878409863168)
/kind failing-test
/kind flake
/sig node | sig/node,kind/flake,kind/failing-test,triage/accepted | low | Critical |
2,668,492,186 | material-ui | [icons] Add Medium Icon | ### Summary
I noticed that the @mui/icons-material library does not include an icon for Medium, which is a widely used social platform. Adding a Medium icon would enhance the library's versatility and usability for projects that involve social media links or buttons.
### Examples
_No response_
### Motivation
Include a Medium icon using the official Medium logo SVG.
Reference the SVG path from Medium's official branding resources, ensuring compliance with their usage terms.
**Search keywords**: Medium icon | new feature,waiting for ๐,package: icons | low | Minor |
2,668,513,999 | vscode | vscode.workspace.applyEdit opens a duplicated editor for left-side edits in diff editor | I'm using the built-in diff editor to compare 2 files. I've implemented also a (missing) counterpart to "Revert Block" action.
However the edits behave differently in 2 ways:
1. a new duplicated editor is opened
2. the diff editor is not marked as dirty
The most probable root cause is [an assumption in the code](https://github.com/microsoft/vscode/blob/fc121ef8e5e6c24e8c0d34875fd35c6919d18544/src/vs/workbench/contrib/bulkEdit/browser/bulkEditService.ts#L201
) that edits happen only on the right side of the diff editor.
Screencast of the problem:
https://github.com/user-attachments/assets/3f33896c-6f28-4f8f-b63d-a32b9d44980f
| info-needed | low | Minor |
2,668,548,452 | pytorch | Segmentation fault (core dumped) in `replication_pad1d_backward` | ### ๐ Describe the bug
Under specific inputs, `replication_pad1d_backward` triggered a crash.
```python
import torch
grad_output = torch.full((9, 9, 0,), 0, dtype=torch.float)
self = torch.full((9, 7, 10, 9, 9, 9, 1, 10, 5, 2,), 0, dtype=torch.float)
padding = [1, 1]
torch.ops.aten.replication_pad1d_backward(grad_output, self, padding)
```
output
```
Segmentation fault (core dumped)
```
### Versions
PyTorch version: 2.5.0a0+git32f585d
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: Ubuntu 22.04.4 LTS (x86_64)
GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Clang version: Could not collect
CMake version: version 3.22.1
Libc version: glibc-2.35
Python version: 3.13.0 | packaged by Anaconda, Inc. | (main, Oct 7 2024, 21:29:38) [GCC 11.2.0] (64-bit runtime)
Python platform: Linux-5.15.0-124-generic-x86_64-with-glibc2.35
Is CUDA available: False
CUDA runtime version: No CUDA
CUDA_MODULE_LOADING set to: N/A
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 46 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 80
On-line CPU(s) list: 0-79
Vendor ID: GenuineIntel
Model name: Intel(R) Xeon(R) Gold 5218R CPU @ 2.10GHz
CPU family: 6
Model: 85
Thread(s) per core: 2
Core(s) per socket: 20
Socket(s): 2
Stepping: 7
CPU max MHz: 4000.0000
CPU min MHz: 800.0000
BogoMIPS: 4200.00
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities
Virtualization: VT-x
L1d cache: 1.3 MiB (40 instances)
L1i cache: 1.3 MiB (40 instances)
L2 cache: 40 MiB (40 instances)
L3 cache: 55 MiB (2 instances)
NUMA node(s): 2
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79
Vulnerability Gather data sampling: Mitigation; Microcode
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Mitigation; Enhanced IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; RSB filling; PBRSB-eIBRS SW sequence; BHI SW loop, KVM SW loop
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Mitigation; TSX disabled
Versions of relevant libraries:
[pip3] numpy==2.1.3
[pip3] torch==2.5.0a0+git32f585d
[conda] numpy 2.1.3 pypi_0 pypi
[conda] torch 2.5.0a0+git32f585d pypi_0 pypi | module: crash,triaged,module: edge cases,module: empty tensor | low | Critical |
2,668,573,695 | neovim | `ml_get` errors after #31042 | ### Problem
After 235cb5b (#31042) I'm now getting random errors. Initially from gitsigns but I've minimised below.
```
Error executing vim.schedule lua callback: /Users/lewrus01/projects/neovim/issue.lua:13: Vim:E315: ml_get: Invalid lnum: 1
stack traceback:
[C]: in function 'quit'
/Users/lewrus01/projects/neovim/issue.lua:13: in function ''
vim/_editor.lua: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
Press ENTER or type command to continue
```
### Steps to reproduce
```lua
vim.bo.filetype = 'lua'
vim.api.nvim_buf_set_lines(0, 0, -1, false, { '' })
local bufname = 'buf2'
local buf = vim.api.nvim_create_buf(false, true)
vim.api.nvim_buf_set_name(buf, bufname)
vim.bo[buf].filetype = vim.bo.filetype
vim.bo[buf].bufhidden = 'wipe'
vim.cmd('vertical diffsplit '..bufname)
vim.defer_fn(function()
vim.api.nvim_set_current_win(1002)
vim.cmd.quit()
end, 10)
```
`nvim -u issue.lua`
### Expected behavior
No error
### Nvim version (nvim -v)
NVIM v0.11.0-dev-1186
### Vim (not Nvim) behaves the same?
NA
### Operating system/version
macOS 14.6.1
### Terminal name/version
ghostty
### $TERM environment variable
xterm-ghostty
### Installation
Source | bug,events | low | Critical |
2,668,595,212 | neovim | corrupted unsorted chunks | ### Problem
neovim crashed with
```corrupted unsorted chunks```
have this problem since couple of weeks ago
I open issue here because I assume that such a glibc error should not be invoked by any plugins.
If I'm wrong,please tell me,I'll close it.
### Steps to reproduce
place this into init.lua
```lua
local plugins_path = vim.fn.stdpath("data") .. "/lazy"
local function boot(name, url)
local package_path = plugins_path .. "/" .. name
if not vim.uv.fs_stat(package_path) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
url,
package_path,
})
end
vim.opt.runtimepath:prepend(package_path)
end
boot("heirline.nvim", "https://github.com/rebelot/heirline.nvim.git")
boot("noice.nvim", "https://github.com/folke/noice.nvim.git")
boot("orgmode", "https://github.com/nvim-orgmode/orgmode.git")
boot("nui.nvim", "https://github.com/MunifTanjim/nui.nvim")
vim.api.nvim_create_autocmd("VimEnter", {
callback = function()
require("noice").setup()
end,
})
require("orgmode").setup()
require("heirline").setup({
---@diagnostic disable-next-line: missing-fields
statusline = {
{
{
provider = function()
require("orgmode.api").load()
end,
},
},
},
})
```
just run `nvim --clean -u init.lua` with 0.10.2 version,
It will download some grammar files and then crash
next time it will crash if you run `nvim --clean -u init.lua` with nightly/stable.
[backtrace.txt](https://github.com/user-attachments/files/17808666/backtrace.txt)
### Expected behavior
no crash
### Nvim version (nvim -v)
๓ฐฏ nvim -v
NVIM v0.11.0-dev
Build type: Debug
LuaJIT 2.1.1713773202
Run "nvim -V1 -v" for more info
### Vim (not Nvim) behaves the same?
no
### Operating system/version
nixos 25.05.20241115.5e4fbfb (Warbler)
### Terminal name/version
kitty 0.37.0
### $TERM environment variable
tmux-256color
### Installation
install from neovim-nightly-overlay | bug,needs:repro,treesitter | medium | Critical |
2,668,611,182 | langchain | According to the official example, when creating a knowledge graph using the local large model glm-4-9b-chat, the generated nodes and relationships in the graph are empty. | ### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the LangChain documentation with the integrated search.
- [X] I used the GitHub search to find a similar question and didn't find it.
- [X] I am sure that this is a bug in LangChain rather than my code.
- [X] The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package).
### Example Code
code๏ผ
from langchain_core.prompts import PromptTemplate
from langchain_openai import ChatOpenAI
from langchain.schema import HumanMessage
import os
from langchain_experimental.graph_transformers import LLMGraphTransformer
from langchain_core.documents import Document
from langchain_community.graphs import Neo4jGraph
# ๅๅงๅๆจกๅ
llm = ChatOpenAI(
streaming=True,
verbose=True,
openai_api_key="none", # ๆ นๆฎๅฎ้
ๆ
ๅต้
็ฝฎ
openai_api_base="http://192.168.3.188:8080/v1", # ๆ นๆฎๅฎ้
ๆ
ๅต้
็ฝฎ
model_name="glm-4-9b-chat",
)
os.environ["NEO4J_URI"] = "bolt://192.168.3.188:7687"
os.environ["NEO4J_USERNAME"] = "neo4j"
os.environ["NEO4J_PASSWORD"] = "123456"
graph = Neo4jGraph()
llm_transformer = LLMGraphTransformer(llm=llm)
from langchain_core.documents import Document
text = """
Marie Curie, born in 1867, was a Polish and naturalised-French physicist and chemist who conducted pioneering research on radioactivity.
She was the first woman to win a Nobel Prize, the first person to win a Nobel Prize twice, and the only person to win a Nobel Prize in two scientific fields.
Her husband, Pierre Curie, was a co-winner of her first Nobel Prize, making them the first-ever married couple to win the Nobel Prize and launching the Curie family legacy of five Nobel Prizes.
She was, in 1906, the first woman to become a professor at the University of Paris.
"""
documents = [Document(page_content=text)]
graph_documents = llm_transformer.convert_to_graph_documents(documents)
print(f"Nodes:{graph_documents[0].nodes}")
print(f"Relationships:{graph_documents[0].relationships}")
response๏ผ
Nodes:[]
Relationships:[]
### Error Message and Stack Trace (if applicable)
1
### Description
help me๏ผ According to the official example, when creating a knowledge graph using the local large model glm-4-9b-chat, the generated nodes and relationships in the graph are empty.
### System Info
11 | ๐ค:bug | low | Critical |
2,668,628,313 | PowerToys | v0.84.0 or newer | Broken AltGr default behavior by Keyboard Manager | ### Microsoft PowerToys version
0.84.0
### Installation method
WinGet
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
1. Install v0.84.0 or newer
2. Enable keyboard manager
3. Add "ctrl+e" to "ctrl+f4" mapping
4. Hit "rightAlt+e" - it will type "ฤ" by default (using polish programmers keyboard)
5. Hit "ctrl+e", then "rightAlt+e" - the "rightAlt+e" doesn't work until you restart keyboard maanger
### โ๏ธ Expected Behavior
The default behavior of "rightAlt+e" still works after using "ctrl+e" mapping
### โ Actual Behavior
After hitting "ctrl+e" coming from keyboard manager mapping, the default behavior of "rightAlt+e" doesn't take effect until you restart the keyboard manager.
I guess it's related to:
> Fixed issue causing stuck Ctrl key when shortcuts contain AltGr key.
mentioned in version release highlights.
### Other Software
It happens in entire system. I need to stay in powertoys@v0.83.0, because the problem doesn't appear there. | Issue-Bug,Needs-Triage | low | Critical |
2,668,710,633 | deno | Add support for `client_cert_chain_and_key` for all file fetching | ## What
I'd like to bounce around the idea of accepting command line arguments (for any `deno` logic that deals with the network) for `client_cert_chain_and_key ` in `CreateHttpClientOptions`.
## Where
- Implement for usage in `CreateHttpClientOptions`.
- Implemented as a top level flag for `deno` that feeds into the logic for `deno run`.
## How
- Ideally a `--client-cert` and `--client-key` command line argument.
- Maybe even environment variables if the callee cannot control the program arguments?
## Why
I have an odd setup where I have a self-signed client certificate + key with an unknown issuer. I want to use the file import functionality (e.g `import { foo } from 'https://my.own.server/foo.ts'` with a server that I control that has a odd TLS scheme outside of my control.
I am comfortable using `--unsafely-ignore-certificate-errors` to get past that, but in my brief attempt I could not get the underlying hyper http machinery to accept my crudely hacked in client cert and key (instantiated at `http_util.rs`'s `HttpClientProvider::new`. I was however able to configure the TLS connector to accept my certificate and key in a standalone program, and I've (mostly) verified that the TLS configurations are the same there and in `demo`. (e.g alpn negotiation, underlying crypto module (ring), verifier functionality and `supported_verify_schemes`.
You can take a look at the demo program [here](https://gist.github.com/haze/8cdbdacbe7b2023baf424e83cea2a34c). | suggestion,tls | low | Critical |
2,668,746,440 | flutter | TextField inside CheckboxListTile results in flakey calls to onChanged | ### Steps to reproduce
1. Create a `CheckboxListTile` with an `onChanged` that changes its `selected` property, and its `title` being a `TextField`.
2. Click on the `TextField`. (I have only tried this on web on desktop.)
### Expected results
I would expect consistent behavior: either `onChanged` is called or it is not. Out of these options I would probably expect it not to be called: I think the user is probably trying to edit the text in the `TextField` without changing the selection/checkbox status of the `CheckboxListTile`.
### Actual results
_Sometimes_ the `onChanged` handler is called, and _sometimes_ it is not. There doesn't seem to be a clear pattern. It can happen when the `TextField` already has focus, or if it's receiving focus via the tap.
I suspect this has to do with how things are resolved in the gesture arena. If one wraps the `TextField` in a `GestureDetector`:
```dart
title: GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {},
child: const TextField(),
)
```
then the problem seems to disappear (but it's hard to be sure because of the flakeyness).
### Code sample
<details open><summary>Code sample</summary>
```dart
import 'package:flutter/material.dart';
void main() => runApp(const CheckboxListTileApp());
class CheckboxListTileApp extends StatelessWidget {
const CheckboxListTileApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(useMaterial3: true),
home: const CheckboxListTileExample(),
);
}
}
class CheckboxListTileExample extends StatefulWidget {
const CheckboxListTileExample({super.key});
@override
State<CheckboxListTileExample> createState() => _CheckboxListTileExampleState();
}
class _CheckboxListTileExampleState extends State<CheckboxListTileExample> {
bool isChecked = false;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('CheckboxListTile Sample')),
body: Center(
child: CheckboxListTile(
value: isChecked,
selected: isChecked,
selectedTileColor: Colors.green[100],
onChanged: (bool? value) {
setState(() => isChecked = value!);
},
title: const TextField(),
),
),
);
}
}
```
</details>
### Screenshots or Video
<details open>
<summary>Screenshots / Video demonstration</summary>
The first `onChanged` call happens at around **0:38 (!)**, and then there's a few more.
[checkboxlisttile_textfield_flakeyness.webm](https://github.com/user-attachments/assets/ef8a5525-b6cc-40dc-8dfb-80c327c7aac6)
</details>
### Logs
_No response_
### Flutter Doctor output
<details open><summary>Doctor output</summary>
```console
[โ] Flutter (Channel stable, 3.24.5, on Ubuntu 24.04.1 LTS 6.8.0-48-generic, locale en_US.UTF-8)
โข Flutter version 3.24.5 on channel stable at /home/abc/code/flutter
โข Upstream repository https://github.com/flutter/flutter.git
โข Framework revision dec2ee5c1f (5 days ago), 2024-11-13 11:13:06 -0800
โข Engine revision a18df97ca5
โข Dart version 3.5.4
โข DevTools version 2.37.3
[!] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
โข Android SDK at /home/abc/Android/Sdk
โข Platform android-34, build-tools 34.0.0
โข Java binary at: /snap/android-studio/161/jbr/bin/java
โข Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11609105)
! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses
[โ] Chrome - develop for the web
โข Chrome at google-chrome
[โ] Linux toolchain - develop for Linux desktop
โข Ubuntu clang version 18.1.3 (1ubuntu1)
โข cmake version 3.28.3
โข ninja version 1.11.1
โข pkg-config version 1.8.1
[โ] Android Studio (version 2024.1)
โข Android Studio at /snap/android-studio/161
โข Flutter plugin version 81.0.2
โข Dart plugin can be installed from:
๐จ https://plugins.jetbrains.com/plugin/6351-dart
โข Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11609105)
[โ] VS Code (version 1.95.1)
โข VS Code at /snap/code/current/usr/share/code
โข Flutter extension version 3.100.0
[โ] Connected device (2 available)
โข Linux (desktop) โข linux โข linux-x64 โข Ubuntu 24.04.1 LTS 6.8.0-48-generic
โข Chrome (web) โข chrome โข web-javascript โข Google Chrome 131.0.6778.69
[โ] Network resources
โข All expected network resources are available.
! Doctor found issues in 1 category.
```
</details>
| a: text input,framework,f: material design,has reproducible steps,P2,workaround available,team-text-input,triaged-text-input,found in release: 3.24,found in release: 3.27 | low | Minor |
2,668,804,568 | next.js | Statically generated dynamic route pages return 404 after manual revalidation | ### Link to the code that reproduces this issue
https://github.com/mstruckus/next-dynamic-path-revalidation-issue
### To Reproduce
1. Build and start the application.
- `npm run build`
- `npm run start`
2. Open in browser `http://localhost:3000/item/3`. See that page is loaded as expected.
3. Manually revalidate the page by opening in browser `http://localhost:3000/api/revalidate?path=/item/3`.
4. Open again in browser `http://localhost:3000/item/3`. The page does not exist anymore, 404 response is returned, which is not expected.
### Current vs. Expected behavior
Current behavior - manually revalidated page returns 404.
Expected behavior - page loads successfully after manual revalidation.
### Provide environment information
```bash
Operating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 23.6.0: Mon Jul 29 21:13:04 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6020
Available memory (MB): 32768
Available CPU cores: 12
Binaries:
Node: 20.17.0
npm: 10.9.0
Yarn: 1.22.21
pnpm: 9.6.0
Relevant Packages:
next: 15.0.4-canary.17 // Latest available version is detected (15.0.4-canary.17).
eslint-config-next: 14.2.17
react: 18.3.1
react-dom: 18.3.1
typescript: 5.6.3
```
### Which area(s) are affected? (Select all that apply)
Not sure
### Which stage(s) are affected? (Select all that apply)
next build (local), next start (local), Other (Deployed)
### Additional context
I tested my reproduction on other Next.js versions including v15.0.3 and v14.2.18, the issue is reproducible there too. | bug | low | Minor |
2,668,866,330 | PowerToys | Keyboard Manager not working properly after update to v0.86.0 | ### Microsoft PowerToys version
0.86.0
### Installation method
PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
1. Run PowerToys as administrator
2. Go to Input / Output > Keyboard Manager
3. Turn on toggle for Enable Keyboard Manager
4. Click on Remap a key
5. Select: F10
6. To send: Disable
7. Click OK

### โ๏ธ Expected Behavior
F10 key disabled
P/S: the key was successfully disabled in the previous version using the above steps
### โ Actual Behavior
F10 key is still working
### Other Software
_No response_ | Issue-Bug,Needs-Triage | low | Minor |
2,668,866,937 | yt-dlp | [RumbleChannel] Improved playlist extraction? | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm requesting a feature unrelated to a specific site
- [X] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme)
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels))
- [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates
- [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue)
### Provide a description that is worded well enough to be understood
Right now I am attempting to download all videos in a two-week interval in November 2022 from a Rumble channel with 25,000 videos the last 3 years.
The routine way of doing this would of course be to issue the command (e.g.
`yt-dlp -S res:360 --dateafter 20221106 --datebefore 20221115 https://rumble.com/c/RTNews`) and wait for yt-dlp to chug through the playlist, eventually sifting out the matching several hundred videos and downloading them.
This takes an inordinately long time.
The reason I use yt-dlp is that I am rarely online, so when I am connected I do a compressed process of downloading a huge amount of videos that I will watch until the next time I am able to connect and download more videos. So inordinate time consumption is not what I have time for.
The workaround for this that I have come up with for such very long playlists that are ordered chronologically is to wait for the perhaps 1000 pages of video urls to be grabbed by yt-dlp, and when that is done and the app begins to wade through the list of 25,000 videos to see which ones match my date interval criterion I break the Internet connection while yt-dlp is still working. This causes yt-dlp to slip through its 25,000 item list at a furious pace og perhaps 1,000 videos every 10 seconds.
I then watch the item counter increase until it gets somewhere near where I expect will be a date somewhat close to the desired time interval. So, when I see the counter reach 15,000 I reconnect to the Internet and find that I'm now in April 2023, i.e. only five months away from the wanted videos.
I can now let yt-dlp simply continue to run and finish the job, except this would still take a very long time- So I make a second disconnection and get to December 2022, Now I can easily let the regular process finish the job.
Except, sometimes the reconnection takes longer than expected, and we're now in September 2022.
So this is a hit and miss process. And if I miss I have to start from fresh having to wait first for yt-dlp to download 1,000 pages of video urls and then make a second attempt at slipping through the video counter and hopefully end up at a date that is conveniently close to the designated time interval but hasn't moved beyond it.
So even though it makes it possible for me to download playlist portions that I would otherwise not have time to sit around waiting for, it is cumbersome and very often frustrating, and quite often I fail to grab the videos from this particular playlist in the time I have before I have to go offline again.
WHAT I WANT
is a yt-dlp option for slipping to a particular number, e.g. `yt-dlp -sl 19000 playlist_url`.
I hope I have explained my wish comprehensibly.
To go with this feature I would like to be able to reuse the list of videos which yt-dlp first gets before starting to churn through the individual videos,
### Provide verbose output that clearly demonstrates the problem
- [ ] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`)
- [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead
- [ ] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below
### Complete Verbose Output
_No response_ | site-enhancement,triage | low | Critical |
2,668,900,113 | go | x/tools/refactor/eg: Using `./...` only matches one file even though there are many more | ### Go version
go version go1.23.3 darwin/arm64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE='on'
GOARCH='arm64'
GOBIN=''
GOCACHE='/Users/connorszczepaniak/Library/Caches/go-build'
GOENV='/Users/connorszczepaniak/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMODCACHE='/Users/connorszczepaniak/go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='darwin'
GOPATH='/Users/connorszczepaniak/go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/Users/connorszczepaniak/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.3.darwin-arm64'
GOSUMDB='sum.golang.org'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/Users/connorszczepaniak/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.3.darwin-arm64/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.23.3'
GODEBUG=''
GOTELEMETRY='local'
GOTELEMETRYDIR='/Users/connorszczepaniak/Library/Application Support/go/telemetry'
GCCGO='gccgo'
GOARM64='v8.0'
AR='ar'
CC='clang'
CXX='clang++'
CGO_ENABLED='1'
GOMOD='/path/to/go.mod'
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/14/dl88pgbs11766nqnslc5ry8h0000gs/T/go-build3037559288=/tmp/go-build -gno-record-gcc-switches -fno-common'
```
### What did you do?
I have a template looks approximately like this in abstract:
```go
package mypkg
import (
"testing"
"github.com/myRepo/x/internal/a"
"github.com/myRepo/x/internal/a/b"
)
func before(t testing.TB, widget *b.Widget, name string) string {
return a.FunctionToReplace(t, widget, name, "", -1)
}
func after(t testing.TB, widget *b.Widget, name string) string {
return a.NewFunction().SomethingElse(name).Another(t, widget)
}
```
I'm attempting to run `eg -w -t template.go github.com/myRepo/...` to replace all usages in this module.
### What did you see happen?
When I run `eg -w -t template.go ./...` from the root of `github.com/myRepo`, I notice that only one usage gets replaced although there are many, many more in packages matched by this pattern. If I run `eg -w -t template.go github.com/myRepo/x/internal/some/other/pkg`, where this package contains a lot of call sites of the old function, then all of the matches appear and get replaced.
Maybe not relevant, but I noticed that for some specific packages that would be included in `github.com/myRepo/...`, there are errors that occur when running `eg`.
```
// when running eg -w -t template.go github.com/myRepo/x/internal/a/...
eg: template.go:11:45: cannot use widget (variable of type *b.Widget) as *b.Widget value in argument to a.FunctionToReplace
// when running eg -w -t template.go github.com/myRepo/x/internal/a/subpkg
eg: template.go:6:2: could not import github.com/myRepo/x/internal/a (package "github.com/myRepo/x/internal/a" not found)
```
### What did you expect to see?
All call sites within the list of packages matched by `github.com/myRepo/...` to be replaced. | NeedsInvestigation,Tools | low | Critical |
2,669,046,633 | vscode | Minimap not showing for diffs |
Type: <b>Bug</b>
Since I updated to 1.95.3, the minimap no longer appears in the diff view. The sidebar is there, but it shows nothing. It makes it very difficult to review changes.
The minimap does appear when editing a file, but it also doesn't show additions/deletions in the minimap.
Thank you.
VS Code version: Code 1.95.3 (f1a4fb101478ce6ec82fe9627c43efbf9e98c813, 2024-11-13T14:50:04.152Z)
OS version: Windows_NT x64 10.0.19045
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz (8 x 3000)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: unavailable_off<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled<br>webnn: disabled_off|
|Load (avg)|undefined|
|Memory (System)|24.00GB (4.49GB free)|
|Process Argv|--folder-uri file:///c%3A/Users/jay/sites/drj-review --crash-reporter-id d76c059a-9441-46e9-95ec-0f0207762dd0|
|Screen Reader|no|
|VM|100%|
</details><details><summary>Extensions (51)</summary>
Extension|Author (truncated)|Version
---|---|---
better-comments|aar|3.0.2
Bookmarks|ale|13.5.0
gitlab-pipeline-monitor|bal|2.0.0
vscode-intelephense-client|bme|1.12.6
path-intellisense|chr|2.9.0
laravel-blade|cjh|1.1.2
postcss|css|1.0.9
vscode-eslint|dba|3.0.10
es7-react-js-snippets|dsz|4.4.3
gitlens|eam|16.0.1
prettier-vscode|esb|11.0.0
vscode-git-history|fab|3.1.0
php-intellisense|fel|2.3.14
auto-rename-tag|for|0.1.10
copilot|Git|1.245.0
copilot-chat|Git|0.22.3
vscode-pull-request-github|Git|0.100.1
gitlab-workflow|Git|5.18.1
gc-excelviewer|Gra|4.2.62
todo-tree|Gru|0.0.226
githd|hui|2.5.4
json-compact-prettifier|ina|1.3.10
vscode-pdf|mat|0.0.6
json|Mee|0.1.2
dotenv|mik|1.0.1
vscode-edits-history|mis|0.1.6
prettify-json|moh|0.0.3
mongodb-vscode|mon|1.9.3
data-workspace-vscode|ms-|0.5.0
mssql|ms-|1.25.0
sql-bindings-vscode|ms-|0.4.0
sql-database-projects-vscode|ms-|1.4.3
remote-ssh|ms-|0.115.1
remote-ssh-edit|ms-|0.87.0
powershell|ms-|2024.4.0
remote-explorer|ms-|0.4.3
laravel-blade|one|1.36.1
vscode-thunder-client|ran|2.29.15
java|red|1.36.0
vscode-yaml|red|1.15.0
LiveServer|rit|5.7.9
vscode-blade-formatter|shu|0.24.2
js-jsx-snippets|sky|11.1.3
branch-warnings|tel|1.0.10
lorem-ipsum|Tyr|1.3.1
vscode-todo-highlight|way|1.0.5
literally-html|web|0.1.3
twig|wha|1.0.2
php-debug|xde|1.35.0
markdown-all-in-one|yzh|3.6.2
create-react-app-vscode|zag|0.1.2
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vscod805cf:30301675
binariesv615:30325510
vsaa593:30376534
py29gd2263:31024239
vscaat:30438848
c4g48928:30535728
azure-dev_surveyonecf:30548226
962ge761:30959799
pythonnoceb:30805159
asynctok:30898717
pythonmypyd1:30879173
2e7ec940:31000449
pythontbext0:30879054
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
dsvsc021:30996838
bdiig495:31013172
dvdeprecation:31068756
dwnewjupytercf:31046870
2f103344:31071589
impr_priority:31102340
nativerepl2:31139839
pythonrstrctxt:31112756
cf971741:31144450
iacca1:31171482
notype1cf:31157160
5fd0e150:31155592
dwcopilot:31170013
j44ff735:31181874
```
</details>
<!-- generated by issue reporter --> | bug,editor-minimap | low | Critical |
2,669,085,917 | vscode | Support building the monaco-editor AMD variant | null | plan-item | low | Minor |
2,669,148,433 | godot | Web export renders 1px wide textures completely black. | ### Tested versions
- Reproducible in v4.3.stable.steam [77dcf97d8]
(Unable to immediately test older versions)
### System information
Windows 10 - v4.3.stable.steam [77dcf97d8] - Replicates on OpenGL
### Issue description
If you set a StandardMaterial3D's texture to a 1 pixel thin texture and apply it to a mesh, it will render the mesh's material as completely black when playing via web.
**In Editor as a single pixel thin texture:**

**In Desktop debug (Windows):**

**In web debug (Waterfox, but has been tested on Chrome, Edge, Firefox, etc, same result):**

### Steps to reproduce
- Create a StandardMaterial3D
- I set it to shading mode unshaded, but even if lit, it shows up as a slight dark grey/black.
- Apply 1px wide texture
### Minimal reproduction project (MRP)
[minimal-reproduction-project.zip](https://github.com/user-attachments/files/17992757/minimal-reproduction-project.zip)
| bug,topic:rendering,needs testing,topic:3d | low | Critical |
2,669,247,675 | go | net/http/cgi: should accept "INCLUDED" as protocol for server side includes | ### Go version
go version go1.23.1 darwin/arm64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='arm64'
GOBIN=''
GOCACHE='/Users/peterbeard/Library/Caches/go-build'
GOENV='/Users/peterbeard/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMODCACHE='/Users/peterbeard/go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='darwin'
GOPATH='/Users/peterbeard/go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/usr/local/go'
GOSUMDB='sum.golang.org'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/usr/local/go/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.23.1'
GODEBUG=''
GOTELEMETRY='local'
GOTELEMETRYDIR='/Users/peterbeard/Library/Application Support/go/telemetry'
GCCGO='gccgo'
GOARM64='v8.0'
AR='ar'
CC='clang'
CXX='clang++'
CGO_ENABLED='1'
GOMOD='/Users/peterbeard/Development/www/fcgi-test/go.mod'
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/db/tdhgwvfj52q95b07mgfhpr7h0000gp/T/go-build3740171001=/tmp/go-build -gno-record-gcc-switches -fno-common'
```
### What did you do?
I created a local Apache server using the official `php:7.2-apache` docker image. I installed mod_fcgid and included the cgi, includes, and fcgid mod packages. I made the necessary changes to the httpd.conf file and ran the server with a compiled go cgi program in the /cgi-bin folder. It works when hitting the file directly from the /cgi-bin folder, but does not work when being used included with Apache SSI both through `<!--#include virtual="/cgi-bin/<bianary-name>.cgi"-->` and `<!--#exec cgi="/cgi-bin/<bianary-name>.cgi"-->`.
After much digging I found that the issue can very simply be replicated on go.dev/play. [See reproduced bug](https://go.dev/play/p/nt1a1teAyAx)
### What did you see happen?
When running both CGI and FCGI compiled programs the following error is logged when being included as server side includes:
`cgi: invalid SERVER_PROTOCOL version`
### What did you expect to see?
FCGI implements CGI so fixing this piece in net/http/cgi will solve the issue for both CGI and FCGI.
Section [4.1.16](https://datatracker.ietf.org/doc/html/rfc3875#section-4.1.16) of the CGI Spec, [RFC 3875](https://datatracker.ietf.org/doc/html/rfc3875), states the following:
> A well-known value for SERVER_PROTOCOL which the server MAY use is
"INCLUDED", which signals that the current document is being included
as part of a composite document, rather than being the direct target
of the client request. The script should treat this as an HTTP/1.0
request.
The following piece of the cgi package does not properly implement this spec.
https://github.com/golang/go/blob/3ca78afb3bf4f28af1ca76875c0a15d6b87a5c50/src/net/http/cgi/child.go#L58-L63
Since this relies entirely on the `http.ParseHttpVersion` function to validate the server protocol, the `INCLUDED` value for SERVER_PROTOCOL is not handled.
The fix could be implemented directly in the CGI child.go script since this only applies to CGI/FCGI only and will not cause problems by modifying `http.ParseHttpVersion`.
Example of one possible fix, in place of the above referenced code block:
```Go
r.Proto = params["SERVER_PROTOCOL"]
var ok bool
if r.Proto == "INCLUDED" {
// Handles SSI (Server Side Include) use case per the CGI RFC 3875 spec as specified in section 4.1.16
r.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion("HTTP/1.0")
} else {
r.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)
}
if !ok {
return nil, errors.New("cgi: invalid SERVER_PROTOCOL version")
}
``` | NeedsInvestigation | low | Critical |
2,669,272,532 | godot | Using built-in feature tags as custom feature tags can cause bugs | ### Tested versions
v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Windows 10.0.22631 - GLES3 (Compatibility) - NVIDIA GeForce GTX 980 Ti (NVIDIA; 32.0.15.6603) - 13th Gen Intel(R) Core(TM) i7-13700K (24 Threads)
### Issue description
It seems that using some built-in feature tags as custom feature tags can cause bugs. As an example, using the `web` custom feature tag on Windows exports causes audio playback to stop working.
This problem also occurs when using the "Customize Run Instances..." feature. By setting the `web` custom feature tag in this window, audio playback will stop working in these instances.
I believe that an error should be presented any time the user attempts to use a built-in feature tag as a custom feature in either an export preset or a run instance.
### Steps to reproduce
1. Create a project that plays audio.
2. Create a new Windows Export preset.
3. Add "web" as a custom feature.
4. Export the game for Windows and note that audio no longer plays.
### Minimal reproduction project (MRP)
[web feature tag bug.zip](https://github.com/user-attachments/files/17803933/web.feature.tag.bug.zip) | bug,topic:export | low | Critical |
2,669,280,873 | flutter | FlutterTexture should provide timestamp and duration or targetTimestamp | ### Use case
Time obtained for example from `CACurrentMediaTime` in `copyPixelBuffer` is irregular because this function is not called at exact time intervals. This irregularity then may be transferred into animation or video sampling leading to choppy animation or dropping frames (as now happens with `video_player` plugin). Currently there is used [this workaround](https://github.com/misos1/packages/blob/24002603a885533831cd343624aab5df2639e933/packages/video_player/video_player_avfoundation/darwin/video_player_avfoundation/Sources/video_player_avfoundation/FVPVideoPlayerPlugin.m#L571-L575) in https://github.com/flutter/packages/pull/7466.
### Proposal
`FlutterTexture` should provide `timestamp` and `duration` or `timestamp` and `targetTimestamp` of the display link (or all 3).
| c: new feature,engine,c: proposal,P3,team-engine,triaged-engine | low | Minor |
2,669,300,480 | TypeScript | .module.scss.d.ts F12 does not direct to .scss. | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
Version: 1.95.1 (system setup)
Commit: 65edc4939843c90c34d61f4ce11704f09d3e5cb6
Date: 2024-10-31T05:14:54.222Z
Electron: 32.2.1
ElectronBuildId: 10427718
Chromium: 128.0.6613.186
Node.js: 20.18.0
V8: 12.8.374.38-electron.0
OS: Windows_NT x64 10.0.20348
Steps to Reproduce:
1. Enable both javascript.preferGoToSourceDefinition and typescript.preferGoToSourceDefinition
2. Have a vite project with sassDts enabled.
3. Have a My.module.scss with a class .myClass
4. Have a file My.js
5. Have the line ```import styles from "./My.module.scss";```
6. sassDts generates a .d.ts file for the My.module.scss, called My.module.scss.d.ts
7. In My.js, add ```styles.myClass```
8. Hit F12
9. The definitions popup now opens the .d.ts by default, which is useless. It should've opened the .scss file (which it also suggests, but there's no way to make this the default). | Bug,Help Wanted | low | Critical |
2,669,307,447 | pytorch | Better Error Message for SymIntArrayRef expected to contain only concrete integers | ### ๐ Describe the bug
Recently it took multiple people and many suggestions to debug why we were getting `SymIntArrayRef expected to contain only concrete integers` error.
The common reasons are:
- FakeTensorMode not enabled
- Op doesn't support symints
- Pydispatcher not enabled - related to above ^.
We should augment the error message to be more informative and potentially diagnose which of the above it is.
cc @ezyang @chauhang @penguinwu @bobrenjc93 @youkaichao
### Versions
master | triaged,oncall: pt2,module: dynamic shapes | low | Critical |
2,669,394,923 | kubernetes | Native histogram support for Kubernetes metrics | ### What would you like to be added?
Following up on the [slack thread](https://kubernetes.slack.com/archives/C0EG7JC6T/p1731346401543199), creating this placeholder issue to add support for instrumenting native histograms in Kubernetes metrics.
### Why is this needed?
[Native histograms](https://prometheus.io/docs/prometheus/latest/feature_flags/#native-histograms) were added to Prometheus that have some nice features around having dynamic bucketing for histograms, reduced cardinality to name a few.
Following are some considerations we should keep in mind when working on native histogram support for K8s metrics (ensure we continue to support both classic histograms meanwhile). As of today, native histograms
- is still an experimental feature in Prom
- only supports Prom protobuf exposition format
| kind/feature,sig/instrumentation,triage/accepted | low | Minor |
2,669,412,761 | PowerToys | Audio Relay type Feature | ### Description of the new feature / enhancement
The new feature should be like the Audio Relay application which transfers audio from one device to the other. It would be nice to have it in Power Toys like an all in one bundle type thing.
### Scenario when this would be used?
You would use this when you have multiple desktops and want to use one pair of headphones to listen to the audio on either desktop. It would be nice if it could support more than just two desktops like Audio Relay does though.
### Supporting information
This is the site of the application I use currently for the audio feature: https://audiorelay.net/ | Needs-Triage | low | Minor |
2,669,544,964 | pytorch | xpu: implement aten::_linalg_eigvals for XPU backend (affecting HF Transformers v4.46.0 and later) | Recent changes in Huggingface Transformers (https://github.com/huggingface/transformers/commit/cdee5285cade176631f4f2ed3193a0ff57132d8b and https://github.com/huggingface/transformers/commit/4a3f1a686fcda27efc19b8b3a87b62a338c2ad86) introduced usage of `torch.linalg.eigvals()` which is not implemented for XPU backend (missing `aten::_linalg_eigvals`) and it's not registered for automated CPU fallback as well. To use this operator with XPU you need to use `PYTORCH_ENABLE_XPU_FALLBACK=1`. Transformers version v4.46.0 and later are affected. Can this operator, please, be added?
- [ ] `aten::_linalg_eigvals`
With:
* https://github.com/huggingface/transformers/commit/e80a65ba4fbbf085fda2cf0fdb0e8d48785979c8
* https://github.com/huggingface/accelerate/commit/8ade23cc6aec7c3bd3d80fef6378cafaade75bbe
* https://github.com/pytorch/pytorch/commit/e429a3b72e787ddcc26ee2ba177643c9177bab24
Can be reproduced running Huggingface Transformers tests for a number of models (such as albert, mpt, gemma2). Here is example for one of the model:
```
$ cat spec.py
import torch
DEVICE_NAME = 'xpu'
MANUAL_SEED_FN = torch.xpu.manual_seed
EMPTY_CACHE_FN = torch.xpu.empty_cache
DEVICE_COUNT_FN = torch.xpu.device_count
$ TRANSFORMERS_TEST_DEVICE_SPEC=spec.py python3 -m pytest --pspec \
tests/models/albert/test_modeling_albert.py::AlbertModelTest::test_resize_embeddings_untied \
tests/models/albert/test_modeling_albert.py::AlbertModelTest::test_resize_tokens_embeddings
```
CC: @gujinghui @EikanWang @fengyuan14 @guangyey @jgong5
cc @gujinghui @EikanWang @fengyuan14 @guangyey | triaged,enhancement,module: xpu | low | Minor |
2,669,576,719 | go | x/tools/gopls/internal/cache/methodsets: "can't find path for func" panic in indexBuilder.build (no object path for method) | ```
#!stacks
"runtime.gopanic" && "methodsets.(*indexBuilder).build.func2:+12" ||
"bug.Reportf" && "(*indexBuilder).build.func2:+32"
```
Issue created by [stacks](https://pkg.go.dev/golang.org/x/tools/gopls/internal/telemetry/cmd/stacks).
```go
// Instantiations of generic methods don't have an
// object path, so we use the generic.
if p, err := objectpathFor(method.Origin()); err != nil {
panic(err) // can't happen for a method of a package-level type
} else {
m.ObjectPath = b.string(string(p))
}
```
First stack is [here](https://github.com/golang/go/issues/70418#issuecomment-2486096416).
gopls version: v0.17.0-pre.2/go1.23.2
gopls flags:
update flags: proxy
extension version: 0.42.1
environment: Cursor darwin
initialization error: undefined
issue timestamp: Sat, 16 Nov 2024 15:11:16 GMT
restart history:
Sat, 16 Nov 2024 15:10:59 GMT: activation (enabled: true)
<details><summary>gopls stats -anon</summary>
{
"DirStats": {
"Files": 5774,
"TestdataFiles": 216,
"GoFiles": 960,
"ModFiles": 1,
"Dirs": 516
},
"GOARCH": "arm64",
"GOOS": "darwin",
"GOPACKAGESDRIVER": "",
"GOPLSCACHE": "",
"GoVersion": "go1.23.2",
"GoplsVersion": "v0.17.0-pre.2",
"InitialWorkspaceLoadDuration": "1.603257166s",
"MemStats": {
"HeapAlloc": 318890328,
"HeapInUse": 434987008,
"TotalAlloc": 1358687472
},
"WorkspaceStats": {
"Files": {
"Total": 9784,
"Largest": 4950165,
"Errs": 0
},
"Views": [
{
"GoCommandVersion": "go1.23.2",
"AllPackages": {
"Packages": 2191,
"LargestPackage": 159,
"CompiledGoFiles": 10309,
"Modules": 322
},
"WorkspacePackages": {
"Packages": 199,
"LargestPackage": 54,
"CompiledGoFiles": 1185,
"Modules": 1
},
"Diagnostics": 0
}
]
}
}
</details>
Dups: yJIbcA 9nLJcw | gopls,Tools,gopls/telemetry-wins | low | Critical |
2,669,580,849 | svelte | Legacy #await problem | ### Describe the bug
Await block unexpectedly evaluates expression upon state changes in legacy mode.
Expected behavior is to only have the expression evaluated when its variables change.
### Reproduction
https://svelte.dev/playground/53cc8a72175c41c6bebb2bbb75d069a7?version=5.2.3
### Logs
_No response_
### System Info
```shell
System:
OS: Windows 10 10.0.19045
CPU: (16) x64 Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz
Memory: 9.01 GB / 25.53 GB
Binaries:
Node: 18.12.1 - C:\Program Files\nodejs\node.EXE
npm: 9.1.3 - C:\Program Files\nodejs\npm.CMD
Browsers:
Edge: Chromium (130.0.2849.80)
Internet Explorer: 11.0.19041.4355
npmPackages:
rollup: ^4.22.4 => 4.27.3
svelte: ^5.1.6 => 5.2.3
```
### Severity
blocking an upgrade | bug | low | Critical |
2,669,674,193 | transformers | Export to ExecuTorch with Quantization | ### Feature request
This task is to experiment running quantized HuggingFace models with ExecuTorch out-of-the-box.
The heavy-lifting quantization work will be done through [`quantize_`](https://github.com/pytorch/ao/blob/main/torchao/quantization/quant_api.py#L94) API by [`torchao`](https://github.com/pytorch/ao), for example `quantize_(model, int4_weight_only())`.
The quantization API can be integrated with the integration points to executorch `transformers.integrations.executorch`, expanding the export workflow with a new option of "exporting with quantization". In eager, users can verify the numerics accuracy of the quantized exported artifact, e.g. the script for eval llama ([here](https://github.com/pytorch/ao/blob/main/torchao/_models/llama/eval.py)). In ExecuTorch, users can just load the quantized `.pte` files to ExecuTorch runner for inference.
### Motivation
Experiment quantization workflow w/ `transforms` + `torchao` + `executorch`
### Your contribution
Direct contribution, or provide guidance to anyone who is interested in this work | Feature request,ExecuTorch | low | Minor |
2,669,716,621 | pytorch | `torch._inductor.cpu_vec_isa.pick_vec_isa` takes ~9 seconds to run | I noticed that when compiling a small microbenchmark (with inductor warm caching), E2E compile times were ~4s with cuda tensors and ~15s with cpu tensors. It looks like the majority of the extra time for cpu is spent when inductor runs `pick_vec_isa`:
```
import torch
from torch._inductor.cpu_vec_isa import pick_vec_isa
import time
start = time.time()
out = pick_vec_isa()
end = time.time()
# 9.106s on my machine
print(end - start)
```
cc @jgong5 @mingfeima @XiaobingSuper @sanchitintel @ashokei @jingxu10 @chauhang @penguinwu @voznesenskym @EikanWang @Guobing-Chen @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @ipiszy @yf225 @chenyang78 @kadeng @muchulee8 @ColinPeppler @amjames @desertfire @aakhundov @ezyang @gchanan @zou3519 @msaroufim | module: cpu,triaged,oncall: pt2,module: inductor,oncall: cpu inductor | low | Major |
2,669,757,649 | transformers | Add `Tensor Parallel` support for ALL models | Just opening this to add support for all models following #34184
Lets bring support to all model! ๐ค
- [x] Llama
It would be great to add the support for more architectures such as
- [ ] Qwen2
- [ ] QwenVl
- [ ] Mistral
- [ ] Llava
... and many more
For anyone who wants to contribute just open a PR and link it to this issue, and ping me for a review!! ๐ค | Feature request,Tensor Parallel,Good Difficult Issue | low | Major |
2,669,772,254 | PowerToys | Specific Configrurations on Startup | ### Description of the new feature / enhancement
How cool would it be to have specific utilities automatically run at startup! With all bells and whistles enabled I feel, this op might be a little resource intensive, so this configuration makes more sense.
### Scenario when this would be used?
At Startup!
### Supporting information
Fun rant: I asked ChatGPT if it was possible to enable only a specific set of util at startup with Powertoys. it said no โ but also suggested forwarding the idea to the team, as they actively accept feature requests. | Needs-Triage | low | Minor |
2,669,853,580 | vscode | Calling openNotebookDocument with hidden notebook URI creates another untitled*.ipynb with same URI | Investigated from: https://github.com/microsoft/vscode-python/pull/24148#pullrequestreview-2443313565
In the reloading of notebook document such as native REPL, calling
```
await workspace.openNotebookDocument(mementoValue as Uri);
```
works fine if the notebook document is visible.
Problem happens when user hide their notebook document (such as native REPL) hiding behind some untitled text file, and then calling
```
await workspace.openNotebookDocument(mementoValue as Uri);
```
will create another instance of untitled.ipynb with the same exact URI as the notebook that was hidden.
https://github.com/user-attachments/assets/75e93dcc-ccc5-46ef-b4c8-d824bfc3fdbe
| bug,notebook | low | Minor |
2,669,870,130 | go | runtime: deprecate SetFinalizer | The original intent of proposal #67535 included the deprecation of SetFinalizer. While the proposal is approved and the implementation has landed in the tree, we feel less [comfortable](https://go-review.googlesource.com/c/go/+/629215/comment/915b4be1_5b9fd51d/) with deprecating SetFinalizer in the same release as the addition of AddCleanup. Notibly, the lack of a trivial migration from SetFinalizer to AddCleanup was an issue that was mentioned. This issue intends to track the deprecation of SetFinalizer in a future release of Go and the discussion surrounding it.
@mknyszek @cagedmantis @ianlancetaylor | NeedsFix,compiler/runtime | low | Minor |
2,669,947,481 | flutter | [web] The text cursor/caret in a TextField does not visually move in Firefox when an arrow key is held pressed | ### Steps to reproduce
In a Flutter web app running in Firefox on desktop (with a physical keyboard):
1. Type some text in a `TextField`.
2. Press _and hold_ the `<left>` arrow key (assuming LTR text) to move the text cursor/caret backwards.
### Expected results
The text cursor should move backwards/to the left, through the sequence of characters in the `TextField`.
### Actual results
The text cursor keeps flashing in the position it was in, until you release the arrow key, at which point the cursor shows up at the correct text position.
### Code sample
<details open><summary>Code sample</summary>
```dart
import 'package:flutter/material.dart';
void main() => runApp(const TextFieldExampleApp());
class TextFieldExampleApp extends StatelessWidget {
const TextFieldExampleApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: TextFieldExample(),
);
}
}
class TextFieldExample extends StatefulWidget {
const TextFieldExample({super.key});
@override
State<TextFieldExample> createState() => _TextFieldExampleState();
}
class _TextFieldExampleState extends State<TextFieldExample> {
late TextEditingController _controller;
@override
void initState() {
super.initState();
_controller = TextEditingController();
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: TextField(
controller: _controller,
onSubmitted: (String value) => print(value),
),
),
);
}
}
```
</details>
### Screenshots or Video
<details open>
<summary>Screenshots / Video demonstration</summary>
Firefox, cursor remaining in place until arrow key let go:
[cursor_firefox_cursor_not_moving.webm](https://github.com/user-attachments/assets/0d0aca43-59d0-4b92-a4c1-cfadf1878399)
Firefox, holding down shift while keeping an arrow key pressed shows the selection growing:
[cursor_firefox_selections.webm](https://github.com/user-attachments/assets/f78803c3-ee75-4399-90e9-b517455ba9ea)
Chrome, works as expected:
[cursor_chrome.webm](https://github.com/user-attachments/assets/72c3c70f-1588-4ccf-83b7-0473a08eff11)
</details>
### Logs
_No response_
### Flutter Doctor output
<details open><summary>Doctor output</summary>
```console
[โ] Flutter (Channel stable, 3.24.5, on Ubuntu 24.04.1 LTS 6.8.0-48-generic, locale en_US.UTF-8)
โข Flutter version 3.24.5 on channel stable at /home/abc/code/flutter
โข Upstream repository https://github.com/flutter/flutter.git
โข Framework revision dec2ee5c1f (5 days ago), 2024-11-13 11:13:06 -0800
โข Engine revision a18df97ca5
โข Dart version 3.5.4
โข DevTools version 2.37.3
[!] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
โข Android SDK at /home/abc/Android/Sdk
โข Platform android-34, build-tools 34.0.0
โข Java binary at: /snap/android-studio/161/jbr/bin/java
โข Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11609105)
! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses
[โ] Chrome - develop for the web
โข Chrome at google-chrome
[โ] Linux toolchain - develop for Linux desktop
โข Ubuntu clang version 18.1.3 (1ubuntu1)
โข cmake version 3.28.3
โข ninja version 1.11.1
โข pkg-config version 1.8.1
[โ] Android Studio (version 2024.1)
โข Android Studio at /snap/android-studio/161
โข Flutter plugin version 81.0.2
โข Dart plugin can be installed from:
๐จ https://plugins.jetbrains.com/plugin/6351-dart
โข Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11609105)
[โ] VS Code (version 1.95.1)
โข VS Code at /snap/code/current/usr/share/code
โข Flutter extension version 3.100.0
[โ] Connected device (2 available)
โข Linux (desktop) โข linux โข linux-x64 โข Ubuntu 24.04.1 LTS 6.8.0-48-generic
โข Chrome (web) โข chrome โข web-javascript โข Google Chrome 131.0.6778.69
[โ] Network resources
โข All expected network resources are available.
! Doctor found issues in 1 category.
```
</details>
| a: text input,a: fidelity,platform-web,has reproducible steps,browser: firefox,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Minor |
2,670,039,204 | go | cmd/go: TestScript/cover_sync_atomic_import failures | ```
#!watchflakes
default <- pkg == "cmd/go" && test == "TestScript/cover_sync_atomic_import"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730899952690167873)):
=== RUN TestScript/cover_sync_atomic_import
=== PAUSE TestScript/cover_sync_atomic_import
=== CONT TestScript/cover_sync_atomic_import
script_test.go:139: 2024-11-18T20:54:46Z
script_test.go:141: $WORK=/home/swarming/.swarming/w/ir/x/t/cmd-go-test-727923194/tmpdir1021279256/cover_sync_atomic_import3372092879
script_test.go:163:
PATH=/home/swarming/.swarming/w/ir/x/t/cmd-go-test-727923194/tmpdir1021279256/testbin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/cache/tools/bin:/home/swarming/.swarming/w/ir/bbagent_utility_packages:/home/swarming/.swarming/w/ir/bbagent_utility_packages/bin:/home/swarming/.swarming/w/ir/cipd_bin_packages:/home/swarming/.swarming/w/ir/cipd_bin_packages/bin:/home/swarming/.swarming/w/ir/cipd_bin_packages/cpython3:/home/swarming/.swarming/w/ir/cipd_bin_packages/cpython3/bin:/home/swarming/.swarming/w/ir/cache/cipd_client:/home/swarming/.swarming/w/ir/cache/cipd_client/bin:/home/swarming/.swarming/cipd_cache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOME=/no-home
CCACHE_DISABLE=1
GOARCH=amd64
...
[stdout]
ok sync/atomic 1.032s coverage: 23.3% of statements
> go test -short -cover -race -run=TestAnd8 internal/runtime/atomic
[stdout]
PASS
error generating coverage report: processing counter data file /home/swarming/.swarming/w/ir/x/t/cmd-go-test-727923194/tmpdir1021279256/cover_sync_atomic_import3372092879/tmp/go-build3209127363/b001/gocoverdir/covcounters.f3aa8210249b3824780256cba1210f3b.419336.1731963357691381105: merging counters: len(dst)=4 len(src)=1
FAIL internal/runtime/atomic 0.044s
FAIL
script_test.go:163: FAIL: testdata/script/cover_sync_atomic_import.txt:20: go test -short -cover -race -run=TestAnd8 internal/runtime/atomic: exit status 1
--- FAIL: TestScript/cover_sync_atomic_import (71.48s)
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | low | Critical |
2,670,041,239 | go | cmd/go: TestScript/test_fuzz_mutate_crash failures [consistent failure] | ```
#!watchflakes
default <- pkg == "cmd/go" && test == "TestScript/test_fuzz_mutate_crash"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730898603012087249)):
=== RUN TestScript/test_fuzz_mutate_crash
=== PAUSE TestScript/test_fuzz_mutate_crash
=== CONT TestScript/test_fuzz_mutate_crash
script_test.go:139: 2024-11-18T20:59:01Z
script_test.go:141: $WORK=/home/swarming/.swarming/w/ir/x/t/cmd-go-test-1534623394/tmpdir4130087195/test_fuzz_mutate_crash1035018309
script_test.go:163:
PATH=/home/swarming/.swarming/w/ir/x/t/cmd-go-test-1534623394/tmpdir4130087195/testbin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/x/w/goroot/bin:/home/swarming/.swarming/w/ir/cache/tools/bin:/home/swarming/.swarming/w/ir/bbagent_utility_packages:/home/swarming/.swarming/w/ir/bbagent_utility_packages/bin:/home/swarming/.swarming/w/ir/cipd_bin_packages:/home/swarming/.swarming/w/ir/cipd_bin_packages/bin:/home/swarming/.swarming/w/ir/cipd_bin_packages/cpython3:/home/swarming/.swarming/w/ir/cipd_bin_packages/cpython3/bin:/home/swarming/.swarming/w/ir/cache/cipd_client:/home/swarming/.swarming/w/ir/cache/cipd_client/bin:/home/swarming/.swarming/cipd_cache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOME=/no-home
CCACHE_DISABLE=1
GOARCH=amd64
...
--- FAIL: FuzzWithBug (0.58s)
--- FAIL: FuzzWithBug (0.00s)
testing.go:1665: panic: this input caused a crash!
goroutine 38 [running]:
runtime/debug.Stack()
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/debug/stack.go:26 +0x9b
testing.tRunner.func1()
/home/swarming/.swarming/w/ir/x/w/goroot/src/testing/testing.go:1665 +0x1c8
panic({0x60eb00?, 0x695d10?})
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/panic.go:787 +0x132
...
# Running the fuzzer should find a crashing input quickly for fuzzing two types. (2.023s)
> ! go test -run=FuzzWithTwoTypes -fuzz=FuzzWithTwoTypes -fuzztime=100x -fuzzminimizetime=1000x
[stdout]
warning: starting with empty corpus
fuzz: elapsed: 0s, execs: 0 (0/sec), new interesting: 0 (total: 0)
fuzz: elapsed: 0s, execs: 111 (494/sec), new interesting: 1 (total: 1)
PASS
ok m 0.292s
script_test.go:163: FAIL: testdata/script/test_fuzz_mutate_crash.txt:67: go test -run=FuzzWithTwoTypes -fuzz=FuzzWithTwoTypes -fuzztime=100x -fuzzminimizetime=1000x: unexpected success
--- FAIL: TestScript/test_fuzz_mutate_crash (130.46s)
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | low | Critical |
2,670,045,548 | next.js | When generateMetadata performs an asynchronous action, Suspense is not being rendered until generateMetadata finish | ### Link to the code that reproduces this issue
https://github.com/ebidrey/suspense-generate-metadata
### To Reproduce
### To Reproduce
You can run this simple snippet
```javascript
import { Suspense } from "react"
export async function generateMetadata() {
const results = await fetch('https://postman-echo.com/delay/2');
await results.json();
return {
title: 'Test',
description: 'Test',
}
}
async function PageContent() {
const results = await fetch('https://postman-echo.com/delay/2');
await results.json();
return <h1>Test</h1>
}
export default async function Page() {
return (
<Suspense fallback={<div>loading running 2 seconds later</div>} key={Math.random()}>
<PageContent />
</Suspense>
)
}
```
It is also available in [github repo](https://github.com/ebidrey/suspense-generate-metadata)
### Current vs. Expected behavior
I expect suspense fallback to be activated immediately when the page request is made and then, the page and the metadata get streamed. Instead, page stucks for the amount of time the request to the api takes, showing nothing up to the request finished, degradating the user experience and not improving SEO in any way.
### Provide environment information
```bash
Operating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000
Available memory (MB): 16384
Available CPU cores: 10
Binaries:
Node: 20.9.0
npm: 10.1.0
Yarn: 1.22.10
pnpm: N/A
Relevant Packages:
next: 15.0.4-canary.14 // Latest available version is detected (15.0.4-canary.14).
eslint-config-next: 15.0.4-canary.14
react: 19.0.0-rc-380f5d67-20241113
react-dom: 19.0.0-rc-380f5d67-20241113
typescript: 5.6.3
Next.js Config:
output: N/A
```
### Which area(s) are affected? (Select all that apply)
Metadata, Performance
### Which stage(s) are affected? (Select all that apply)
next dev (local), next build (local), next start (local), Vercel (Deployed), Other (Deployed)
### Additional context
Tested in latest canary and stable. | bug,Metadata,Performance | low | Major |
2,670,059,661 | transformers | Allow to give the dataset multiprocessing_context | ### Feature request
In Huggingface Trainer, allow to pass the multiprocessing context : https://pytorch.org/docs/stable/data.html#torch.utils.data.DataLoader
### Motivation
For a dataset that is loaded on multiple cpu cores, sometimes the fork method creates problems (with polars for example) and the spawn method is more adapted.
### Your contribution
I could do a PR. A fix could be to add one more parameter to Trainer and pass it to the Dataloader down the line. | Feature request | low | Minor |
2,670,110,041 | neovim | LSP: vim.lsp.codelens.run() operates on the innermost scope | ### Problem
Some code lenses (e.g. ruby-lsp's `rubyLsp.runTest`) span multiple lines, that is, their `range.start.line` and `range.end.line` may be different.
When I am working on a test and ready to run it again, I have to navigate up to its first line before I can invoke `vim.lsp.codelens.run()`, which adds a little friction.
I have [code in my `init.lua`](https://github.com/matthewtodd/dotfiles/blob/7c6a7b0b2652e084bfcf8b21d58e93854fb81032/etc/nvim/init.lua#L59-L82) to detect enclosing code lenses for the current line and navigate up to the first line of the narrowest one, but I'm wondering if solving this for everyone would be interesting.
### Expected behavior
I would love to have a way to run the narrowest enclosing codelens without having to navigate.
Maybe this is making `vim.lsp.codelens.run()` magic, or maybe it's offering a new magic `vim.lsp.codelens.runEnclosing()` function, or maybe it's just having `vim.lsp.codelens.run()` accept an optional line number, falling back to the current cursor line.
Happy to work up a PR for any of this, but figured I'd start the conversation first! | enhancement,lsp | low | Minor |
2,670,185,280 | godot | Moving C# scripts outside of Godot breaks source generation | ### Tested versions
Met right now, v4.3.0, never saw before.
### System information
Godot v4.3.0
### Issue description
I have couple a code for a potions system:
``` csharp
using Godot;
namespace Workgame.Inventory.Items;
[GlobalClass] public partial class Potion : Item {
[Export] public int Energy;
[Export] public double Duration;
public void Consume() {
}
}
```
When I, as always, go to Godot and build the project I get this:
- /home/operator/projects/project-alpha/scripts/inventory/items/potions/Potion.cs (4 issues)
- CS0579: Duplicate 'GlobalClass' attribute /home/operator/projects/project-alpha/scripts/inventory/items/potions/Potion.cs(5,2)
- CS0102: The type 'Potion' already contains a definition for 'Energy' /home/operator/projects/project-alpha/scripts/inventory/items/potions/Potion.cs(6,22)
- CS0102: The type 'Potion' already contains a definition for 'Duration' /home/operator/projects/project-alpha/scripts/inventory/items/potions/Potion.cs(7,25)
- CS0111: Type 'Potion' already defines a member called 'Consume' with the same parameter types /home/operator/projects/project-alpha/scripts/inventory/items/potions/Potion.cs(9,14)
- /home/operator/projects/project-alpha/Godot.SourceGenerators/Godot.SourceGenerators.ScriptPropertiesGenerator/Workgame.Inventory.Items.Potion_ScriptProperties.generated.cs (2 issues)
- CS0102: The type 'Potion.PropertyName' already contains a definition for 'Energy' /home/operator/projects/project-alpha/Godot.SourceGenerators/Godot.SourceGenerators.ScriptPropertiesGenerator/Workgame.Inventory.Items.Potion_ScriptProperties.generated.cs(24,61)
- CS0102: The type 'Potion.PropertyName' already contains a definition for 'Duration' /home/operator/projects/project-alpha/Godot.SourceGenerators/Godot.SourceGenerators.ScriptPropertiesGenerator/Workgame.Inventory.Items.Potion_ScriptProperties.generated.cs(28,61)
That happened after I moved `scripts/inventory/items/Potion.cs` to `scripts/inventory/items/potions/Potion.cs`.
### Steps to reproduce
You should try to move your C# script files from one folder to other using filemanager or your code editor, I personally moved it with `mv` commands in terminal. When I moved `Potions.cs` back from `scripts/inventory/items/potions` to `scripts/inventory/items` and built the project that buggy error disappeared.
### Minimal reproduction project (MRP)
It can be ***anything***. You just do the **Steps to reproduce** section. | bug,needs testing,topic:dotnet | low | Critical |
2,670,211,195 | go | x/tools/gopls: feature: support SnippetTextEdit in codeactions | ### gopls version
.
### go env
```shell
.
```
### What did you do?
Jdtls's [preview](https://github.com/redhat-developer/vscode-java) version has this feature, and lsp has [snippetTextEdit](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/#snippetTextEdit) merged
### What did you see happen?
https://github.com/user-attachments/assets/6fcb6b07-150b-4401-bd07-fee7a93cb129
### What did you expect to see?
With snippets, for extract function/method/variable, we can change function/variable name in two places at the same time; for fill struct, all the right side of property assignment can be a snippet node; and for generate missing function/method, we can select the panic("unimplemented") so user can replace it right away.
### Editor and settings
_No response_
### Logs
_No response_ | FeatureRequest,gopls,Tools | low | Minor |
2,670,219,750 | TypeScript | Class member completion crash in a monorepo utilizing `baseUrl` | ### ๐ Search Terms
baseurl class member completions
### ๐ Version & Regression Information
- This is the behavior in every version I tried
### โฏ Playground Link
N/A
### ๐ป Code
`tests/cases/fourslash/server/completionsClassMembersBaseUrlNoCrash1.ts`:
```ts
/// <reference path="../fourslash.ts" />
// @Filename: /home/src/workspaces/solution/package.json
//// {
//// "name": "monorepo-like",
//// }
// @Filename: /home/src/workspaces/solution/tsconfig.json
//// {
//// "compilerOptions": {
//// "moduleResolution": "node",
//// "paths": {
//// "*": ["../../app/node_modules/*"],
//// "tabby-*": ["../../tabby-*/src"],
//// }
//// }
//// }
// @Filename: /home/src/workspaces/solution/tabby-core/package.json
//// {
//// "name": "tabby-core"
//// }
// @Filename: /home/src/workspaces/solution/tabby-core/tsconfig.json
//// {
//// "extends": "../tsconfig.json"
//// }
// @Filename: /home/src/workspaces/solution/tabby-core/src/index.ts
//// import { Subject } from "rxjs";
////
//// export abstract class BaseTabComponent {
//// protected recoveryStateChangedHint = new Subject<void>();
//// }
// @Filename: /home/src/workspaces/solution/tabby-settings/package.json
//// {
//// "name": "tabby-settings",
//// "peerDependencies": {
//// "rxjs": "^7"
//// }
//// }
// @Filename: /home/src/workspaces/solution/tabby-settings/tsconfig.json
//// {
//// "extends": "../tsconfig.json",
//// "compilerOptions": {
//// "baseUrl": "src"
//// }
//// }
// @Filename: /home/src/workspaces/solution/tabby-settings/components/settingsTab.component.ts
//// import { BaseTabComponent } from "tabby-core";
//// export class SettingsTabComponent extends BaseTabComponent {
//// /*1*/
//// }
// @Filename: /home/src/workspaces/solution/app/package.json
//// {
//// "name": "tabby"
//// }
// @Filename: /home/src/workspaces/solution/app/tsconfig.json
//// {}
// @Filename: /home/src/workspaces/solution/app/node_modules/rxjs/package.json
//// {
//// "name": "rxjs"
//// }
// @Filename: /home/src/workspaces/solution/app/node_modules/rxjs/index.d.ts
//// export declare class Subject<T> {}
// @Filename: /home/src/workspaces/solution/node_modules/rxjs/package.json
//// {
//// "name": "rxjs"
//// }
// @Filename: /home/src/workspaces/solution/node_modules/rxjs/index.d.ts
//// export declare class Subject<T> {}
verify.completions({
marker: "1",
includes: [
{
name: "recoveryStateChangedHint",
insertText: "protected recoveryStateChangedHint: Subject<void>;",
filterText: "recoveryStateChangedHint",
hasAction: true,
source: "ClassMemberSnippet/",
},
],
preferences: {
includeCompletionsWithInsertText: true,
includeCompletionsWithClassMemberSnippets: true,
},
isNewIdentifierLocation: true,
}).andApplyCodeAction({
/* TODO */
});
```
### ๐ Actual behavior
it crashes with:
```
Req #3582 - completionInfo
at Object.addImportFromExportedSymbol (/typescript-5.8.0-dev.20241117/lib/typescript.js:157407:13)
at /typescript-5.8.0-dev.20241117/lib/typescript.js:164705:38
at importSymbols (/typescript-5.8.0-dev.20241117/lib/typescript.js:164705:11)
at Object.addNewNodeForMemberSymbol (/typescript-5.8.0-dev.20241117/lib/typescript.js:164058:11)
at getEntryForMemberCompletion (/typescript-5.8.0-dev.20241117/lib/typescript.js:166975:22)
at createCompletionEntry (/typescript-5.8.0-dev.20241117/lib/typescript.js:166815:35)
at getCompletionEntriesFromSymbols (/typescript-5.8.0-dev.20241117/lib/typescript.js:167458:19)
at completionInfoFromData (/typescript-5.8.0-dev.20241117/lib/typescript.js:166448:23)
at Object.getCompletionsAtPosition (/typescript-5.8.0-dev.20241117/lib/typescript.js:165981:24)
at Object.getCompletionsAtPosition2 [as getCompletionsAtPosition] (/typescript-5.8.0-dev.20241117/lib/typescript.js:152198:35)
at IOSession.getCompletions (/typescript-5.8.0-dev.20241117/lib/typescript.js:194948:54)
at completionInfo (/typescript-5.8.0-dev.20241117/lib/typescript.js:193222:43)
at /typescript-5.8.0-dev.20241117/lib/typescript.js:195725:15
at IOSession.executeWithRequestId (/typescript-5.8.0-dev.20241117/lib/typescript.js:195714:14)
at IOSession.executeCommand (/typescript-5.8.0-dev.20241117/lib/typescript.js:195723:29)
at IOSession.onMessage (/typescript-5.8.0-dev.20241117/lib/typescript.js:195771:68)
at Interface.<anonymous> (/typescript-5.8.0-dev.20241117/lib/_tsserver.js:495:14)
```
### ๐ Expected behavior
It shouldn't crash
### Additional information about the issue
repro bases on https://github.com/microsoft/TypeScript/issues/60527#issuecomment-2481655927 | Bug,Help Wanted | low | Critical |
2,670,220,680 | next.js | Intercepted routes don't update metadata | ### Link to the code that reproduces this issue
https://github.com/pseudotsuga-fir/nextgram-broken-metadata
### To Reproduce
1. Add unique metadata to an intercepted route
```js
export async function generateMetadata({
params,
}: {
params: Promise<{ id: string }>;
}): Promise<Metadata> {
const id = (await params).id;
return {
title: `Page ${id} intercepted`,
};
}
```
2. Add link to a page that leads to intercepted route, see that intercepted page does not change the metadata
### Current vs. Expected behavior
## Current
Metadata remains the same as the current page when intercepting a route, despite the intercepted route providing its own metadata. The metadata for the intercepted route WILL display however under the specific circumstance of navigating as such via the `<Link>` component: Page 1 (provides custom metadata) > Page 2 (does not provide metadata) > Intercepted Route (provides custom metadata).
<img width="1399" alt="Screenshot 2024-11-18 at 2 49 26 PM" src="https://github.com/user-attachments/assets/08a61ce3-65bc-4eef-a910-e4beec432c0c">
## Expected
Metadata updates upon navigating to an intercepted route based on the metadata provided in the `page` of that route.
<img width="1399" alt="Screenshot 2024-11-18 at 2 49 58 PM" src="https://github.com/user-attachments/assets/f1d9e3bf-476e-413b-8b89-08c464ea1950">
### Provide environment information
```bash
Operating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 22.2.0: Fri Nov 11 02:06:26 PST 2022; root:xnu-8792.61.2~4/RELEASE_ARM64_T8112
Available memory (MB): 24576
Available CPU cores: 8
Binaries:
Node: 20.18.0
npm: 10.8.2
Yarn: 1.22.22
pnpm: 8.9.0
Relevant Packages:
next: 15.0.3 // Latest available version is detected (15.0.3).
eslint-config-next: N/A
react: 19.0.0-rc-fb9a90fa48-20240614
react-dom: 19.0.0-rc-fb9a90fa48-20240614
typescript: 5.6.3
Next.js Config:
output: N/A
```
### Which area(s) are affected? (Select all that apply)
Metadata, Parallel & Intercepting Routes
### Which stage(s) are affected? (Select all that apply)
next dev (local), next start (local), Vercel (Deployed), Other (Deployed)
### Additional context
**Working example**: [Repo](https://github.com/pseudotsuga-fir/nextgram-working-metadata) and [Live](https://nextgram-working-metadata.vercel.app)
This bug was fixed in `v14.0.5-canary.24`, likely by one of these two pull requests:
- [PR 59861](https://github.com/vercel/next.js/pull/59861)
- [PR 59791](https://github.com/vercel/next.js/pull/59791)
The last working version was `v14.1.4`; I was unable to find which canary version or commits broke this. Issue has remained present since.
Does not work in current canary version as of writing this issue: `v15.0.4-canary.18` | bug,Metadata,linear: next,Parallel & Intercepting Routes | low | Critical |
2,670,258,049 | kubernetes | Division-by-zero in Horizontal Workload Autoscaler | **Which component are you using?**:
Horizontal workload autoscaler.
**What version of the component are you using?**:
Not relevant.
**What k8s version are you using (`kubectl version`)?**:
<details><summary><code>kubectl version</code> Output</summary><br><pre>
$ kubectl version
Client Version: v1.30.6-dispatcher
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.30.5-gke.1443001
</pre></details>
**What environment is this in?**:
Not relevant.
**What did you expect to happen?**:
When the horizontal autoscaler computes the expected number of replicas, [it uses the following formula](https://github.com/kubernetes/kubernetes/blob/cf480a3a1a9cb22f3439c0a7922822d9f67f31b5/pkg/controller/podautoscaler/replica_calculator.go#L369):
```go
usageRatio := float64(usage) / (float64(targetUsagePerPod) * float64(statusReplicas))
```
(This formula (or a variation of it) appears a couple of times in [this file](https://github.com/kubernetes/kubernetes/blob/cf480a3a1a9cb22f3439c0a7922822d9f67f31b5/pkg/controller/podautoscaler/replica_calculator.go#L369).)
It's not impossible that `statusReplicas` (i.e. the `status.replicas` field of the `/scale` subresource) equals zero (e.g. if a user kills pods), leading to a division by zero.
[The Golang spec allows divisions by zero to trigger traps](https://github.com/golang/go/issues/43577), although most implementations would return +Inf (which leads to the correct behaviour) or NaN (if `usage == 0.`, in which case the func would return a negative number of replicas).
**What happened instead?**:
This problem could lead to a panic, or an incorrect behaviour. This could only happen as a result of a race condition, and in the unlikely situation where `status.replicas == 0`. I'm not sure of its practical significance.
**How to reproduce it (as minimally and precisely as possible)**:
This issue only appears as a result of a race condition. I couldn't produce it.
| kind/bug,sig/autoscaling,needs-triage | low | Minor |
2,670,355,185 | vscode | Allow extensions to augment an existing language's configuration, such as surroundingPairs | From #233981
I'd like for the built-in markdown math extension to add a new set of surrounding pairs for the `markdown` language. Currently this doesn't seem possible as each configuration item overwrites the previous:
https://github.com/microsoft/vscode/blob/23457f87fb66a13e910df8b2c2ae22ca9595e6d2/src/vs/editor/common/languages/languageConfigurationRegistry.ts#L254 | feature-request,languages-basic,extensions-editor | low | Minor |
2,670,399,151 | ollama | GPU radeon not used | ### What is the issue?
GPU not used:
2024/11/18 20:38:09 routes.go:1158: INFO server config env="map[CUDA_VISIBLE_DEVICES: GPU_DEVICE_ORDINAL: HIP_VISIBLE_DEVICES: HSA_OVERRIDE_GFX_VERSION: HTTPS_PROXY: HTTP_PROXY: NO_PROXY: OLLAMA_DEBUG:false OLLAMA_FLASH_ATTENTION:false OLLAMA_GPU_OVERHEAD:0 OLLAMA_HOST:http://127.0.0.1:11434 OLLAMA_INTEL_GPU:false OLLAMA_KEEP_ALIVE:5m0s OLLAMA_LLM_LIBRARY: OLLAMA_LOAD_TIMEOUT:5m0s OLLAMA_MAX_LOADED_MODELS:0 OLLAMA_MAX_QUEUE:512 OLLAMA_MODELS:/mnt/data/read/LLM/ollama/.ollama/models OLLAMA_MULTIUSER_CACHE:false OLLAMA_NOHISTORY:false OLLAMA_NOPRUNE:false OLLAMA_NUM_PARALLEL:0 OLLAMA_ORIGINS:[http://localhost https://localhost http://localhost:* https://localhost:* http://127.0.0.1 https://127.0.0.1 http://127.0.0.1:* https://127.0.0.1:* http://0.0.0.0 https://0.0.0.0 http://0.0.0.0:* https://0.0.0.0:* app://* file://* tauri://*] OLLAMA_SCHED_SPREAD:false OLLAMA_TMPDIR: ROCR_VISIBLE_DEVICES: http_proxy: https_proxy: no_proxy:]"
time=2024-11-18T20:38:09.214-04:00 level=INFO source=images.go:754 msg="total blobs: 69"
time=2024-11-18T20:38:09.372-04:00 level=INFO source=images.go:761 msg="total unused blobs removed: 0"
time=2024-11-18T20:38:09.373-04:00 level=INFO source=routes.go:1205 msg="Listening on 127.0.0.1:11434 (version 0.3.14)"
time=2024-11-18T20:38:09.373-04:00 level=INFO source=common.go:135 msg="extracting embedded files" dir=/tmp/ollama1129448929/runners
time=2024-11-18T20:38:15.122-04:00 level=INFO source=common.go:49 msg="Dynamic LLM libraries" runners="[cpu_avx2 cuda_v11 cuda_v12 rocm_v60102 cpu cpu_avx]"
time=2024-11-18T20:38:15.122-04:00 level=INFO source=gpu.go:221 msg="looking for compatible GPUs"
time=2024-11-18T20:38:15.130-04:00 level=WARN source=amd_linux.go:61 msg="ollama recommends running the https://www.amd.com/en/support/linux-drivers" error="amdgpu version file missing: /sys/module/amdgpu/version stat /sys/module/amdgpu/version: no such file or directory"
time=2024-11-18T20:38:15.133-04:00 level=WARN source=amd_linux.go:440 msg="amdgpu detected, but no compatible rocm library found. Either install rocm v6, or follow manual install instructions at https://github.com/ollama/ollama/blob/main/docs/linux.md#manual-install"
time=2024-11-18T20:38:15.133-04:00 level=WARN source=amd_linux.go:345 msg="unable to verify rocm library: no suitable rocm found, falling back to CPU"
time=2024-11-18T20:38:15.133-04:00 level=INFO source=gpu.go:384 msg="no compatible GPUs were discovered"
time=2024-11-18T20:38:15.133-04:00 level=INFO source=types.go:123 msg="inference compute" id=0 library=cpu variant=avx2 compute="" driver=0.0 name="" total="62.0 GiB" available="51.7 GiB"
### OS
Linux
### GPU
AMD
### CPU
AMD
### Ollama version
0.3.14 | bug,amd,needs more info,install | low | Critical |
2,670,402,514 | deno | Process exits before script is completed | **Version:**
```
deno 2.0.6 (stable, release, aarch64-apple-darwin)
v8 12.9.202.13-rusty
typescript 5.6.2
```
**Reproduction:**
Create a file with the following contents:
```js
// node-runtime.js
import * as http from 'node:http';
http.createServer(async (request, response) => {
response.write('Browser message');
response.end();
process.exit(0);
}).listen(5678);
```
... then run with Node (I'm using v20.18.0):
```bash
$ node node-runtime.js
```
.. and visit http://localhost:5678 in your browser. You should see a message:
> Browser message
.. and the script should complete in the terminal.
Now make a new file:
```js
// deno-runtime.js
import * as http from 'node:http';
import { sleep } from "https://deno.land/x/sleep/mod.ts"
http.createServer(async (request, response) => {
response.write('Browser message');
response.end();
await sleep(0.01);
process.exit(0);
}).listen(5678);
```
... then run with Deno (version above):
```bash
$ deno --allow-net deno-runtime.js
```
.. and visit http://localhost:5678 in your browser. You should see the same message as Node.
Now, comment out the `await sleep` statement and you will get an error in the browser that the server can't be connected to (ERR_CONNECTION_REFUSED in Chrome).
| bug,node compat | low | Critical |
2,670,422,655 | excalidraw | Support Power BI Embed Links | Hi,
My company uses Power BI for reporting and analytics. It would be awesome to embed a Power BI report in one of my Whiteboards to help convey data in my Whiteboard presentations | whitelist | low | Minor |
2,670,472,902 | flutter | `flutter doctor` should give more information about why it thinks Cocoapods is broken | ### Steps to reproduce
Setup your environment such that Cocoapods is broken according to `flutter doctor`.
### Actual results
Running `flutter doctor` will give a broad unhelpful message along the lines of:
> Warning: CocoaPods is installed but broken.
> For re-installation instructions, see <link>
The reason this message is unhelpful is, folks coming across this message likely already followed the Cocoapods installation step. But _something_ failed, whatever that is.
I fixed the problem, so I cannot give a clear example. But the other day, I had `pod` installed and working locally. `pod --version` was resolving correctly too. Yet `flutter doctor` considered it broken for some unknown reason.
It would be helpful to:
- show stdout/stderr of the `pod --version` internally used
- show `where pod`, if any
- suggest folks to run `where pod` in their terminal, to compare it with what Flutter is picking up (as some folks may not think about doing it)
This would give folks more information about the problem, outside of "try installing cocoapods again"
| c: new feature,tool,t: flutter doctor,c: proposal,P3,team-ios,triaged-ios | low | Critical |
2,670,476,053 | go | crypto/cipher: TestTagFailureOverwrite/POWER8 failures [consistent failure] | ```
#!watchflakes
default <- pkg == "crypto/cipher" && test == "TestTagFailureOverwrite/POWER8"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730882454928574929)):
=== RUN TestTagFailureOverwrite/POWER8
implementations.go:47: builder doesn't support CPU features needed to test this implementation
--- FAIL: TestTagFailureOverwrite/POWER8 (0.00s)
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | low | Critical |
2,670,476,058 | pytorch | [dynamo] Make dynamo own ExtraState rather than PyCodeObject | Right now, `PyCodeObject`s own `ExtraState` (i.e. dynamo cache entries). Destruction of these `ExtraState`s is implemented in `destroy_extra_state`, implemented in extra_state.cpp, which is called by CPython. However, @anijain2305 has been running into segfaults involving owning `PyCodeObject`s being destroyed as `ExtraState` methods are being called. Thus, we should change ownership of `ExtraState` from `PyCodeObject` to Dynamo global state. This should also make managing memory for `ExtraState` easier since we can rely on C++ memory management instead of raw new/delete.
Source: https://github.com/pytorch/pytorch/pull/140821/files#r1847269744
cc @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @chenyang78 @kadeng @amjames | triaged,oncall: pt2,module: dynamo | low | Minor |
2,670,476,077 | go | crypto/internal/fips/aes/gcm: TestAllocations failures [consistent failure] | ```
#!watchflakes
default <- pkg == "crypto/internal/fips/aes/gcm" && test == "TestAllocations"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730882754849246017)):
=== RUN TestAllocations
ctrkdf_test.go:31: expected zero allocations, got 4.0
--- FAIL: TestAllocations (0.01s)
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | medium | Critical |
2,670,503,190 | PowerToys | please add management for right click menu | ### Description of the new feature / enhancement
please add management for right click menu
### Scenario when this would be used?
please add management for right click menu
### Supporting information
_No response_ | Needs-Triage | low | Minor |
2,670,516,565 | deno | AbortSignals from Deno fetch do not work on Windows | Version: Deno 2.0.6
Hi there,
I'm trying to create a Hono server with a disconnect handler. When I cancel the request from my Postman client, the abort signal from the raw `Request` object never changes to true. This code works on both Node and Bun, so I think this is an issue with Deno's fetch API. See example below (requires Hono)
```ts
import { Hono } from 'hono'
const app = new Hono()
async function stall(stallTime = 3000) {
await new Promise(resolve => setTimeout(resolve, stallTime));
}
app.get('/hello', async (c) => {
// Should show up when hitting Cancel in Postman
c.req.raw.signal.addEventListener("abort", () => {
console.log("Aborted");
})
// Simulate a long-running task
await stall(10000);
return c.text("Hello from Hono!");
})
Deno.serve(app.fetch)
```
| bug,windows | low | Major |
2,670,517,102 | ui | [bug]: When the sidebar is collapsed to icon view, the collapsible menu cannot expand or show subItems. | ### Describe the bug
When the sidebar is collapsed to icon view, the collapsible menu cannot expand or show subItems.
### Affected component/components
Sidebar
### How to reproduce
1. Collapse the sidebar to icon size.
2. Click the menu icon in the collapsed state.
3. The CollapsibleContent does not appear.
### Codesandbox/StackBlitz link
_No response_
### Logs
_No response_
### System Info
```bash
React, Next.js, Tailwind, Typescript
```
### Before submitting
- [X] I've made research efforts and searched the documentation
- [X] I've searched for existing issues | bug | low | Critical |
2,670,518,565 | PowerToys | Scroll to find them every time. | ### Provide a description of requested docs changes
KeyboardManager is great. I often change the functions of Hotkeys. However, it is a pain to have to scroll to find them every time. | Issue-Docs,Needs-Triage | low | Minor |
2,670,523,023 | vscode | vscode not sync `python.venvFolders` | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.95.3
- OS Version: win11 23H2 22631.4460
| info-needed | low | Critical |
2,670,537,315 | go | crypto/cipher: TestFuzz failures | ```
#!watchflakes
default <- pkg == "crypto/cipher" && test == "TestFuzz"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730877636484667713)):
=== RUN TestFuzz
--- FAIL: TestFuzz (0.00s)
panic: crypto/cipher: internal error: generic CBC used with AES [recovered]
panic: crypto/cipher: internal error: generic CBC used with AES
goroutine 796 gp=0xc000005880 m=6 mp=0xc000047808 [running]:
panic({0x238980?, 0x2e1b70?})
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/panic.go:806 +0x188 fp=0xc00011ba88 sp=0xc00011b9c8 pc=0x89468
testing.tRunner.func1.2({0x238980, 0x2e1b70})
/home/swarming/.swarming/w/ir/x/w/goroot/src/testing/testing.go:1706 +0x1d8 fp=0xc00011bb48 sp=0xc00011ba88 pc=0x151798
...
runtime.gopark(0x1bbb7c8dce3f4c?, 0x0?, 0x0?, 0x0?, 0x0?)
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/proc.go:435 +0x114 fp=0xc0000b1ee0 sp=0xc0000b1eb0 pc=0x89964
runtime.gcBgMarkWorker(0xc00040bb90)
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/mgc.go:1412 +0xfc fp=0xc0000b1f98 sp=0xc0000b1ee0 pc=0x2b95c
runtime.gcBgMarkStartWorkers.gowrap1()
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/mgc.go:1328 +0x4c fp=0xc0000b1fc0 sp=0xc0000b1f98 pc=0x2b83c
runtime.goexit({})
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/asm_ppc64x.s:1022 +0x4 fp=0xc0000b1fc0 sp=0xc0000b1fc0 pc=0x91214
created by runtime.gcBgMarkStartWorkers in goroutine 429
/home/swarming/.swarming/w/ir/x/w/goroot/src/runtime/mgc.go:1328 +0x160
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | low | Critical |
2,670,538,152 | PowerToys | Colour blindness simulator | ### Description of the new feature / enhancement
Present a simple screen overlay to assist with colourblind accessibility design.
### Scenario when this would be used?
Designing accessible content within window, pairs well with color picker PowerToys app.
Please see colororacle.org for proof of concept.
### Supporting information
Please see colororacle.org for proof of concept. | Needs-Triage | low | Minor |
2,670,605,944 | flutter | NestedScrollView's use of PrimaryScrollController/AutomaticKeepAliveClientMixin/PageStorageKey breaks when there are multiple inner ScrollPositions | ### Steps to reproduce
https://github.com/flutter/flutter/pull/157756/files this pr, it's not fixed those issues.
* https://github.com/flutter/flutter/issues/62833
* https://github.com/flutter/flutter/issues/81619
* https://github.com/flutter/flutter/issues/21868
* https://github.com/flutter/flutter/issues/36419
The reason is that the scroll list in NestedScrollView's body are cached, they are not removed from ScrollController, so when tap on other tab, and scroll the list, it will change all of postions in ScrollController.
### Expected results
on scroll current tab list
### Actual results
all of tab list are scroll
### Code sample
<details open><summary>Code sample</summary>
```dart
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(home: MyApp()));
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<StatefulWidget> createState() {
return MyAppState();
}
}
class MyAppState extends State<MyApp> with TickerProviderStateMixin {
final List<ListItem> listData = [];
ScrollController sc = ScrollController(initialScrollOffset: 0.0);
late TabController tc;
@override
void initState() {
tc = TabController(length: 2, vsync: this);
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(appBar: AppBar(title: Text('Test')), body: getBody());
}
Widget getBody() {
return NestedScrollView(
controller: sc,
body: Column(
children: [
TabBar(tabs: [Tab(text: 'tab1'), Tab(text: 'tab2')], controller: tc),
Expanded(
child: TabBarView(
controller: tc,
children: <Widget>[
ListBuilder(name: Icons.abc, count: 40),
ListBuilder(name: Icons.accessibility, count: 50),
],
),
),
],
),
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return [];
},
);
}
}
class ListItem {
final String title;
final IconData iconData;
ListItem(this.title, this.iconData);
}
class ListBuilder extends StatefulWidget {
final int count;
final IconData name;
const ListBuilder({required this.count, required this.name, super.key});
@override
_LoadImgByLocAppPageState createState() =>
_LoadImgByLocAppPageState(count, name);
}
class _LoadImgByLocAppPageState extends State
with AutomaticKeepAliveClientMixin {
IconData name;
_LoadImgByLocAppPageState(this.count, this.name);
int count = 20;
final List<ListItem> listData = [];
@override
void initState() {
for (int i = 0; i < count; i++) {
listData.add(ListItem("Item$i", name));
}
super.initState();
}
@override
Widget build(BuildContext context) {
super.build(context);
return SafeArea(
top: false,
bottom: false,
child: Builder(
// This Builder is needed to provide a BuildContext that is "inside"
// the NestedScrollView, so that sliverOverlapAbsorberHandleFor() can
// find the NestedScrollView.
builder: (BuildContext context) {
return CustomScrollView(
slivers: <Widget>[
SliverPadding(
padding: const EdgeInsets.all(8.0),
// In this example, the inner scroll view has
// fixed-height list items, hence the use of
// SliverFixedExtentList. However, one could use any
// sliver widget here, e.g. SliverList or SliverGrid.
sliver: SliverFixedExtentList(
// The items in this example are fixed to 48 pixels
// high. This matches the Material Design spec for
// ListTile widgets.
itemExtent: 48.0,
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
// This builder is called for each child.
// In this example, we just number each list item.
return Text(index.toString());
},
// The childCount of the SliverChildBuilderDelegate
// specifies how many children this inner list
// has. In this example, each tab has a list of
// exactly 30 items, but this is arbitrary.
childCount: listData.length,
),
),
),
],
);
},
),
);
}
@override
bool get wantKeepAlive => true;
}
```
</details>
### Screenshots or Video
<details open>
<summary>Screenshots / Video demonstration</summary>
[Upload media here]
</details>
### Logs
<details open><summary>Logs</summary>
```console
[Paste your logs here]
```
</details>
### Flutter Doctor output
<details open><summary>Doctor output</summary>
```console
[โ] Flutter (Channel master, 3.27.0-1.0.pre.552, on macOS 15.1 24B83 darwin-arm64, locale
zh-Hans-CN)
โข Flutter version 3.27.0-1.0.pre.552 on channel master
```
</details>
| framework,f: scrolling,has reproducible steps,P2,workaround available,team-framework,triaged-framework,found in release: 3.24 | low | Major |
2,670,634,103 | yt-dlp | Site support request for www.olevod.com | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting a new site support request
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels))
- [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details
- [X] I've checked that none of provided URLs [violate any copyrights](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#is-the-website-primarily-used-for-piracy) or contain any [DRM](https://en.wikipedia.org/wiki/Digital_rights_management) to the best of my knowledge
- [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates
- [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue)
- [ ] I've read about [sharing account credentials](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#are-you-willing-to-share-account-details-if-needed) and am willing to share it if required
### Region
Unknown
### Example URLs
Single video: https://www.olevod.com/player/vod/2-60812-1.html
But in this website you can choose other episodes, for example the 2nd episode's website is: https://www.olevod.com/player/vod/2-60812-2.html, 3rd: https://www.olevod.com/player/vod/2-60812-3.html
### Provide a description that is worded well enough to be understood
The above site is not supported, could you support it? Thanks!
### Provide verbose output that clearly demonstrates the problem
- [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`)
- [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead
- [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below
### Complete Verbose Output
```shell
yt-dlp -vU https://www.olevod.com/player/vod/2-60812-1.html
[debug] Command-line config: ['-vU', 'https://www.olevod.com/player/vod/2-60812-1.html']
[debug] Encodings: locale UTF-8, fs utf-8, pref UTF-8, out utf-8, error utf-8, screen utf-8
[debug] yt-dlp version nightly@2024.09.26.232938 from yt-dlp/yt-dlp-nightly-builds [eabb4680f] (pip)
[debug] Python 3.9.17 (CPython x86_64 64bit) - Linux-6.5.0-35-generic-x86_64-with-glibc2.35 (OpenSSL 3.0.9 30 May 2023, glibc 2.35)
[debug] exe versions: ffmpeg 4.4.2 (setts), ffprobe 4.4.2, rtmpdump 2.4
[debug] Optional libraries: Cryptodome-3.20.0, brotli-None, certifi-2023.05.07, mutagen-1.47.0, requests-2.32.3, sqlite3-3.41.2, urllib3-2.2.1, websockets-13.1
[debug] Proxy map: {}
[debug] Request Handlers: urllib, requests, websockets
[debug] Loaded 1838 extractors
[debug] Fetching release info: https://api.github.com/repos/yt-dlp/yt-dlp-nightly-builds/releases/latest
[debug] Downloading _update_spec from https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/latest/download/_update_spec
Current version: nightly@2024.09.26.232938 from yt-dlp/yt-dlp-nightly-builds
Latest version: nightly@2024.11.18.232921 from yt-dlp/yt-dlp-nightly-builds
ERROR: You installed yt-dlp with pip or using the wheel from PyPi; Use that to update
[generic] Extracting URL: https://www.olevod.com/player/vod/2-60812-1.html
[generic] 2-60812-1: Downloading webpage
WARNING: [generic] Falling back on generic information extractor
[generic] 2-60812-1: Extracting information
[debug] Looking for embeds
ERROR: Unsupported URL: https://www.olevod.com/player/vod/2-60812-1.html
Traceback (most recent call last):
File "/home/devops/miniconda3/lib/python3.9/site-packages/yt_dlp/YoutubeDL.py", line 1626, in wrapper
return func(self, *args, **kwargs)
File "/home/devops/miniconda3/lib/python3.9/site-packages/yt_dlp/YoutubeDL.py", line 1761, in __extract_info
ie_result = ie.extract(url)
File "/home/devops/miniconda3/lib/python3.9/site-packages/yt_dlp/extractor/common.py", line 741, in extract
ie_result = self._real_extract(url)
File "/home/devops/miniconda3/lib/python3.9/site-packages/yt_dlp/extractor/generic.py", line 2526, in _real_extract
raise UnsupportedError(url)
yt_dlp.utils.UnsupportedError: Unsupported URL: https://www.olevod.com/player/vod/2-60812-1.html
```
| site-request,triage | low | Critical |
2,670,657,860 | pytorch | OptimizedModule _parameters attr getting and setting are not working as expected | ### ๐ Describe the bug
Normally we would expect we get the same value by using value = module._parameters after setting using module._parameters = value.
But this is not working on OptimizedModule.
The following code shows the problem:
```
import torch
from collections import OrderedDict
class MyModule(torch.nn.Module):
def __init__(self):
super().__init__()
self.param = torch.nn.Parameter(torch.randn(5, 5))
def forward(self, x):
return x + param
module = MyModule()
opt_module = torch.compile(module)
new_param = OrderedDict()
for key, param in opt_module._parameters.items():
new_param[key] = param
opt_module._parameters = new_param
# we think it should be OrderedDict but it is actually {}
print(opt_module._parameters)
```
### Versions
Collecting environment information...
PyTorch version: 2.6.0.dev20240914+cpu
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: Ubuntu 22.04 LTS (x86_64)
GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Clang version: 14.0.0-1ubuntu1.1
CMake version: version 3.22.1
Libc version: glibc-2.35
Python version: 3.10.12 (main, Sep 11 2024, 15:47:36) [GCC 11.4.0] (64-bit runtime)
Python platform: Linux-5.15.0-122-generic-x86_64-with-glibc2.35
Is CUDA available: False
CUDA runtime version: No CUDA
CUDA_MODULE_LOADING set to: N/A
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 43 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 12
On-line CPU(s) list: 0-11
Vendor ID: GenuineIntel
Model name: Intel(R) Xeon(R) Gold 6230 CPU @ 2.10GHz
CPU family: 6
Model: 85
Thread(s) per core: 1
Core(s) per socket: 6
Socket(s): 2
Stepping: 0
BogoMIPS: 4190.15
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon nopl xtopology tsc_reliable nonstop_tsc cpuid tsc_known_freq pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 invpcid avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xsaves arat pku ospke md_clear flush_l1d arch_capabilities
Virtualization: VT-x
Hypervisor vendor: VMware
Virtualization type: full
L1d cache: 384 KiB (12 instances)
L1i cache: 384 KiB (12 instances)
L2 cache: 12 MiB (12 instances)
L3 cache: 55 MiB (2 instances)
NUMA node(s): 1
NUMA node0 CPU(s): 0-11
Vulnerability Gather data sampling: Unknown: Dependent on hypervisor status
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Mitigation; PTE Inversion; VMX flush not necessary, SMT disabled
Vulnerability Mds: Mitigation; Clear CPU buffers; SMT Host state unknown
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT Host state unknown
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Mitigation; IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; IBRS; IBPB conditional; STIBP disabled; RSB filling; PBRSB-eIBRS Not affected; BHI SW loop, KVM SW loop
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
Versions of relevant libraries:
[pip3] numpy==2.1.1
[pip3] torch==2.6.0.dev20240914+cpu
[conda] Could not collect
cc @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @chenyang78 @kadeng @amjames | triaged,oncall: pt2,module: dynamo | low | Critical |
2,670,681,384 | rust | Misleading dead code warning when loading separate modules that use the same source file | ### Code
`util.rs`:
```Rust
pub fn get_random_number() -> i32 {
return 4;
}
```
`lib.rs`:
```Rust
#[path = "util.rs"] mod util_lib;
mod util;
pub fn run() -> i32 {
return util_lib::get_random_number();
}
```
### Current output
```Shell
warning: function `get_random_number` is never used
--> src/util.rs:1:8
|
1 | pub fn get_random_number() -> i32 {
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
```
### Desired output
#### Option 1: Disable dead code warning if code is used in any module
From this point of view, code that is used somewhere is not considered dead code, regardless of the module that uses it. However, if loading separate modules from the same source file was a mistake, this may make finding the issue harder.
#### Option 2: Enhance the dead code warning with module information
* Instead of ``warning: function `get_random_number` is never used``, we could have ``warning: function `util::get_random_number` is never used`` or ``warning: function `get_random_number` in module `util` is never used``
* In the specific case where the function is used as part as another module, mention it as extra context for the warning, e.g. ``note: function `get_random_number` was used as part of other modules: `util_lib` ``
#### Option 3: Disable dead code warning if code is used in any module, warn about separate modules using different names
```Shell
warning: file `src/util.rs` is used as the source to more than one module
--> src/lib.rs:4:1
|
1 | #[path = "util.rs"] mod util_lib;
| --------- module `util_lib` is based on `src/util.rs`
...
3 | mod util;
| ^^^^^^^^^ `src/util.rs` used again here for module `util`
|
```
This is the most obvious way to detect 2 modules mistakenly using the same file. But if there are many legitimate use case for using the same file for 2+ modules, something like `#[allow(mod_use_same_source)]` will need to be added to these existing projects to avoid the warning, which may be cumbersome.
### Rationale and extra context
The current warning is misleading, as the function is actually used. This is not dead code, just "dead code in the context of a specific module", but the warning doesn't indicate that.
In some cases it's easy to miss that the module is loaded twice under different names. If the module was loaded twice under the same name, `cargo check` would have returned `error[E0428]: the name util is defined multiple times`, which is very helpful.
### Other cases
The same warning is displayed if `#[cfg_attr(unix, path = "util.rs")]` is used instead of `#[path = "util.rs"]`.
### Rust Version
```Shell
$ rustc --version --verbose
rustc 1.82.0 (f6e511eec 2024-10-15)
binary: rustc
commit-hash: f6e511eec7342f59a25f7c0534f1dbea00d01b14
commit-date: 2024-10-15
host: x86_64-unknown-linux-gnu
release: 1.82.0
LLVM version: 19.1.1
```
### Anything else?
Minimal reproduction: https://github.com/ilai-deutel/cfg-attr-dead-code/blob/main/src/lib.rs
Real occurrence: https://github.com/ilai-deutel/kibi/pull/330 | A-diagnostics,T-compiler | low | Critical |
2,670,914,874 | flutter | [A11y] Second link is inaccessible in RichText | ### Steps to reproduce
1. Create a RichText widget with multiple TextSpan or WidgetSpan elements, each representing a clickable link.
2. Wrap each link in a Semantics widget to ensure accessibility support.
3. Add GestureDetector to handle onTap events for each link.
4. Test using a screen reader (TalkBack on Android or VoiceOver on iOS).
### Expected results
Whole content should be readable in a single tap and each link should be clickable.
### Actual results
The screen reader only selects or announces the first link consistently.
The second link is often skipped or merged with surrounding text, making it inaccessible.
### Code sample
```dart
class RichTextWithLinks extends StatelessWidget {
const RichTextWithLinks({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Rich Text Links'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: MergeSemantics(
child: RichText(
text: TextSpan(
style: const TextStyle(color: Colors.black, fontSize: 16.0),
children: [
const TextSpan(
text:
'Android is a mobile operating system based on a modified version of the ',
),
WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: TextBaseline.alphabetic,
child: Semantics(
label: 'Linux kernel',
button: true,
//link: true,
child: GestureDetector(
onTap: () {
print("Link 1 tapped!");
},
child: const Text(
'Linux kernel',
style: TextStyle(
color: Colors.blue,
decoration: TextDecoration.underline,
),
),
),
),
),
const TextSpan(
text: ' and other ',
),
WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: TextBaseline.alphabetic,
child: Semantics(
label: 'open-source',
button: true,
//link: true,
child: GestureDetector(
onTap: () {
print(" link 2 tapped!");
},
child: const Text(
'open-source',
style: TextStyle(
color: Colors.blue,
decoration: TextDecoration.underline,
),
),
),
),
),
const TextSpan(
text: ' software.',
),
],
),
),
),
),
),
);
}
}
```
### Screenshots or Video
<details open>
<summary>Screenshots / Video demonstration</summary>
[Upload media here]
</details>
### Logs
<details open><summary>Logs</summary>
```console
[Paste your logs here]
```
</details>
### Flutter Doctor output
<details open><summary>Doctor output</summary>
```console
[Paste your output here]
```
</details>
| framework,a: accessibility,has reproducible steps,P2,found in release: 3.24,team-accessibility,triaged-accessibility,found in release: 3.27 | low | Major |
2,670,926,680 | deno | Crawlee/Playwright struggles to start with default project | Version: Deno 2.1.3
macOS 15.2 arm64
https://github.com/apify/crawlee
## Reproduction
```
deno run -A npm:crawlee create crawlee -t getting-started-ts
cd crawlee
deno run -A npm:playwright install
deno run -A src/main.ts
```
## Result
```
โฏ deno run -A src/main.ts
INFO PlaywrightCrawler: Starting the crawler.
WARN PlaywrightCrawler: Reclaiming failed request back to the list or queue. page.goto: net::ERR_TIMED_OUT at https://crawlee.dev/
Call log:
- navigating to "https://crawlee.dev/", waiting until "load"
at eventLoopTick (/Users/drewbitt/Documents/Repos/crawlee/ext:core/01_core.js:214:9) {"id":"3FULW9cbbkMrV4R","url":"https://crawlee.dev","retryCount":1}
INFO PlaywrightCrawler:Statistics: PlaywrightCrawler request statistics: {"requestAvgFailedDurationMillis":null,"requestAvgFinishedDurationMillis":null,"requestsFinishedPerMinute":0,"requestsFailedPerMinute":0,"requestTotalDurationMillis":0,"requestsTotal":0,"crawlerRuntimeMillis":60151,"retryHistogram":[]}
INFO PlaywrightCrawler:AutoscaledPool: state {"currentConcurrency":1,"desiredConcurrency":3,"systemStatus":{"isSystemIdle":true,"memInfo":{"isOverloaded":false,"limitRatio":0.2,"actualRatio":0},"eventLoopInfo":{"isOverloaded":false,"limitRatio":0.6,"actualRatio":0},"cpuInfo":{"isOverloaded":false,"limitRatio":0.4,"actualRatio":0},"clientInfo":{"isOverloaded":false,"limitRatio":0.3,"actualRatio":0}}}
```
## Expected result
Same command with tsx
```
โฏ npx tsx src/main.ts
INFO PlaywrightCrawler: Starting the crawler.
INFO PlaywrightCrawler: Title of https://crawlee.dev/ is 'Crawlee ยท Build reliable crawlers. Fast.'
```
## Comments
Crawlee encourages CLI usage so this is a typical flow someone might do to start a new crawlee project in Deno, even though it installs a node project only for now.
Playwright is the one throwing the timeout error when it attempts to do a `Page.navigate`. | bug,needs investigation,node compat | low | Critical |
2,670,933,636 | deno | Running Only Modified Feature `Tests` and Their Dependencies | Hello everyone,
I'm working on a Deno project and using BDD for testing. The project is structured with each feature and its slices in separate folders, each containing their own code and test cases.
## **The Issue**
I recently updated a feature called **"User Profile Management"**, which is a dependency for another feature, **"Authentication"**. When I run `deno test`, it executes all the tests in the project, including unrelated ones like **"Payment Processing"**, which takes a lot of time.
**What I'm Looking For:**
I want to run only the test cases for the **User Profile Management** feature and its dependents (like **Authentication**) after making changes. This way, I can save time and focus on relevant tests.
**Attempts So Far:**
- **Running Specific Tests:** I tried `deno test src/user_profile/`, but it doesn't include tests from **Authentication**.
- **Manual Selection:** Specifying multiple test files manually isn't practical as dependencies grow.
**Project Structure Example:**
```
src/
โโโ authentication/
โ โโโ auth.ts (imports ../user_profile/profile.ts)
โ โโโ auth_test.ts
โโโ user_profile/
โ โโโ profile.ts
โ โโโ profile_test.ts
โโโ payment_processing/
โ โโโ payment.ts
โ โโโ payment_test.ts
```
## **Goal**
- After changing `profile.ts`, I want to run `profile_test.ts` and `auth_test.ts`.
- Avoid running unrelated tests like `payment_test.ts`.
## **Why It Matters**
- **Efficiency:** Saves time during development.
- **Focus:** Helps concentrate on affected code areas.
- **Scalability:** Important as the project grows.
## **Proposed Enhancements**
1. **Auto-Run Affected Tests Based on Changes:**
- Introduce a flag (e.g., `--affected`) that detects code modifications and automatically executes only the relevant tests, including those from dependent features. This would streamline the workflow by saving time and focusing on necessary tests.
2. **CLI Integration for Including Dependent Tests:**
- Enhance the `deno test` command with a configuration option (e.g., `--include-dependencies`) to run tests for a modified feature along with its dependencies. This would improve testing efficiency by ensuring related tests are executed without manual selection.
| suggestion | low | Minor |
2,670,937,567 | flutter | Update spirv-cross to support new variants of `SPIRType` | Internal bug: b/379793706
Internally, spirv-cross was recently updated with some breaking changes. Enum variants were introduced to `spirv_cross::SPIRType`. Specifically the following:
- https://github.com/KhronosGroup/SPIRV-Cross/commit/3a0366bfb77800b68436193dcea8a90da2bcd22b#diff-7f55b169badc85bf4776406295bf87e1261023642aefb97cd23e24e90b4b8e5a
- https://github.com/KhronosGroup/SPIRV-Cross/commit/30b0b98340fca15ec4b0e91571aa34503c1257a7#diff-7f55b169badc85bf4776406295bf87e1261023642aefb97cd23e24e90b4b8e5a
For example, this causes the following errors with `-Wswitch`
```
impeller/compiler/shader_bundle_data.cc:58:11: error: enumeration value 'Meshlet' not handled in switch [-Werror,-Wswitch]
58 | switch (type) {
| ^~~~
1 error generated.
```
[This query](https://github.com/search?q=repo%3Aflutter%2Fengine%20%22case%20spirv_cross%3A%3ASPIRType%3A%3AUnknown%22&type=code) could be a heuristic of the switch statements that need to be changed.
The request here is to roll spirv-cross past these commits above so that there is no need to workaround them with source transformations internally. | engine,c: proposal,P1,team-engine,triaged-engine | medium | Critical |
2,670,944,941 | ollama | docker build error | ### What is the issue?
ERROR: failed to solve: process "/bin/sh -c CMAKE_VERSION=${CMAKE_VERSION} GOLANG_VERSION=${GOLANG_VERSION} sh /rh_linux_deps.sh" did not complete successfully: exit code: 2
```
1289.9
1289.9 Complete!
1290.2 + '[' x86_64 = x86_64 ']'
1290.2 + curl -s -L https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-linux-x86_64.tar.xz
1290.2 + tar -Jx -C /tmp --strip-components 1
2477.3 xz: (stdin): Unexpected end of input
2477.3 tar: Unexpected EOF in archive
2477.3 tar: Unexpected EOF in archive
2477.3 tar: Error is not recoverable: exiting now
2477.3 + '[' -n 3.22.1 ']'
2477.3 + tar -zx -C /usr --strip-components 1
2477.3 ++ uname -m
2477.3 + curl -s -L https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1-linux-x86_64.tar.gz
3509.3
3509.3 gzip: stdin: unexpected end of file
3509.3 tar: Unexpected EOF in archive
3509.3 tar: Unexpected EOF in archive
3509.3 tar: Error is not recoverable: exiting now
------
```
Then I tried to modify the code
```
if [ "${MACHINE}" = "x86_64" ] ; then
- curl -s -L https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-linux-x86_64.tar.xz | tar -Jx -C /tmp --strip-components 1 && \
+ curl -s -L -o /tmp/ccache-4.10.2-linux-x86_64.tar.xz https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-linux-x86_64.tar.xz && \
+ tar -xf /tmp/ccache-4.10.2-linux-x86_64.tar.xz -C /tmp --strip-components=1 && \
mv /tmp/ccache /usr/local/bin/
else
yum -y install epel-release
```
Delete the parameter -J to make it effective
### OS
macOS
### GPU
_No response_
### CPU
Apple
### Ollama version
,0.3.13 | bug | low | Critical |
2,670,961,102 | tauri | [docs] Android File System Access | Hi,
currently I'm trying to access the file system in an Android 14 context.
I've already done all, that needs to be done for the Linux side, and can now access a file from within a js/html context.
However the same success eludes me in the Android 14 domain.
I've followed the instructions
[https://v2.tauri.app/plugin/file-system/#configuration](https://v2.tauri.app/plugin/file-system/#configuration)
I also added `fs:allow-home-read-recursive` in `src-tauri/capabilities/default.json`
The path resulting from convertFileSrc seems legit.
I think the only thing missing is, that the app actually requests the permissions.
If this is a _me_ error, I would like to see a complete example showcasing android filesystem access, which I can follow start to finish to get e.g. an image from the file system on screen.
Thanks in advance. | type: documentation | low | Critical |
2,670,998,593 | opencv | how to get the inpaint results like this | ### System Information
OpenCV version: 4.5.4
Operating System / Platform: win 11 x64
Compiler & compiler version: vs 2019
### Detailed description
I tried inpaint methods in opencv, the results is quite different from below. the interpolated pixel is nearly pure with opencv.
how to get the result like below. Thank you for any hints!
src image with white mask

expect inpaint results

### Steps to reproduce
input image

mask

test with cv::inpaint

### Issue submission checklist
- [X] I report the issue, it's not a question
- [X] I checked the problem with documentation, FAQ, open issues, forum.opencv.org, Stack Overflow, etc and have not found any solution
- [ ] I updated to the latest OpenCV version and the issue is still there
- [ ] There is reproducer code and related data files (videos, images, onnx, etc) | question (invalid tracker) | low | Minor |
2,671,019,577 | rust | [ICE]: Encountered anon const with inference variable args but no error reported | ### Code
```Rust
I encountered an internal compiler error (ICE) while compiling a Rust project using rustc version 1.84.0-nightly (03ee48451 2024-11-18) on the aarch64-apple-darwin platform. The error message indicates that an anonymous constant with inference variable arguments was encountered, but no error was reported. This appears to be an issue within the compiler.
error: internal compiler error: Encountered anon const with inference variable args but no error reported
|
= note: delayed at compiler/rustc_trait_selection/src/traits/mod.rs:592:27 - disabled backtrace
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: please make sure that you have updated to the latest nightly
note: please attach the file at `/Users/vinay10949/Projects/decentralization/mishti/rustc-ice-2024-11-19T06_49_51-30490.txt` to your bug report
query stack during panic:
end of query stack
warning: `cli` (bin "cli") generated 2 warnings
error: could not compile `cli` (bin "cli"); 2 warnings emitted
```
### Affected release channels
- [ ] Previous Stable
- [ ] Current Stable
- [ ] Current Beta
- [x] Current Nightly
### Rust Version
```Shell
rustc --version --verbose
rustc 1.84.0-nightly (03ee48451 2024-11-18)
binary: rustc
commit-hash: 03ee48451ff514defe859dd8e879ca1bd835789e
host: aarch64-apple-darwin
release: 1.84.0-nightly
LLVM version: 17.0.0
```
### Current error output
```Shell
delayed bug: Encountered anon const with inference variable args but no error reported
disabled backtrace
delayed bug: Encountered anon const with inference variable args but no error reported
disabled backtrace
delayed bug: Encountered anon const with inference variable args but no error reported
disabled backtrace
delayed bug: Encountered anon const with inference variable args but no error reported
disabled backtrace
delayed bug: Encountered anon const with inference variable args but no error reported
disabled backtrace
rustc version: 1.84.0-nightly (03ee48451 2024-11-18)
platform: aarch64-apple-darwinโ
```
### Backtrace
```Shell
error: internal compiler error: Encountered anon const with inference variable args but no error reported
|
= note: delayed at compiler/rustc_trait_selection/src/traits/mod.rs:592:27
0: std::backtrace::Backtrace::create
1: <rustc_errors::DiagCtxtInner>::emit_diagnostic
2: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
3: <rustc_errors::diagnostic::Diag>::emit_producing_error_guaranteed
4: <rustc_errors::DiagCtxtHandle>::delayed_bug::<&str>
5: rustc_trait_selection::traits::try_evaluate_const
6: rustc_trait_selection::traits::util::with_replaced_escaping_bound_vars::<rustc_middle::ty::consts::Const, rustc_middle::ty::consts::Const, <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const::{closure#0}>
7: <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const
8: <rustc_type_ir::predicate_kind::PredicateKind<rustc_middle::ty::context::TyCtxt> as rustc_type_ir::fold::TypeFoldable<rustc_middle::ty::context::TyCtxt>>::try_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
9: <rustc_middle::ty::predicate::Predicate as rustc_type_ir::fold::TypeSuperFoldable<rustc_middle::ty::context::TyCtxt>>::try_super_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
10: alloc::vec::in_place_collect::from_iter_in_place::<core::iter::adapters::GenericShunt<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<rustc_middle::ty::predicate::Clause>, <alloc::vec::Vec<rustc_middle::ty::predicate::Clause> as rustc_type_ir::fold::TypeFoldable<rustc_middle::ty::context::TyCtxt>>::try_fold_with<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>::{closure#0}>, core::result::Result<core::convert::Infallible, !>>, rustc_middle::ty::predicate::Clause>
11: <rustc_trait_selection::traits::normalize::AssocTypeNormalizer>::fold::<rustc_middle::ty::InstantiatedPredicates>
12: rustc_trait_selection::traits::normalize::normalize_with_depth::<rustc_middle::ty::InstantiatedPredicates>
13: <rustc_infer::infer::at::At as rustc_trait_selection::traits::normalize::NormalizeExt>::normalize::<rustc_middle::ty::InstantiatedPredicates>
14: <rustc_hir_typeck::fn_ctxt::FnCtxt>::instantiate_bounds
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::add_required_obligations_for_hir
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::instantiate_value_path
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_path
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
31: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
41: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
42: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
43: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
44: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
45: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
46: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
47: rustc_hir_typeck::check::check_fn
48: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
49: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
50: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
51: rustc_hir_typeck::check::check_fn
52: rustc_hir_typeck::typeck
53: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
54: <rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
55: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
56: rustc_query_impl::query_impl::typeck::get_query_incr::__rust_end_short_backtrace
57: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>>
58: rustc_hir_analysis::collect::type_of::opaque::find_opaque_ty_constraints_for_rpit
59: rustc_hir_analysis::collect::type_of::type_of_opaque
60: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
61: <rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
62: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
63: rustc_query_impl::query_impl::type_of_opaque::get_query_incr::__rust_end_short_backtrace
64: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
65: rustc_hir_analysis::collect::type_of::type_of
66: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
67: <rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
68: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
69: rustc_query_impl::query_impl::type_of::get_query_incr::__rust_end_short_backtrace
70: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
71: rustc_hir_analysis::check::check::check_item_type
72: rustc_hir_analysis::check::wfcheck::check_well_formed
73: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
74: <rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
75: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
76: rustc_query_impl::query_impl::check_well_formed::get_query_incr::__rust_end_short_backtrace
77: rustc_middle::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, ()>
78: <rustc_middle::hir::ModuleItems>::par_opaques::<rustc_hir_analysis::check::wfcheck::check_mod_type_wf::{closure#4}>
79: rustc_hir_analysis::check::wfcheck::check_mod_type_wf
80: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
81: <rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalModDefId)>>::call_once
82: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
83: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
84: <rustc_data_structures::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures::sync::parallel::par_for_each_in<&rustc_hir::hir_id::OwnerId, &[rustc_hir::hir_id::OwnerId], <rustc_middle::hir::map::Map>::par_for_each_module<rustc_hir_analysis::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>
85: rustc_hir_analysis::check_crate
86: rustc_interface::passes::analysis
87: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
88: <rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, ())>>::call_once
89: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
90: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
91: <rustc_middle::ty::context::GlobalCtxt>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}::{closure#5}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
92: <rustc_interface::interface::Compiler>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}, core::result::Result<core::option::Option<rustc_interface::queries::Linker>, rustc_span::ErrorGuaranteed>>
93: <scoped_tls::ScopedKey<rustc_span::SessionGlobals>>::set::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
94: rustc_span::create_session_globals_then::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}>
95: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
96: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
97: std::sys::pal::unix::thread::Thread::new::thread_start
98: __pthread_joiner_wake
error: internal compiler error: Encountered anon const with inference variable args but no error reported
|
= note: delayed at compiler/rustc_trait_selection/src/traits/mod.rs:592:27
0: std::backtrace::Backtrace::create
1: <rustc_errors::DiagCtxtInner>::emit_diagnostic
2: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
3: <rustc_errors::diagnostic::Diag>::emit_producing_error_guaranteed
4: <rustc_errors::DiagCtxtHandle>::delayed_bug::<&str>
5: rustc_trait_selection::traits::try_evaluate_const
6: rustc_trait_selection::traits::util::with_replaced_escaping_bound_vars::<rustc_middle::ty::consts::Const, rustc_middle::ty::consts::Const, <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const::{closure#0}>
7: <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const
8: <rustc_type_ir::predicate_kind::PredicateKind<rustc_middle::ty::context::TyCtxt> as rustc_type_ir::fold::TypeFoldable<rustc_middle::ty::context::TyCtxt>>::try_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
9: <rustc_middle::ty::predicate::Predicate as rustc_type_ir::fold::TypeSuperFoldable<rustc_middle::ty::context::TyCtxt>>::try_super_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
10: rustc_trait_selection::traits::normalize::normalize_with_depth_to::<rustc_middle::ty::predicate::Predicate>
11: <rustc_trait_selection::traits::fulfill::FulfillProcessor as rustc_data_structures::obligation_forest::ObligationProcessor>::process_obligation
12: <rustc_data_structures::obligation_forest::ObligationForest<rustc_trait_selection::traits::fulfill::PendingPredicateObligation>>::process_obligations::<rustc_trait_selection::traits::fulfill::FulfillProcessor>
13: <rustc_trait_selection::traits::fulfill::FulfillmentContext<rustc_trait_selection::traits::FulfillmentError> as rustc_infer::traits::engine::TraitEngine<rustc_trait_selection::traits::FulfillmentError>>::select_where_possible
14: <rustc_hir_typeck::fn_ctxt::FnCtxt>::resolve_vars_with_obligations
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::try_structurally_resolve_type
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::structurally_resolve_type
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
31: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
41: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
42: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
43: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
44: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
45: rustc_hir_typeck::check::check_fn
46: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
47: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
48: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
49: rustc_hir_typeck::check::check_fn
50: rustc_hir_typeck::typeck
51: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
52: <rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
53: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
54: rustc_query_impl::query_impl::typeck::get_query_incr::__rust_end_short_backtrace
55: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>>
56: rustc_hir_analysis::collect::type_of::opaque::find_opaque_ty_constraints_for_rpit
57: rustc_hir_analysis::collect::type_of::type_of_opaque
58: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
59: <rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
60: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
61: rustc_query_impl::query_impl::type_of_opaque::get_query_incr::__rust_end_short_backtrace
62: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
63: rustc_hir_analysis::collect::type_of::type_of
64: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
65: <rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
66: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
67: rustc_query_impl::query_impl::type_of::get_query_incr::__rust_end_short_backtrace
68: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
69: rustc_hir_analysis::check::check::check_item_type
70: rustc_hir_analysis::check::wfcheck::check_well_formed
71: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
72: <rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
73: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
74: rustc_query_impl::query_impl::check_well_formed::get_query_incr::__rust_end_short_backtrace
75: rustc_middle::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, ()>
76: <rustc_middle::hir::ModuleItems>::par_opaques::<rustc_hir_analysis::check::wfcheck::check_mod_type_wf::{closure#4}>
77: rustc_hir_analysis::check::wfcheck::check_mod_type_wf
78: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
79: <rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalModDefId)>>::call_once
80: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
81: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
82: <rustc_data_structures::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures::sync::parallel::par_for_each_in<&rustc_hir::hir_id::OwnerId, &[rustc_hir::hir_id::OwnerId], <rustc_middle::hir::map::Map>::par_for_each_module<rustc_hir_analysis::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>
83: rustc_hir_analysis::check_crate
84: rustc_interface::passes::analysis
85: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
86: <rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, ())>>::call_once
87: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
88: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
89: <rustc_middle::ty::context::GlobalCtxt>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}::{closure#5}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
90: <rustc_interface::interface::Compiler>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}, core::result::Result<core::option::Option<rustc_interface::queries::Linker>, rustc_span::ErrorGuaranteed>>
91: <scoped_tls::ScopedKey<rustc_span::SessionGlobals>>::set::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
92: rustc_span::create_session_globals_then::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}>
93: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
94: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
95: std::sys::pal::unix::thread::Thread::new::thread_start
96: __pthread_joiner_wake
error: internal compiler error: Encountered anon const with inference variable args but no error reported
|
= note: delayed at compiler/rustc_trait_selection/src/traits/mod.rs:592:27
0: std::backtrace::Backtrace::create
1: <rustc_errors::DiagCtxtInner>::emit_diagnostic
2: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
3: <rustc_errors::diagnostic::Diag>::emit_producing_error_guaranteed
4: <rustc_errors::DiagCtxtHandle>::delayed_bug::<&str>
5: rustc_trait_selection::traits::try_evaluate_const
6: rustc_trait_selection::traits::const_evaluatable::is_const_evaluatable
7: <rustc_trait_selection::traits::fulfill::FulfillProcessor as rustc_data_structures::obligation_forest::ObligationProcessor>::process_obligation
8: <rustc_data_structures::obligation_forest::ObligationForest<rustc_trait_selection::traits::fulfill::PendingPredicateObligation>>::process_obligations::<rustc_trait_selection::traits::fulfill::FulfillProcessor>
9: <rustc_trait_selection::traits::fulfill::FulfillmentContext<rustc_trait_selection::traits::FulfillmentError> as rustc_infer::traits::engine::TraitEngine<rustc_trait_selection::traits::FulfillmentError>>::select_where_possible
10: <rustc_hir_typeck::fn_ctxt::FnCtxt>::resolve_vars_with_obligations
11: <rustc_hir_typeck::fn_ctxt::FnCtxt>::try_structurally_resolve_type
12: <rustc_hir_typeck::fn_ctxt::FnCtxt>::structurally_resolve_type
13: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
14: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
31: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
41: rustc_hir_typeck::check::check_fn
42: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
43: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
44: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
45: rustc_hir_typeck::check::check_fn
46: rustc_hir_typeck::typeck
47: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
48: <rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
49: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
50: rustc_query_impl::query_impl::typeck::get_query_incr::__rust_end_short_backtrace
51: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>>
52: rustc_hir_analysis::collect::type_of::opaque::find_opaque_ty_constraints_for_rpit
53: rustc_hir_analysis::collect::type_of::type_of_opaque
54: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
55: <rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
56: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
57: rustc_query_impl::query_impl::type_of_opaque::get_query_incr::__rust_end_short_backtrace
58: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
59: rustc_hir_analysis::collect::type_of::type_of
60: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
61: <rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
62: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
63: rustc_query_impl::query_impl::type_of::get_query_incr::__rust_end_short_backtrace
64: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
65: rustc_hir_analysis::check::check::check_item_type
66: rustc_hir_analysis::check::wfcheck::check_well_formed
67: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
68: <rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
69: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
70: rustc_query_impl::query_impl::check_well_formed::get_query_incr::__rust_end_short_backtrace
71: rustc_middle::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, ()>
72: <rustc_middle::hir::ModuleItems>::par_opaques::<rustc_hir_analysis::check::wfcheck::check_mod_type_wf::{closure#4}>
73: rustc_hir_analysis::check::wfcheck::check_mod_type_wf
74: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
75: <rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalModDefId)>>::call_once
76: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
77: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
78: <rustc_data_structures::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures::sync::parallel::par_for_each_in<&rustc_hir::hir_id::OwnerId, &[rustc_hir::hir_id::OwnerId], <rustc_middle::hir::map::Map>::par_for_each_module<rustc_hir_analysis::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>
79: rustc_hir_analysis::check_crate
80: rustc_interface::passes::analysis
81: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
82: <rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, ())>>::call_once
83: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
84: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
85: <rustc_middle::ty::context::GlobalCtxt>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}::{closure#5}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
86: <rustc_interface::interface::Compiler>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}, core::result::Result<core::option::Option<rustc_interface::queries::Linker>, rustc_span::ErrorGuaranteed>>
87: <scoped_tls::ScopedKey<rustc_span::SessionGlobals>>::set::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
88: rustc_span::create_session_globals_then::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}>
89: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
90: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
91: std::sys::pal::unix::thread::Thread::new::thread_start
92: __pthread_joiner_wake
error: internal compiler error: Encountered anon const with inference variable args but no error reported
|
= note: delayed at compiler/rustc_trait_selection/src/traits/mod.rs:592:27
0: std::backtrace::Backtrace::create
1: <rustc_errors::DiagCtxtInner>::emit_diagnostic
2: <rustc_errors::DiagCtxtHandle>::emit_diagnostic
3: <rustc_errors::diagnostic::Diag>::emit_producing_error_guaranteed
4: <rustc_errors::DiagCtxtHandle>::delayed_bug::<&str>
5: rustc_trait_selection::traits::try_evaluate_const
6: rustc_trait_selection::traits::util::with_replaced_escaping_bound_vars::<rustc_middle::ty::consts::Const, rustc_middle::ty::consts::Const, <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const::{closure#0}>
7: <rustc_trait_selection::traits::normalize::AssocTypeNormalizer as rustc_type_ir::fold::TypeFolder<rustc_middle::ty::context::TyCtxt>>::fold_const
8: <rustc_middle::ty::Ty as rustc_type_ir::fold::TypeSuperFoldable<rustc_middle::ty::context::TyCtxt>>::try_super_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
9: <&rustc_middle::ty::list::RawList<(), rustc_middle::ty::generic_args::GenericArg> as rustc_type_ir::fold::TypeFoldable<rustc_middle::ty::context::TyCtxt>>::try_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
10: <rustc_middle::ty::Ty as rustc_type_ir::fold::TypeSuperFoldable<rustc_middle::ty::context::TyCtxt>>::try_super_fold_with::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>
11: rustc_middle::ty::util::fold_list::<rustc_trait_selection::traits::normalize::AssocTypeNormalizer, &rustc_middle::ty::list::RawList<(), rustc_middle::ty::Ty>, rustc_middle::ty::Ty, <&rustc_middle::ty::list::RawList<(), rustc_middle::ty::Ty> as rustc_type_ir::fold::TypeFoldable<rustc_middle::ty::context::TyCtxt>>::try_fold_with<rustc_trait_selection::traits::normalize::AssocTypeNormalizer>::{closure#0}>
12: <rustc_trait_selection::traits::normalize::AssocTypeNormalizer>::fold::<rustc_type_ir::ty_kind::FnSig<rustc_middle::ty::context::TyCtxt>>
13: rustc_trait_selection::traits::normalize::normalize_with_depth::<rustc_type_ir::ty_kind::FnSig<rustc_middle::ty::context::TyCtxt>>
14: <rustc_infer::infer::at::At as rustc_trait_selection::traits::normalize::NormalizeExt>::normalize::<rustc_type_ir::ty_kind::FnSig<rustc_middle::ty::context::TyCtxt>>
15: <rustc_hir_typeck::fn_ctxt::FnCtxt>::normalize::<rustc_type_ir::ty_kind::FnSig<rustc_middle::ty::context::TyCtxt>>
16: <rustc_hir_typeck::fn_ctxt::FnCtxt>::confirm_builtin_call
17: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
18: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
19: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
20: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
21: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_decl
22: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
23: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
24: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
25: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
26: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
27: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
28: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
29: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
30: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
31: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
32: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
33: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
34: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
35: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
36: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
37: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
38: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
39: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
40: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
41: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
42: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_block
43: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
44: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
45: rustc_hir_typeck::check::check_fn
46: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_kind
47: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args
48: <rustc_hir_typeck::fn_ctxt::FnCtxt>::check_return_or_body_tail
49: rustc_hir_typeck::check::check_fn
50: rustc_hir_typeck::typeck
51: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
52: <rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
53: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
54: rustc_query_impl::query_impl::typeck::get_query_incr::__rust_end_short_backtrace
55: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>>>
56: rustc_hir_analysis::collect::type_of::opaque::find_opaque_ty_constraints_for_rpit
57: rustc_hir_analysis::collect::type_of::type_of_opaque
58: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
59: <rustc_query_impl::query_impl::type_of_opaque::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
60: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
61: rustc_query_impl::query_impl::type_of_opaque::get_query_incr::__rust_end_short_backtrace
62: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
63: rustc_hir_analysis::collect::type_of::type_of
64: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>>
65: <rustc_query_impl::query_impl::type_of::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::DefId)>>::call_once
66: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
67: rustc_query_impl::query_impl::type_of::get_query_incr::__rust_end_short_backtrace
68: rustc_middle::query::plumbing::query_get_at::<rustc_query_system::query::caches::DefIdCache<rustc_middle::query::erase::Erased<[u8; 8]>>>
69: rustc_hir_analysis::check::check::check_item_type
70: rustc_hir_analysis::check::wfcheck::check_well_formed
71: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
72: <rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalDefId)>>::call_once
73: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
74: rustc_query_impl::query_impl::check_well_formed::get_query_incr::__rust_end_short_backtrace
75: rustc_middle::query::plumbing::query_ensure_error_guaranteed::<rustc_query_system::query::caches::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, ()>
76: <rustc_middle::hir::ModuleItems>::par_opaques::<rustc_hir_analysis::check::wfcheck::check_mod_type_wf::{closure#4}>
77: rustc_hir_analysis::check::wfcheck::check_mod_type_wf
78: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
79: <rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, rustc_span::def_id::LocalModDefId)>>::call_once
80: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
81: rustc_query_impl::query_impl::check_mod_type_wf::get_query_incr::__rust_end_short_backtrace
82: <rustc_data_structures::sync::parallel::ParallelGuard>::run::<(), rustc_data_structures::sync::parallel::par_for_each_in<&rustc_hir::hir_id::OwnerId, &[rustc_hir::hir_id::OwnerId], <rustc_middle::hir::map::Map>::par_for_each_module<rustc_hir_analysis::check_crate::{closure#0}::{closure#0}>::{closure#0}>::{closure#0}::{closure#1}::{closure#0}>
83: rustc_hir_analysis::check_crate
84: rustc_interface::passes::analysis
85: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>>
86: <rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2} as core::ops::function::FnOnce<(rustc_middle::ty::context::TyCtxt, ())>>::call_once
87: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, true>
88: rustc_query_impl::query_impl::analysis::get_query_incr::__rust_end_short_backtrace
89: <rustc_middle::ty::context::GlobalCtxt>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}::{closure#5}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
90: <rustc_interface::interface::Compiler>::enter::<rustc_driver_impl::run_compiler::{closure#0}::{closure#1}, core::result::Result<core::option::Option<rustc_interface::queries::Linker>, rustc_span::ErrorGuaranteed>>
91: <scoped_tls::ScopedKey<rustc_span::SessionGlobals>>::set::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
92: rustc_span::create_session_globals_then::<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}::{closure#0}>
93: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>
94: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_span::ErrorGuaranteed>, rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_span::ErrorGuaranteed>>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
95: std::sys::pal::unix::thread::Thread::new::thread_start
96: __pthread_joiner_wake
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md
note: please make sure that you have updated to the latest nightly
note: please attach the file at `/Users/vinay10949/Projects/decentralization/mishti/rustc-ice-2024-11-19T06_58_39-31408.txt` to your bug report
note: compiler flags: --crate-type bin -C opt-level=1 -C embed-bitcode=no -C codegen-units=16 -C incremental=[REDACTED] -C strip=debuginfo
note: some of the compiler flags provided by cargo are hidden
process didn't exit successfully: `/Users/vinay10949/.rustup/toolchains/nightly-aarch64-apple-darwin/bin/rustc --crate-name cli --edition=2021 crates/cli/src/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=214 --crate-type bin --emit=dep-info,link -C opt-level=1 -C embed-bitcode=no -C codegen-units=16 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=70ab92cf0b9de42f -C extra-filename=-70ab92cf0b9de42f --out-dir /Users/vinay10949/Projects/decentralization/mishti/target/release/deps -C incremental=/Users/vinay10949/Projects/decentralization/mishti/target/release/incremental -C strip=debuginfo -L dependency=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps --extern ark_ed_on_bn254=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libark_ed_on_bn254-777124926cde145d.rlib --extern bincode=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libbincode-a4f2d93a3bd1ddb3.rlib --extern clap=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libclap-1d47a124b7004df9.rlib --extern ethers=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libethers-1d79a5372af84fcf.rlib --extern hex=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libhex-f69836561b5d2b7a.rlib --extern jsonrpsee=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libjsonrpsee-0fa323a445b5abbc.rlib --extern k256=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libk256-ac9554dfc2fa9660.rlib --extern lazy_static=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/liblazy_static-5e8ba3436795d5f4.rlib --extern messages=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libmessages-bdc67d924ef483e4.rlib --extern mishti_crypto=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libmishti_crypto-902b75e01588415f.rlib --extern rpc=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/librpc-e5365e8e82434d6b.rlib --extern rpc_trait=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/librpc_trait-1ab4dd0cb547c6c6.rlib --extern serde=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libserde-672fcdd673a9e4af.rlib --extern serde_json=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libserde_json-14d850a95cd08348.rlib --extern tokio=/Users/vinay10949/Projects/decentralization/mishti/target/release/deps/libtokio-54ad075d7acae233.rlib -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/ring-86ddefc3f904ee03/out -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/ring-220aa74511dbaf84/out -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/aws-lc-sys-8f36e1429ba5de38/out -L /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/curl-sys-bd51297106f6900d/out/build -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/libnghttp2-sys-dd553636cd0d1bf6/out/i/lib -L native=/Users/vinay10949/Projects/decentralization/mishti/target/release/build/secp256k1-sys-1c14aa07d67558b4/out` (exit status: 101)
```
### Anything else?
_No response_ | I-ICE,T-compiler,C-bug,F-generic_const_exprs,S-has-mcve,requires-incomplete-features,S-has-bisection | medium | Critical |
2,671,027,375 | PowerToys | Supporting for Q-Dir | ### Description of the new feature / enhancement
PowerToys does not yet support [Q-Dir](http://q-dir.com/), which is a convenient and widely-used file manager software.
### Scenario when this would be used?
Consider using Q-Dir as your file explorer instead of the Windows file explorer.
### Supporting information
_No response_ | Needs-Triage | low | Minor |
2,671,112,056 | go | x/text/message: catalog.Var between two substitutions | ### Go version
go version go1.21.4 darwin/arm64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE='on'
GOARCH='arm64'
GOBIN='/Users/xxx/go/bin'
GOCACHE='/Users/xxx/Library/Caches/go-build'
GOENV='/Users/xxx/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMODCACHE='/Users/xxx/go/pkg/mod'
GOOS='darwin'
GOPATH='/Users/xxx/go'
GOROOT='/opt/homebrew/opt/go/libexec'
GOSUMDB='sum.golang.google.cn'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/opt/homebrew/opt/go/libexec/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.21.4'
GCCGO='gccgo'
AR='ar'
CC='cc'
CXX='c++'
CGO_ENABLED='1'
GOMOD='/dev/null'
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/b1/0fd1b6hs7lz0fm_mh346lybm0000gn/T/go-build2121787907=/tmp/go-build -gno-record-gcc-switches -fno-common'
```
### What did you do?
```text
golang.org/x/text=v0.20.0
```
I use `catalog.Var` between two `%d` substitutions.
```go
lang := language.English
v := catalog.Var("var", catalog.String("value"))
message.Set(lang, "key1", v, catalog.String("%d %d\n")) // two %d
message.Set(lang, "key2", v, catalog.String("%d ${var} %d\n")) // var between two %d
message.Set(lang, "key3", v, catalog.String("%d %d ${var}\n")) // var after two %d
message.Set(lang, "key4", v, catalog.String("%[1]d ${var} %[2]d\n")) // var between two %[?]d
printer := message.NewPrinter(lang)
printer.Printf("key1", 1, 2) // 1 2
printer.Printf("key2", 1, 2) // 1 %!(EXTRA int=2)value%!(EXTRA int=2) 2
printer.Printf("key3", 1, 2) // 1 2 value
printer.Printf("key4", 1, 2) // 1 value 2
```
### What did you see happen?
```text
1 2
1 %!(EXTRA int=2)value%!(EXTRA int=2) 2
1 2 value
1 value 2
```
### What did you expect to see?
```text
1 2
1 value 2
1 2 value
1 value 2
``` | NeedsInvestigation | low | Minor |
2,671,217,336 | rust | rustc/cargo not properly detecting the host | I tried this command:
```bash
cargo fetch --verbose --target stable-x86_64-unknown-linux-gnu
```
I expected to see this happen: *explanation*
Rust to work properly
Instead, this happened: *explanation*
error: `rustc -vV` didn't have a line for `host:`, got:
```
rustc 1.82.0 (f6e511eec 2024-10-15)
binary: rustc
commit-hash: f6e511eec7342f59a25f7c0534f1dbea00d01b14
commit-date: 2024-10-15
host: x86_64-unknown-linux-gnu
release: 1.82.0
LLVM version: 19.1.1
RUST_BACKTRACE=1 cargo fetch --verbose --target stable-x86_64-unknown-linux-gnu
error: `rustc -vV` didn't have a line for `host:`, got:
```
For reference, I am trying to compile `eza`, the `ls` replacement. If there is any other information that I can provide or other commands that you would like me to run, please, let me know. | C-discussion | low | Critical |
2,671,235,091 | tauri | [bug] jenkins in mac studio m1 pro โproc macro panickedโ โunknown codegen target nullโ | ### Describe the bug
if i into mac studio and build manual๏ผ itโs success
but if i build in jenkins๏ผitโs errorใ
all environments are the same
```text
error: proc macro panicked
--> src/main.rs:52:14
|
52 | .run(tauri::generate_context!())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: message: unknown codegen target null
error: could not compile `app` (bin "app") due to 1 previous error
```
### Reproduction
```text
build-dependencies]
tauri-build = { version = "1.5.1", features = ['codegen'] }
[dependencies]
serde_json = "1.0.108"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.5.4",features = ["api-all"]}
log = { version = "0.4.20", features = ["std", "serde"] }
cmd_lib = "1.9.3"
nom = "3.2.1"
network-interface = "1.1.1"
wifi-rs = "0.2.4"
reqwest = { version = "0.11.23", features = ["json"] }
tokio = { version = "1.35.1", features = ["full"] }
screenshots = "0.5.3"
rusb = "0.9"
edid-rs = "0.1.0"
serde-xml-rs = "0.6.0"
regex = "1.10.5"
wio = "0.2.2"
log4rs = "1.3.0"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9.4"
mach = "0.3.2"
plist = "1.7.0"
```
### Expected behavior
_No response_
### Full `tauri info` output
```text
yarn run v1.22.19
$ tauri info
[โ] Environment
- OS: Mac OS 14.4.1 X64
โ Xcode Command Line Tools: installed
โ rustc: 1.80.0 (051478957 2024-07-21)
โ cargo: 1.80.0 (376290515 2024-07-16)
โ rustup: 1.27.1 (54dd3d00f 2024-04-24)
โ Rust toolchain: 1.80.0-aarch64-apple-darwin (default)
- node: 16.18.1
- yarn: 1.22.19
- npm: 8.19.2
[-] Packages
- tauri [RUST]: 1.8.1
- tauri-build [RUST]: 1.5.5
- wry [RUST]: 0.24.11
- tao [RUST]: 0.16.10
- @tauri-apps/api [NPM]: 1.5.3
- @tauri-apps/cli [NPM]: 1.5.9
[-] App
- build-type: bundle
- CSP: unset
- distDir: ../build
- devPath: http://localhost:3000/
- framework: React
โจ Done in 5.71s.
```
### Stack trace
_No response_
### Additional context
_No response_ | type: bug,platform: macOS,status: needs triage | low | Critical |
2,671,335,692 | ollama | Allow passing file context for FIM tasks on /api/generate | It's relatively common now that FIM tasks use additional "context" - files related to the FIM task - to better perform their task.
Generally this context includes the file path + name, as well as the contents.
Enter the problem, models use different tokens to denote the start/end of this information. For example, deepseek-coder looks like
```
# /path/to/file.java
package com.my.app
class MyApp {
}
```
And StarCoder has different tokens (and some extra data)
```
<reponame>MyGitRepository
<filename>/path/to/file.java
package com.my.app
class MyApp {
}
<|endoftext|>
```
It'd be neat if we had a model-agnostic way of handling this, similar to how `suffix` works now | feature request | low | Minor |
2,671,362,024 | kubernetes | Add support for compiling Kubectl to webassembly | ### What would you like to be added?
I would like to have the option to compile kubectl as a webassembly output. At the moment there is a few compilation errors:
```
$ GOOS=js GOARCH=wasm go build -v ./cmd/kubectl
github.com/moby/term
# github.com/moby/term
vendor/github.com/moby/term/term_unix.go:21:15: undefined: unix.Termios
vendor/github.com/moby/term/term_unix.go:39:19: undefined: unix.IoctlGetWinsize
vendor/github.com/moby/term/term_unix.go:39:49: undefined: unix.TIOCGWINSZ
vendor/github.com/moby/term/term_unix.go:45:14: undefined: unix.IoctlSetWinsize
vendor/github.com/moby/term/term_unix.go:45:44: undefined: unix.TIOCSWINSZ
vendor/github.com/moby/term/term_unix.go:88:31: undefined: unix.Termios
vendor/github.com/moby/term/term_unix.go:96:32: undefined: unix.Termios
vendor/github.com/moby/term/termios_unix.go:13:21: undefined: unix.Termios
vendor/github.com/moby/term/termios_nonbsd.go:11:20: undefined: unix.TCGETS
vendor/github.com/moby/term/termios_nonbsd.go:12:20: undefined: unix.TCSETS
vendor/github.com/moby/term/term_unix.go:45:44: too many errors
k8s.io/kubectl/pkg/util/interrupt
k8s.io/kubectl/pkg/util
# k8s.io/kubectl/pkg/util/interrupt
staging/src/k8s.io/kubectl/pkg/util/interrupt/interrupt.go:28:46: undefined: syscall.SIGHUP
# k8s.io/kubectl/pkg/util
staging/src/k8s.io/kubectl/pkg/util/umask.go:28:14: undefined: unix.Umask
```
I was wondering how much those package could be put out of `kubectl` or at least disabled with compilation flags in case we want to compile to webassembly
### Why is this needed?
We would like to have the option to run a `kubectl` tool inside a browser. This would be helpful to ease up intervention on clusters. | kind/feature,sig/cli,needs-triage | low | Critical |
2,671,369,664 | kubernetes | pod requesting zero devices with zero available fails admission for 'Allocate failed due to no healthy devices present' | ### What happened?
pod create failed
```
status:
message: 'Pod was rejected: Allocate failed due to no healthy devices present; cannot allocate unhealthy devices nvidia.com/gpu, which is unexpected'
phase: Failed
reason: UnexpectedAdmissionError
startTime: "2024-11-19T03:04:55z"
```
pod yaml is
```
apiVersion: apps/v1
kind: Deployment
metadata:
name: jktest
spec:
selector:
matchLabels:
workload.es.io: jktest
template:
metadata:
labels:
workload: jktest
spec:
containers:
- image: centos:latest
imagePullPolicy: IfNotPresent
name: test
resources:
limits:
cpu: 250m
memory: 512Mi
nvidia.com/gpu: "0"
requests:
cpu: 250m
memory: 512Mi
nvidia.com/gpu: "0"
```
the node info is
```
...
allocatable:
memory: 252717800Ki
nvidia.com/gpu: "0"
pods: "255"
capacity:
memory: 263278312Ki
nvidia.com/gpu: "0"
pods: "255"
```
This failure are very similar to https://github.com/kubernetes/kubernetes/issues/109191 , but the prompts are different.
### What did you expect to happen?
When the number of `external resource` requests in a pod is `0`, the creation is successful.
### How can we reproduce it (as minimally and precisely as possible)?
1 create pod a which use hot pluggable device in resource.request, and the resource is 1
2 remove device
3 create pod b which use hot pluggable device in resource.request, and the ressource is 0
### Anything else we need to know?
I am confident that this issue was introduced by the [pull](https://github.com/kubernetes/kubernetes/pull/114640).
Unable to control the application even when resources are not used, but set to 0, for more information see [issue](https://github.com/kubernetes/kubernetes/issues/109191).
### Kubernetes version
```console
$ kubectl version
Client Version: v1.28.2
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.28.2
```
### Cloud provider
<details>
</details>
### OS version
<details>
```console
# On Linux:
$ cat /etc/os-release
# paste output here
$ uname -a
# paste output here
# On Windows:
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
# paste output here
```
</details>
### Install tools
<details>
</details>
### Container runtime (CRI) and version (if applicable)
<details>
</details>
### Related plugins (CNI, CSI, ...) and versions (if applicable)
<details>
</details>
| kind/bug,priority/backlog,sig/node,triage/accepted | low | Critical |
2,671,429,357 | tensorflow | model.fit fails when the number of rows exceeds Int32.MaxValue | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
source
### TensorFlow version
2.19.0-dev20241117
### Custom code
Yes
### OS platform and distribution
MacOS 15.1.0
### Mobile device
_No response_
### Python version
3.10
### Bazel version
_No response_
### GCC/compiler version
_No response_
### CUDA/cuDNN version
_No response_
### GPU model and memory
_No response_
### Current behavior?
I would expect model.fit to handle training on extremely large NumPy arrays without limitations.
### Standalone code to reproduce the issue
```shell
import numpy as np
from keras import Sequential
from keras.layers import Dense
n = 2_147_483_648
x = np.zeros(n).astype(np.float32)
y = x
model = Sequential([
Dense(64, activation="relu", input_shape=(1,)),
Dense(1, activation="sigmoid")
])
model.compile(optimizer="adam", loss="binary_crossentropy")
model.fit(x=x,y=y, epochs=1, batch_size=1024, verbose=1)
```
### Relevant log output
```shell
ValueError: Invalid value in tensor used for shape: -2147483648
```
| type:bug,TF 2.18 | medium | Critical |
2,671,443,610 | langchain | bind_tools function fails with AzureMLChatOnlineEndpoint | ### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the LangChain documentation with the integrated search.
- [X] I used the GitHub search to find a similar question and didn't find it.
- [X] I am sure that this is a bug in LangChain rather than my code.
- [X] The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package).
### Example Code
```
from langchain_community.chat_models.azureml_endpoint import AzureMLChatOnlineEndpoint
llm = AzureMLChatOnlineEndpoint(#AzureMLOnlineEndpoint(
endpoint_url="https://your-endpoint",
endpoint_api_type=AzureMLEndpointApiType.dedicated,
endpoint_api_key="",
model_kwargs={"temperature": 0.3, "max_new_tokens": 400},
content_formatter=CustomOpenAIChatContentFormatter(),
)
llm_with_tools = llm.bind_tools(tools)
```
### Error Message and Stack Trace (if applicable)
---------------------------------------------------------------------------
NotImplementedError Traceback (most recent call last)
Cell In[17], line 1
----> 1 llm_with_tools = llm.bind_tools(tools)
File [~\AppData\Local\anaconda3\envs\llm\Lib\site-packages\langchain_core\language_models\chat_models.py:1115]
/anaconda3/envs/llm/Lib/site-packages/langchain_core/language_models/chat_models.py#line=1114), in BaseChatModel.bind_tools(self, tools, **kwargs)
1108 def bind_tools(
1109 self,
1110 tools: Sequence[
(...)
1113 **kwargs: Any,
1114 ) -> Runnable[LanguageModelInput, BaseMessage]:
-> 1115 raise NotImplementedError
NotImplementedError:
### Description
The function should support bind_tool since it is a chat model but got the error as above.
### System Info
Name: langchain-core
Version: 0.3.19
Name: langchain
Version: 0.3.7 | โฑญ: core | low | Critical |
2,671,451,341 | material-ui | [utils] Use utilities from Base UI | _on hold until https://github.com/mui/base-ui/pull/827 is merged and Base UI API is stable_
Since Base UI is going to be the upstream project for Core, it makes sense for the utils to be defined there. The dependency on @mui/utils and @mui/types in Base UI was removed in https://github.com/mui/base-ui/pull/827. We need to update @mui/utils (or dependent projects directly) to use these utils from Base UI.
**Search keywords**: | on hold,package: utils | low | Minor |
2,671,489,969 | pytorch | Runtime error for custom op in export path (C++ inference) | ### ๐ Describe the bug
### Description:
Our workload replaces addmm with our custom op with exact signature. The custom operator is registered using TORCH_LIBRARY.
With a custom backend of torch.compile, Op is getting replaced and functionality is as expected. However in the generated code by AOTInductor, "const" keywords are missing in the signature.
Const keyword is mandatory for Scalar and optional-Tensor arguments.
### Code:
```
python
import os
import torch
class Model(torch.nn.Module):
def __init__(self):
super().__init__()
self.fc1 = torch.nn.Linear(10, 16, bias=True)
def forward(self, x):
x = self.fc1(x)
return x
with torch.no_grad():
device = "cuda" if torch.cuda.is_available() else "cpu"
model = Model().to(device=device)
example_inputs=(torch.randn(2, 10, device=device),)
batch_dim = torch.export.Dim("batch", min=1, max=1024)
######################################################
exmp_inputs=torch.randn(2, 10)
ep = torch.export.export(model.eval(), example_inputs)
from torch._decomp import get_decompositions
decomp_tbl = get_decompositions([torch.ops.aten.linear.default])
exp_mod = ep.run_decompositions(decomp_tbl)
model_out = op_replacement(exp_mod.module())
so_path = torch._export.aot_compile(
model_out,
example_inputs,
options={"aot_inductor.output_path": os.path.join(os.getcwd(), "model_addmm.so")},
)
```
Followed the steps [here](https://pytorch.org/docs/main/torch.compiler_aot_inductor.html) to create an executable. Observed the following error while running the executable.
```
Error:
Tried to access or call an operator with a wrong signature.
operator: custom::custom_addmm_1dbias_relu(Tensor self, Tensor mat1, Tensor mat2, *, Scalar beta=1, Scalar alpha=1, str custom_op_name="custom::custom_addmm_1dbias_relu") -> Tensor
registered at /home/src/cpu/cpp/Matmul.cpp:638
correct signature: at::Tensor (at::Tensor const&, at::Tensor const&, at::Tensor const&, c10::Scalar const&, c10::Scalar const&, std::string)
registered at /home/src/cpu/cpp/Matmul.cpp:737
accessed/called as: at::Tensor (at::Tensor const&, at::Tensor const&, at::Tensor const&, c10::Scalar, c10::Scalar, std::string)
This likely happened in a call to OperatorHandle::typed<Return (Args...)>(). Please make sure that the function signature matches the signature in the operator registration call.
Exception raised from reportSignatureError at ../aten/src/ATen/core/dispatch/OperatorEntry.cpp:503 (most recent call first):
frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x96 (0x7fd61b5e2276 in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libc10.so)
frame #1: c10::detail::torchCheckFail(char const*, char const*, unsigned int, std::string const&) + 0x64 (0x7fd61b58c394 in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libc10.so)
frame #2: c10::impl::OperatorEntry::reportSignatureError(c10::impl::CppSignature const&, c10::impl::OperatorEntry::CppSignatureWithDebug const&) const + 0x2aa (0x7fd6087783aa in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so)
frame #3: c10::impl::OperatorEntry::assertSignatureIsCorrect(c10::impl::CppSignature const&, bool) const + 0x86 (0x7fd6087784c6 in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so)
frame #4: torch::aot_inductor::AOTInductorModel::run_impl(AtenTensorOpaque**, AtenTensorOpaque**, void*, AOTIProxyExecutorOpaque*) + 0x43e9 (0x7fd6062d2839 in /home/dlrm/model_dlrm.so)
frame #5: torch::aot_inductor::AOTInductorModelContainer::run(AtenTensorOpaque**, AtenTensorOpaque**, void*, AOTIProxyExecutorOpaque*) + 0x1a8 (0x7fd6062fbee8 in /home/dlrm/model_dlrm.so)
frame #6: AOTInductorModelContainerRun + 0x7f (0x7fd6062d80bf in /home/dlrm/model_dlrm.so)
frame #7: torch::inductor::AOTIModelContainerRunner::run(std::vector<at::Tensor, std::allocator<at::Tensor> >&, AOTInductorStreamOpaque*) + 0xb2 (0x7fd60c2e1bd2 in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so)
frame #8: torch::inductor::AOTIModelContainerRunnerCpu::run(std::vector<at::Tensor, std::allocator<at::Tensor> >&) + 0xc (0x7fd60c2e2c7c in /home/anaconda3/envs/pt-custom/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so)
frame #9: main + 0xbf7 (0x5606b1a87876 in ./test_custom_ops)
frame #10: <unknown function> + 0x29d90 (0x7fd606787d90 in /lib/x86_64-linux-gnu/libc.so.6)
frame #11: __libc_start_main + 0x80 (0x7fd606787e40 in /lib/x86_64-linux-gnu/libc.so.6)
frame #12: _start + 0x25 (0x5606b1a86a55 in ./test_custom_ops)
terminate called after throwing an instance of 'std::runtime_error'
what(): run_func_( container_handle_, input_handles.data(), input_handles.size(), output_handles.data(), output_handles.size(), cuda_stream_handle, proxy_executor_handle_) API call failed at ../torch/csrc/inductor/aoti_runner/model_container_runner.cpp, line 111
run_c.sh: line 10: 2433330 Aborted (core dumped) ./test_custom_ops
```
AOTInductor's generated signature for custom op
```
static auto op_custom_addmm_1dbias_ = c10::Dispatcher::singleton()
.findSchemaOrThrow("custom::custom_addmm_1dbias", "")
.typed<at::Tensor(at::Tensor const& self, at::Tensor const& mat1, at::Tensor const& mat2, at::Scalar beta, at::Scalar alpha, std::string custom_op_name)>();
auto buf0 = op_custom_custom_addmm_1dbias_.call(L__self___fc1_bias, arg2_1, reinterpret_tensor(L__self___fc1_weight, {10L, 16L}, {1L, 10L}, 0L), 1L, 1L, "custom::custom_addmm_1dbias");
```
### Versions
```
Collecting environment information...
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
ROCM used to build PyTorch: N/A
OS: Ubuntu 22.04.1 LTS (x86_64)
GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Clang version: 14.0.0-1ubuntu1.1
CMake version: version 3.28.1
Libc version: glibc-2.35
Python version: 3.10.15 (main, Oct 3 2024, 07:27:34) [GCC 11.2.0] (64-bit runtime)
Python platform: Linux-5.15.0-105-generic-x86_64-with-glibc2.35
Is CUDA available: N/A
CUDA runtime version: Could not collect
CUDA_MODULE_LOADING set to: N/A
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Could not collect
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: N/A
CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 48 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 128
On-line CPU(s) list: 0-127
Vendor ID: AuthenticAMD
Model name: AMD Ryzen Threadripper PRO 5995WX 64-Cores
CPU family: 25
Model: 8
Thread(s) per core: 2
Core(s) per socket: 64
Socket(s): 1
Stepping: 2
Frequency boost: enabled
CPU max MHz: 7024.2178
CPU min MHz: 1800.0000
BogoMIPS: 5389.65
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm
Virtualization: AMD-V
L1d cache: 2 MiB (64 instances)
L1i cache: 2 MiB (64 instances)
L2 cache: 32 MiB (64 instances)
L3 cache: 256 MiB (8 instances)
NUMA node(s): 1
NUMA node0 CPU(s): 0-127
Vulnerability Gather data sampling: Not affected
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Not affected
Vulnerability Retbleed: Not affected
Vulnerability Spec rstack overflow: Mitigation; safe RET, no microcode
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
Versions of relevant libraries:
[pip3] flake8==6.1.0
[pip3] flake8-bugbear==23.12.2
[pip3] flake8-comprehensions==3.14.0
[pip3] flake8-executable==2.1.3
[pip3] flake8-logging-format==0.9.0
[pip3] flake8-noqa==1.3.2
[pip3] flake8-pyi==23.11.0
[pip3] flake8_simplify==0.21.0
[pip3] mypy-extensions==1.0.0
[pip3] numpy==1.26.3
[pip3] torch==2.5.0+cpu
[pip3] torchaudio==2.5.0+cpu
[pip3] torchvision==0.20.0+cpu
[conda] numpy 1.26.3 pypi_0 pypi
[conda] torch 2.5.0+cpu pypi_0 pypi
[conda] torchaudio 2.5.0+cpu pypi_0 pypi
[conda] torchvision 0.20.0+cpu pypi_0 pypi
```
cc @chauhang @penguinwu @avikchaudhuri @gmagogsfm @zhxchen17 @tugsbayasgalan @angelayi @suo @ydwu4 | oncall: pt2,oncall: export | low | Critical |
2,671,502,953 | godot | Unable to Run Projects on Godot 4.4.dev4 Android | ### Tested versions
Godot v4.4.dev4 - Android - Single-window, 1 monitor - OpenGL ES 3 (Compatibility) - PowerVR Rogue GE8300 - (4 threads)
### System information
Godot v4.4.dev4 - Android - Single-window, 1 monitor - OpenGL ES 3 (Compatibility) - PowerVR Rogue GE8300 - (4 threads)
### Issue description
When attempting to run a project in Godot 4.4.dev4 on Android, the screen briefly turns black for a second before the editor reloads itself, returning to the editor without running the game/project. This makes it impossible to run or test any project.
https://github.com/user-attachments/assets/75e21144-09ce-4f35-ae93-374fcbdcafb8
### Steps to reproduce
1. Install Godot 4.4.dev4 on an Android device.
2. Open or create a new project in the editor.
3. Press the "Play" button to run the project.
4. Observe the screen behavior: a black screen appears momentarily, and then the editor reloads without running the project.
### Minimal reproduction project (MRP)
[testnew.zip](https://github.com/user-attachments/files/17812874/testnew.zip)
| bug,platform:android,needs testing,topic:export | low | Minor |
2,671,512,541 | electron | Enabling Vibrancy and backdrop-filter blur doesn't render properly | ### Preflight Checklist
- [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
- [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to.
- [x] I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a bug report that matches the one I want to file, without success.
### Electron Version
34.0.0-beta.4
### What operating system(s) are you using?
macOS, Windows
### Operating System Version
macOS 15.2 Beta (24C5079e)
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
_No response_
### Expected Behavior
Have an electron application with vibrancy enabled. Get some text or other element and add another element with both a transparent background and the backdrop-filter set to blur(10px) (or any value). This should just have the text in the background render blurred.
### Actual Behavior
However the text in the background gets blurred and not at the same time. An example can be found under the additional informations section
Here is an image of the actual behaviour, the text is not properly blurred as you can see. This works if you disable the vibrancy of the window.

### Testcase Gist URL
https://gist.github.com/RoyalFoxy/750b5723eed2cb65cdb23f253bf2a7c7
### Additional Information
I have used the latest bleeding edge version of electron for this. As you can see I added the background color and the backdrop-filter and it produces a weird effect.
I already had an issue open for this for version 25 from over a year ago https://github.com/electron/electron/issues/39529#issuecomment-2471844991
And that issue was also just a continuation of another issue that got closed from iirc version 16 as it dropped out of support scope | platform/windows,platform/macOS,bug :beetle:,has-repro-gist,34-x-y | low | Critical |
2,671,531,616 | vscode | API - expose TextEditor for each extension so that API proposals can be enforced | null | bug,api,debt,scm | low | Minor |
2,671,541,108 | go | cmd/internal/testdir: Test/fixedbugs/issue68525.go failures | ```
#!watchflakes
default <- pkg == "cmd/internal/testdir" && test == "Test/fixedbugs/issue68525.go"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8730894001840957681)):
=== RUN Test/fixedbugs/issue68525.go
=== PAUSE Test/fixedbugs/issue68525.go
=== CONT Test/fixedbugs/issue68525.go
testdir_test.go:147: exit status 1
# command-line-arguments
callRet: nosplit stack over 800 byte limit
callRet<26>
grows 72 bytes, calls runtime.reflectcallmove<0>
grows 72 bytes, calls runtime.reflectcallmove<1>
grows 72 bytes, calls runtime.bulkBarrierPreWrite<1>
...
grows 56 bytes, calls runtime.asmcgocall<1>
grows 32 bytes, calls gosave_systemstack_switch<26>
grows 0 bytes, calls runtime.abort<0>
8 bytes over limit
grows 32 bytes, calls runtime.save_g<0>
8 bytes over limit
grows 32 bytes, calls runtime.save_g<0>
8 bytes over limit
--- FAIL: Test/fixedbugs/issue68525.go (43.46s)
โ [watchflakes](https://go.dev/wiki/Watchflakes)
| NeedsInvestigation | high | Critical |
2,671,552,325 | PowerToys | FancyZones - Enable drag and pause action to show zones for snapping | ### Description of the new feature / enhancement
Option to enable zones when clicking window title bar, dragging and then pausing for a user-configurable time (eg 1 second) allowing the window to be dropped where desired. This would remove the need to hold down a key to show the zones and could be used with just the mouse.
### Scenario when this would be used?
I'm a musician and I often have one hand on my piano keyboard. It would be great to not have to engage both hands to snap. This could also be considered an accessibility feature as it can make snapping to zones a one-handed operation.
### Supporting information
_No response_ | Needs-Triage | low | Minor |
2,671,579,845 | vscode | search only in expanded code | <!-- โ ๏ธโ ๏ธ Do Not Delete This! feature_request_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
Add checkbox to search window to search only in expanded code. Or don't search in collapsed code.
| feature-request,search | low | Minor |
2,671,590,464 | opencv | getUnconnectedOutLayers() does not work with onnx detection models with the new dnn engine | ### System Information
OpenCV version: 5.0.0-pre
Operating System / Platform: Ubuntu 22.04
Compiler & compiler version: GCC 11.4.0
### Detailed description
I encountered an issue while using the new DNN engine in OpenCV, which causes a crash when running YOLO models. Type of the output layer is required to process different models differently.
The following snippet works with ENGINE_CLASSIC:
```cpp
static vector<int> outLayers = net.getUnconnectedOutLayers();
static string outLayerType = net.getLayer(outLayers[0])->type;
```
With new DNN ENGINE, the outLayers is a vector of single element 0. Thus, does not represent the OutLayers in the right way.
In the net_impl.hpp, [here](https://github.com/opencv/opencv/blob/5.x/modules/dnn/src/net_impl.cpp#L2319), outputNameToId is empty as registerOutput() does not seem to be called anymore.
This pull request #26486 sets the engine to ```ENGINE_CLASSIC``` to ensure the object detection sample runs correctly.
### Steps to reproduce
```cpp
example_dnn_object_detection yolov8
```
### Issue submission checklist
- [X] I report the issue, it's not a question
- [X] I checked the problem with documentation, FAQ, open issues, forum.opencv.org, Stack Overflow, etc and have not found any solution
- [X] I updated to the latest OpenCV version and the issue is still there
- [X] There is reproducer code and related data files (videos, images, onnx, etc) | bug,category: samples,category: dnn | low | Critical |
2,671,613,666 | PowerToys | Keyboard manager "swallows" Ctrl within Outlook | ### Microsoft PowerToys version
0.86.0
### Installation method
PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
I have the following defined in Keyboard Manager:

In some circumstances (can't determine what triggers this) only `Ctrl+F` works in Outlook, the `Ctrl` modified is ignored for everything else (`Ctrl+C` can't copy and inserts `c` instead, `Ctrl+V` doesn't paste but inserts `v` instead, `Ctrl+N` doesn't create a new email, etc.)
Workaround: when this happens, turn Keyboard Manager off then back on.
### โ๏ธ Expected Behavior
Only the key combinations defined in Keyboard Manager should be affected / remapped.
### โ Actual Behavior
`Ctrl+F` works in Outlook, but the `Ctrl` modified is ignored for everything else (`Ctrl+C` can't copy and inserts `c` instead, `Ctrl+V` doesn't paste but inserts `v` instead, `Ctrl+N` doesn't create a new email, etc.)
### Other Software
_No response_ | Issue-Bug,Needs-Triage | low | Minor |
2,671,644,602 | vscode | MaxListenersExceededWarning: Possible EventEmitter memory leak detected. | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.95.3
- OS Version: Ubuntu 22.04.5 LTS
Steps to Reproduce:
1. Close VSCode with 8 projects opened (most of them DevContainer projects)
2. Open VSCode again from terminal ( running `code --disable-extensions --trace-warnings` to disable extensions and to show warning details) without specifying any folder or file (so last working session is used opening the 8 projects)
3. Following log is printed in the terminal:
```bash
Warning: 'trace-warnings' is not in the list of known options, but still passed to Electron/Chromium.
[main 2024-11-19T10:24:29.689Z] update#setState idle
(node:471892) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 child-process-gone listeners added to [App]. MaxListeners is 10. Use emitter.setMaxListeners() to increase limit
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at _addListener (node:events:593:17)
at App.addListener (node:events:611:10)
at Object.X [as onWillAddFirstListener] (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:28:7366)
at q (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:31:1282)
at Na.H (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:46:13550)
at Na.F (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:46:11857)
at Na.start (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:46:15161)
at vh.start (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:46:29191)
at Object.call (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:36:4563)
at df.s (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:34:19676)
at df.q (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:34:19199)
at qo.value (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:34:18601)
at P.B (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:746)
at P.C (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:816)
at P.fire (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:1033)
at qo.value (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:28:4908)
at P.B (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:746)
at P.fire (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:964)
at qo.value (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:28:5092)
at P.B (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:746)
at P.fire (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:33:964)
at T (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:28:7343)
at IpcMainImpl.i (file:///opt/VSCode-linux-x64-1.95.3/resources/app/out/main.js:36:21224)
at IpcMainImpl.emit (node:events:531:35)
at WebContents.<anonymous> (node:electron/js2c/browser_init:2:85782)
at WebContents.emit (node:events:519:28)
[main 2024-11-19T10:24:59.835Z] update#setState checking for updates
[main 2024-11-19T10:25:00.551Z] update#setState idle
```
| bug | low | Critical |
2,671,759,275 | vscode | window terminated unexpectedly | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version:
Steps to Reproduce:
1. Visual Studio Code <2>
The window terminated unexpectedly (reason: 'clean- exit', code: '0')
We are sorry for the inconvenience. You can reopen the window to
continue where you left off.
Don't restore editors
how can i fix this when i restarted and opened my system multiple times but the issue remain not gone.
| info-needed,freeze-slow-crash-leak | low | Critical |
2,671,766,867 | PowerToys | File hash values | ### Description of the new feature / enhancement
Being able to show a file hash value, or compare it to a given hash value.
Supply the algorithm as a parameter.
### Scenario when this would be used?
When downloading files it is very useful to know their hash values, and now it is cumbersome to have that shown in Windows Explorer.
### Supporting information
_No response_ | Needs-Triage | low | Minor |
2,671,775,703 | flutter | [et] Building the engine with Xcode 16 | The latest version of MacOS 15.1 requires installing a new version of Xcode (16).
After upgrading XCode from 15 to 16, my engine builds started failing.
Commands to run:
`/Users/dacoharkes/flt/engine/flutter/bin/cache/dart-sdk/bin/dart /Users/dacoharkes/flt/engine/src/flutter/tools/engine_tool/bin/et.dart build --rbe --gn-args=--no-prebuilt-dart-sdk -c android_debug_unopt_arm64`
Error:
`no such sysroot directory: '../../flutter/prebuilts/SDKs/MacOSX14.0.sdk`
Investigation:
```
$ pwd
/Users/dacoharkes/flt/engine/src/flutter/prebuilts/SDKs
$ ls -lah
[...]
lrwxr-xr-x 1 dacoharkes primarygroup 98B Nov 18 15:05 MacOSX14.0.sdk -> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk
$ ls /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/
MacOSX.sdk MacOSX15.1.sdk MacOSX15.sdk
```
Indeed MacOS14 is no longer there in Xcode 16.
Maybe I'm holding it wrong? Is there a way to trick the engine build into using `MacOSX15.1.sdk` without making a clean checkout? @johnmccutchan @matanlurey
(edit: manually adding a symlink seems to work.) | tool,t: xcode,P2,team-engine,triaged-engine,e: engine-tool | low | Critical |
2,671,781,766 | react | next-themes not working with React 19.0.0-rc-66855b96-20241106 | Description:
I encountered an issue when trying to use the next-themes package with React 19.0.0-rc-66855b96-20241106. The package was working fine with React 18.3.1, but after upgrading to this release candidate version, it failed to function as expected.
Steps to Reproduce:
Initialize a React project with React 19.0.0-rc-66855b96-20241106.
Run the command npm i next-themes to install the package.
Observe that the package does not work as it did in React 18.3.1.
Expected Behavior:
next-themes should work seamlessly as they did in React 18.3.1.
Actual Behavior:
The package does not function properly after the upgrade, and there is no specific error logged to indicate what might be causing the issue.
Environment:
React version: 19.0.0-rc-66855b96-20241106
Node.js version: v22.11.0
| React 19 | medium | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.