logs
stringlengths 104
251k
|
---|
plain
Checking rustc_codegen_ssa v0.0.0 (/checkout/compiler/rustc_codegen_ssa)
Checking rustc_resolve v0.0.0 (/checkout/compiler/rustc_resolve)
Checking rustc_trait_selection v0.0.0 (/checkout/compiler/rustc_trait_selection)
Checking rustc_codegen_llvm v0.0.0 (/checkout/compiler/rustc_codegen_llvm)
error[E0425]: cannot find value |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:322:12
|
322 | if unused_def_ids_by_file.is_empty() {
error[E0412]: cannot find type |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:47
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::FxHashMap;
1 | use crate::FxHashMap;
|
1 | use rustc_data_structures::stable_map::FxHashMap;
|
error[E0412]: cannot find type |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:57
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::Symbol;
---
error[E0412]: cannot find type |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:65
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::coverageinfo::DefId;
---
error[E0433]: failed to resolve: use of undeclared type |
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:74
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::FxHashMap;
1 | use crate::FxHashMap;
|
1 | use rustc_data_structures::stable_map::FxHashMap;
|
error[E0425]: cannot find value |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:347:20
|
347 | if unused_def_ids_by_file.contains_key(covered_file_name) {
error[E0412]: cannot find type |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:364:32
|
364 | let cgu_covered_files: FxHashSet<Symbol> =
|
help: consider importing this type alias
|
1 | use rustc_data_structures::stable_set::FxHashSet;
1 | use rustc_data_structures::stable_set::FxHashSet;
|
error[E0412]: cannot find type |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:364:42
[Truncated]
1 | use rustc_span::Symbol;
|
error[E0425]: cannot find value |
in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:377:27
|
377 | for def_id in unused_def_ids_by_file.remove(&covered_file_name).into_iter().flatten() {
error[E0599]: no method named |
in the current scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:345:50
|
|
345 | if let Some(covered_file_name) = tcx.covered_file_name(def_id) {
Some errors have detailed explanations: E0412, E0425, E0433, E0599.
For more information about an error, try |
plain
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:794:71
|
794 | self.insert_trait_and_projection(trait_ref, None, &mut traits, &mut fn_traits);
| ^^^^^^^^^^^ expected struct |
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:794:84
|
|
794 | self.insert_trait_and_projection(trait_ref, None, &mut traits, &mut fn_traits);
| ^^^^^^^^^^^^^^ expected struct |
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:806:25
|
806 | &mut traits,
806 | &mut traits,
| ^^^^^^^^^^^ expected struct |
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:807:25
|
807 | &mut fn_traits,
807 | &mut fn_traits,
| ^^^^^^^^^^^^^^ expected struct |
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
|
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
--> /Users/user/.cargo/registry/src/github.com-1ecc6299db9ec823/chalk-ir-0.55.0/src/interner.rs:191:37
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
error[E0277]: the trait bound `adt::AdtDef: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:78:5
|
78 | type InternedAdtId = &'tcx AdtDef;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `adt::AdtDef`
|
= note: required because of the requirements on the impl of `Ord` for `&'tcx adt::AdtDef`
note: required by a bound in `chalk_ir::interner::Interner::InternedAdtId`
--> /Users/user/.cargo/registry/src/github.com-1ecc6299db9ec823/chalk-ir-0.55.0/src/interner.rs:194:45
|
194 | type InternedAdtId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::InternedAdtId` |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
error[E0277]: the trait bound `adt::AdtDef: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:78:5
|
78 | type InternedAdtId = &'tcx AdtDef;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `adt::AdtDef`
|
= note: required because of the requirements on the impl of `Ord` for `&'tcx adt::AdtDef`
note: required by a bound in `chalk_ir::interner::Interner::InternedAdtId`
|
|
194 | type InternedAdtId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::InternedAdtId`
error[E0308]: mismatched types
--> compiler/rustc_middle/src/hir/mod.rs:109:49
|
|
109 | providers.all_local_trait_impls = |tcx, ()| &tcx.resolutions(()).trait_impls;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `HashMap`, found struct `BTreeMap`
|
= note: expected reference `&HashMap<rustc_span::def_id::DefId, Vec<rustc_span::def_id::LocalDefId>, BuildHasherDefault<FxHasher>>`
found reference `&BTreeMap<rustc_span::def_id::DefId, Vec<rustc_span::def_id::LocalDefId>>`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/print/pretty.rs:886:21
886 | auto_traits.sort();
886 | auto_traits.sort();
| ^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `(std::string::String, rustc_span::def_id::DefId)`
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:20:1
|
|
20 | / pub enum SimplifiedTypeGen<D>
21 | | where
22 | | D: Copy + Debug + Eq,
23 | | {
... |
45 | | ForeignSimplifiedType(DefId),
46 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.4/src/macros.rs:94:9
|
94 | / pub fn $derives(
95 | | i: $crate::macros::TokenStream
95 | | i: $crate::macros::TokenStream
[Truncated]
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:168:1
|
|
168 | / pub trait HashStable<CTX> {
169 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
Some errors have detailed explanations: E0277, E0308, E0599.
For more information about an error, try `rustc --explain E0277`. |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
error[E0277]: the trait bound `adt::AdtDef: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:78:5
|
78 | type InternedAdtId = &'tcx AdtDef;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `adt::AdtDef`
|
= note: required because of the requirements on the impl of `Ord` for `&'tcx adt::AdtDef`
note: required by a bound in `chalk_ir::interner::Interner::InternedAdtId`
|
|
194 | type InternedAdtId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::InternedAdtId`
error[E0308]: mismatched types
--> compiler/rustc_middle/src/hir/mod.rs:109:49
|
|
109 | providers.all_local_trait_impls = |tcx, ()| &tcx.resolutions(()).trait_impls;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `HashMap`, found struct `BTreeMap`
|
= note: expected reference `&HashMap<rustc_span::def_id::DefId, Vec<rustc_span::def_id::LocalDefId>, BuildHasherDefault<FxHasher>>`
found reference `&BTreeMap<rustc_span::def_id::DefId, Vec<rustc_span::def_id::LocalDefId>>`
error[E0277]: the trait bound `ty::FieldDef: std::cmp::Eq` is not satisfied
--> compiler/rustc_middle/src/ty/mod.rs:1437:5
|
1423 | #[derive(Debug, HashStable, Eq, PartialEq)]
| -- in this derive macro expansion
...
1437 | pub fields: Vec<FieldDef>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `ty::FieldDef`
::: /checkout/library/core/src/cmp.rs:293:1
|
|
293 | / pub macro Eq($item:item) {
295 | | }
295 | | }
| |_- in this expansion of `#[derive(Eq)]`
|
= note: required because of the requirements on the impl of `std::cmp::Eq` for `Vec<ty::FieldDef>`
note: required by a bound in `AssertParamIsEq`
|
|
304 | pub struct AssertParamIsEq<T: Eq + ?Sized> {
| ^^ required by this bound in `AssertParamIsEq`
error[E0369]: binary operation `==` cannot be applied to type `Vec<ty::FieldDef>`
--> compiler/rustc_middle/src/ty/mod.rs:1437:5
|
1423 | #[derive(Debug, HashStable, Eq, PartialEq)]
| --------- in this derive macro expansion
...
1437 | pub fields: Vec<FieldDef>,
|
::: /checkout/library/core/src/cmp.rs:227:1
|
|
227 | / pub macro PartialEq($item:item) {
229 | | }
229 | | }
[Truncated]
|
1423 | #[derive(Debug, HashStable, Eq, PartialEq)]
| --------- in this derive macro expansion
...
1437 | pub fields: Vec<FieldDef>,
|
::: /checkout/library/core/src/cmp.rs:227:1
|
|
227 | / pub macro PartialEq($item:item) {
229 | | }
229 | | }
| |_- in this expansion of `#[derive(PartialEq)]`
Some errors have detailed explanations: E0277, E0308, E0369.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to 6 previous errors
warning: build failed, waiting for other jobs to finish... |
plain
error[E0433]: failed to resolve: use of undeclared type `BTreeMap`
--> compiler/rustc_middle/src/ty/print/pretty.rs:767:29
|
767 | let mut fn_traits = BTreeMap::new();
|
help: consider importing this struct
|
1 | use std::collections::BTreeMap;
1 | use std::collections::BTreeMap;
|
error[E0412]: cannot find type `BTreeMap` in this scope
--> compiler/rustc_middle/src/ty/print/pretty.rs:936:22
|
936 | traits: &mut BTreeMap<ty::PolyTraitRef<'tcx>, BTreeMap<DefId, ty::Binder<'tcx, Ty<'tcx>>>>,
|
help: consider importing this struct
|
1 | use std::collections::BTreeMap;
1 | use std::collections::BTreeMap;
|
error[E0412]: cannot find type `BTreeMap` in this scope
--> compiler/rustc_middle/src/ty/print/pretty.rs:936:55
|
936 | traits: &mut BTreeMap<ty::PolyTraitRef<'tcx>, BTreeMap<DefId, ty::Binder<'tcx, Ty<'tcx>>>>,
|
help: consider importing this struct
|
1 | use std::collections::BTreeMap;
1 | use std::collections::BTreeMap;
|
error[E0412]: cannot find type `BTreeMap` in this scope
--> compiler/rustc_middle/src/ty/print/pretty.rs:937:25
|
937 | fn_traits: &mut BTreeMap<ty::PolyTraitRef<'tcx>, OpaqueFnEntry<'tcx>>,
|
help: consider importing this struct
|
1 | use std::collections::BTreeMap;
1 | use std::collections::BTreeMap;
|
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
error[E0614]: type `rustc_span::def_id::DefId` cannot be dereferenced
--> compiler/rustc_middle/src/ty/print/pretty.rs:903:37
|
|
903 | ... if Some(*item_def_id) == self.tcx().lang_items().generator_return() =>
error[E0277]: can't compare `rustc_span::def_id::DefId` with `rustc_span::def_id::DefId`
--> compiler/rustc_middle/src/ty/sty.rs:899:5
|
896 | #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, TyEncodable, TyDecodable)]
| ---------- in this derive macro expansion
899 | pub def_id: DefId,
899 | pub def_id: DefId,
| ^^^^^^^^^^^^^^^^^ no implementation for `rustc_span::def_id::DefId < rustc_span::def_id::DefId` and `rustc_span::def_id::DefId > rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:1103:1
|
|
1103 | / pub macro PartialOrd($item:item) {
[Truncated]
|
831 | / pub macro Ord($item:item) {
833 | | }
833 | | }
| |_- in this expansion of `#[derive(Ord)]`
|
note: required because of the requirements on the impl of `Ord` for `list::List<subst::GenericArg<'_>>`
|
|
110 | impl<T> Ord for List<T>
| ^^^ ^^^^^^^
= note: 1 redundant requirement hidden
= note: required because of the requirements on the impl of `Ord` for `&list::List<subst::GenericArg<'_>>`
Some errors have detailed explanations: E0277, E0412, E0433, E0614.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to 11 previous errors
warning: build failed, waiting for other jobs to finish... |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to previous error
warning: build failed, waiting for other jobs to finish...
error: build failed |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to previous error
warning: build failed, waiting for other jobs to finish...
error: build failed |
plain
Compiling rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Compiling rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Compiling rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Compiling rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to previous error
warning: build failed, waiting for other jobs to finish...
error: build failed |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/traits/chalk.rs:77:5
77 | type DefId = DefId;
77 | type DefId = DefId;
| ^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
note: required by a bound in `chalk_ir::interner::Interner::DefId`
|
|
191 | type DefId: Debug + Copy + Eq + Ord + Hash;
| ^^^ required by this bound in `chalk_ir::interner::Interner::DefId`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to previous error
warning: build failed, waiting for other jobs to finish...
error: build failed |
plain
Checking tempfile v3.2.0
Checking synstructure v0.12.6
Checking rustc_macros v0.1.0 (/checkout/compiler/rustc_macros)
Compiling tracing-attributes v0.1.17
Compiling chalk-derive v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking chalk-ir v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking tracing-subscriber v0.3.3
Checking rustc_index v0.0.0 (/checkout/compiler/rustc_index)
Checking rustc_data_structures v0.0.0 (/checkout/compiler/rustc_data_structures)
Checking tracing-tree v0.2.0
Checking tracing-tree v0.2.0
Checking chalk-solve v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking rustc_type_ir v0.0.0 (/checkout/compiler/rustc_type_ir)
Checking rustc_span v0.0.0 (/checkout/compiler/rustc_span)
Checking rustc_ast v0.0.0 (/checkout/compiler/rustc_ast)
Checking rustc_target v0.0.0 (/checkout/compiler/rustc_target)
Checking rustc_target v0.0.0 (/checkout/compiler/rustc_target)
Checking rustc_feature v0.0.0 (/checkout/compiler/rustc_feature)
Checking rustc_parse_format v0.0.0 (/checkout/compiler/rustc_parse_format)
Checking chalk-engine v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking rls-span v0.5.3
Checking rls-data v0.19.1
Checking rustc_lint_defs v0.0.0 (/checkout/compiler/rustc_lint_defs)
Checking rustc_hir v0.0.0 (/checkout/compiler/rustc_hir)
---
Checking tracing-tree v0.2.0
Checking rustdoc-json-types v0.1.0 (/checkout/src/rustdoc-json-types)
Checking tera v1.10.0
Checking rustdoc v0.0.0 (/checkout/src/librustdoc)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> src/librustdoc/html/render/cache.rs:67:9
|
67 | std::cmp::Ord::cmp(&k1, &k2)
| ^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `std::option::Option<rustc_span::def_id::DefId>`
= note: 2 redundant requirements hidden
= note: required because of the requirements on the impl of `Ord` for `(&std::string::String, &std::string::String, &ItemType, &std::option::Option<rustc_span::def_id::DefId>)`
error[E0277]: can't compare `rustc_span::def_id::DefId` with `rustc_span::def_id::DefId`
|
|
544 | #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
| ---------- in this derive macro expansion
545 | crate enum ImplTraitParam {
546 | DefId(DefId),
| ^^^^^ no implementation for `rustc_span::def_id::DefId < rustc_span::def_id::DefId` and `rustc_span::def_id::DefId > rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd` is not implemented for `rustc_span::def_id::DefId`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
|
|
544 | #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
| --- in this derive macro expansion
545 | crate enum ImplTraitParam {
546 | DefId(DefId),
| ^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustdoc` due to 3 previous errors
Build completed unsuccessfully in 0:02:52 |
plain
Checking tempfile v3.2.0
Checking synstructure v0.12.6
Checking rustc_macros v0.1.0 (/checkout/compiler/rustc_macros)
Compiling tracing-attributes v0.1.17
Compiling chalk-derive v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking chalk-ir v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking tracing-subscriber v0.3.3
Checking rustc_index v0.0.0 (/checkout/compiler/rustc_index)
Checking rustc_data_structures v0.0.0 (/checkout/compiler/rustc_data_structures)
Checking tracing-tree v0.2.0
Checking tracing-tree v0.2.0
Checking chalk-solve v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking rustc_type_ir v0.0.0 (/checkout/compiler/rustc_type_ir)
Checking rustc_span v0.0.0 (/checkout/compiler/rustc_span)
Checking rustc_ast v0.0.0 (/checkout/compiler/rustc_ast)
Checking rustc_target v0.0.0 (/checkout/compiler/rustc_target)
Checking rustc_target v0.0.0 (/checkout/compiler/rustc_target)
Checking rustc_feature v0.0.0 (/checkout/compiler/rustc_feature)
Checking rustc_parse_format v0.0.0 (/checkout/compiler/rustc_parse_format)
Checking chalk-engine v0.76.0-dev.0 (https://github.com/rust-lang/chalk?branch=master#f518c7c7)
Checking rls-span v0.5.3
Checking rls-data v0.19.1
Checking rustc_lint_defs v0.0.0 (/checkout/compiler/rustc_lint_defs)
Checking rustc_hir v0.0.0 (/checkout/compiler/rustc_hir)
---
Checking tracing-tree v0.2.0
Checking rustdoc-json-types v0.1.0 (/checkout/src/rustdoc-json-types)
Checking tera v1.10.0
Checking rustdoc v0.0.0 (/checkout/src/librustdoc)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> src/librustdoc/html/render/cache.rs:67:9
|
67 | std::cmp::Ord::cmp(&k1, &k2)
| ^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `std::option::Option<rustc_span::def_id::DefId>`
= note: 2 redundant requirements hidden
= note: required because of the requirements on the impl of `Ord` for `(&std::string::String, &std::string::String, &ItemType, &std::option::Option<rustc_span::def_id::DefId>)`
error[E0277]: can't compare `rustc_span::def_id::DefId` with `rustc_span::def_id::DefId`
|
|
544 | #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
| ---------- in this derive macro expansion
545 | crate enum ImplTraitParam {
546 | DefId(DefId),
| ^^^^^ no implementation for `rustc_span::def_id::DefId < rustc_span::def_id::DefId` and `rustc_span::def_id::DefId > rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd` is not implemented for `rustc_span::def_id::DefId`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
|
|
544 | #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
| --- in this derive macro expansion
545 | crate enum ImplTraitParam {
546 | DefId(DefId),
| ^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustdoc` due to 3 previous errors
Build completed unsuccessfully in 0:02:38 |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/hir/map/mod.rs:552:48
|
552 | self.tcx.all_local_trait_impls(()).get(&trait_did).map_or(&[], |xs| &xs[..])
| --- ^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
| required by a bound introduced by this call
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::get`
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::get`
error[E0599]: no method named `extend` found for mutable reference `&mut std::collections::BTreeMap<rustc_span::def_id::DefId, Binder<'tcx, &'tcx TyS<'tcx>>>` in the current scope
--> compiler/rustc_middle/src/ty/print/pretty.rs:866:70
|
866 | traits.entry(fn_once_trait_ref).or_default().extend(
| ^^^^^^ method not found in `&mut std::collections::BTreeMap<rustc_span::def_id::DefId, Binder<'tcx, &'tcx TyS<'tcx>>>`
error[E0599]: no method named `extend` found for mutable reference `&mut std::collections::BTreeMap<rustc_span::def_id::DefId, Binder<'tcx, &'tcx TyS<'tcx>>>` in the current scope
--> compiler/rustc_middle/src/ty/print/pretty.rs:984:46
|
984 | traits.entry(trait_ref).or_default().extend(proj_ty);
| ^^^^^^ method not found in `&mut std::collections::BTreeMap<rustc_span::def_id::DefId, Binder<'tcx, &'tcx TyS<'tcx>>>`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/print/pretty.rs:1089:21
1089 | auto_traits.sort();
1089 | auto_traits.sort();
| ^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `(std::string::String, rustc_span::def_id::DefId)`
note: required by a bound in `std::slice::<impl [T]>::sort`
|
|
274 | T: Ord,
| ^^^ required by this bound in `std::slice::<impl [T]>::sort`
error[E0599]: the method `cmp` exists for struct `rustc_span::def_id::DefId`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/adt.rs:112:18
|
112 | self.did.cmp(&other.did)
| ^^^ method cannot be called on `rustc_span::def_id::DefId` due to unsatisfied trait bounds
::: /checkout/compiler/rustc_span/src/def_id.rs:225:1
|
225 | pub struct DefId {
225 | pub struct DefId {
| ---------------- doesn't satisfy `rustc_span::def_id::DefId: Iterator`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`rustc_span::def_id::DefId: Iterator`
which is required by `&mut rustc_span::def_id::DefId: Iterator`
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
[Truncated]
...
62 | ReifyShim(DefId),
| ^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/instance.rs:67:15
|
26 | #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
| --- in this derive macro expansion
... |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/hir/map/mod.rs:552:48
|
552 | self.tcx.all_local_trait_impls(()).get(&trait_did).map_or(&[], |xs| &xs[..])
| --- ^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
| required by a bound introduced by this call
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::get`
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::get`
error[E0277]: the trait bound `BoundRegion: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:754:53
|
754 | |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ----- ^^ the trait `Ord` is not implemented for `BoundRegion`
| required by a bound introduced by this call
|
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::entry`
|
|
1140 | K: Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::entry`
error[E0599]: the method `or_insert_with` exists for enum `std::collections::btree_map::Entry<'_, BoundRegion, _>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:754:57
|
754 | |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ^^^^^^^^^^^^^^ method cannot be called on `std::collections::btree_map::Entry<'_, BoundRegion, _>` due to unsatisfied trait bounds
::: compiler/rustc_middle/src/ty/sty.rs:63:1
|
63 | pub struct BoundRegion {
63 | pub struct BoundRegion {
| ---------------------- doesn't satisfy `BoundRegion: Ord`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`BoundRegion: Ord`
help: consider annotating `BoundRegion` with `#[derive(Ord)]`
|
63 | #[derive(Ord)]
error[E0277]: the trait bound `BoundRegion: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:807:66
|
807 | let real_fld_r = |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ----- ^^ the trait `Ord` is not implemented for `BoundRegion`
| required by a bound introduced by this call
|
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::entry`
|
|
1140 | K: Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::entry`
error[E0599]: the method `or_insert_with` exists for enum `std::collections::btree_map::Entry<'_, BoundRegion, _>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:807:70
|
807 | let real_fld_r = |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ^^^^^^^^^^^^^^ method cannot be called on `std::collections::btree_map::Entry<'_, BoundRegion, _>` due to unsatisfied trait bounds
::: compiler/rustc_middle/src/ty/sty.rs:63:1
|
63 | pub struct BoundRegion {
63 | pub struct BoundRegion {
| ---------------------- doesn't satisfy `BoundRegion: Ord`
= note: the following trait bounds were not satisfied:
[Truncated]
which is required by `&mut &sty::TyKind<'_>: Iterator`
`sty::TyKind<'_>: Iterator`
which is required by `&mut sty::TyKind<'_>: Iterator`
--> /checkout/library/core/src/iter/traits/iterator.rs:55:1
|
55 | / pub trait Iterator {
56 | | /// The type of the elements being iterated over.
56 | | /// The type of the elements being iterated over.
57 | | #[stable(feature = "rust1", since = "1.0.0")]
58 | | type Item;
3558 | | }
3559 | | }
| |_^
| |_^
help: consider annotating `sty::TyKind<'_>` with `#[derive(Ord)]`
|
84 | #[derive(Ord)] |
plain
Compiling rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Compiling rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Compiling rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Compiling rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/hir/map/mod.rs:552:48
|
552 | self.tcx.all_local_trait_impls(()).get(&trait_did).map_or(&[], |xs| &xs[..])
| --- ^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
| required by a bound introduced by this call
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::get`
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::get`
error[E0277]: the trait bound `BoundRegion: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:754:53
|
754 | |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ----- ^^ the trait `Ord` is not implemented for `BoundRegion`
| required by a bound introduced by this call
|
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::entry`
|
|
1140 | K: Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::entry`
error[E0599]: the method `or_insert_with` exists for enum `std::collections::btree_map::Entry<'_, BoundRegion, _>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:754:57
|
754 | |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ^^^^^^^^^^^^^^ method cannot be called on `std::collections::btree_map::Entry<'_, BoundRegion, _>` due to unsatisfied trait bounds
::: compiler/rustc_middle/src/ty/sty.rs:63:1
|
63 | pub struct BoundRegion {
63 | pub struct BoundRegion {
| ---------------------- doesn't satisfy `BoundRegion: Ord`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`BoundRegion: Ord`
help: consider annotating `BoundRegion` with `#[derive(Ord)]`
|
63 | #[derive(Ord)]
error[E0277]: the trait bound `BoundRegion: Ord` is not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:807:66
|
807 | let real_fld_r = |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ----- ^^ the trait `Ord` is not implemented for `BoundRegion`
| required by a bound introduced by this call
|
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::entry`
|
|
1140 | K: Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::entry`
error[E0599]: the method `or_insert_with` exists for enum `std::collections::btree_map::Entry<'_, BoundRegion, _>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/fold.rs:807:70
|
807 | let real_fld_r = |br: ty::BoundRegion| *region_map.entry(br).or_insert_with(|| fld_r(br));
| ^^^^^^^^^^^^^^ method cannot be called on `std::collections::btree_map::Entry<'_, BoundRegion, _>` due to unsatisfied trait bounds
::: compiler/rustc_middle/src/ty/sty.rs:63:1
|
63 | pub struct BoundRegion {
63 | pub struct BoundRegion {
| ---------------------- doesn't satisfy `BoundRegion: Ord`
= note: the following trait bounds were not satisfied:
[Truncated]
1869 | pub projection: &'tcx [PlaceElem<'tcx>],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `TyS<'_> < TyS<'_>` and `TyS<'_> > TyS<'_>`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd` is not implemented for `TyS<'_>`
note: required because of the requirements on the impl of `std::cmp::PartialOrd` for `&TyS<'_>`
--> compiler/rustc_middle/src/ty/mod.rs:427:7
|
427 | impl !PartialOrd for TyS<'_> {}
| ^^^^^^^^^^ ^^^^^^^
= note: 3 redundant requirements hidden |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> compiler/rustc_middle/src/hir/map/mod.rs:552:48
|
552 | self.tcx.all_local_trait_impls(()).get(&trait_did).map_or(&[], |xs| &xs[..])
| --- ^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
| required by a bound introduced by this call
|
note: required by a bound in `std::collections::BTreeMap::<K, V>::get`
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
--> /checkout/library/alloc/src/collections/btree/map.rs:558:24
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `std::collections::BTreeMap::<K, V>::get`
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
94 | / pub fn $derives(
95 | | i: $crate::macros::TokenStream
95 | | i: $crate::macros::TokenStream
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/trait_def.rs:67:26
67 | #[derive(Default, Debug, HashStable)]
| ^^^^^^^^^^
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
[Truncated]
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
Some errors have detailed explanations: E0277, E0599.
For more information about an error, try `rustc --explain E0277`. |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
94 | / pub fn $derives(
95 | | i: $crate::macros::TokenStream
95 | | i: $crate::macros::TokenStream
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/trait_def.rs:67:26
67 | #[derive(Default, Debug, HashStable)]
| ^^^^^^^^^^
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
[Truncated]
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
For more information about this error, try `rustc --explain E0599`.
error: could not compile `rustc_middle` due to 2 previous errors |
plain
Compiling rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Compiling rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Compiling rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Compiling rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
94 | / pub fn $derives(
95 | | i: $crate::macros::TokenStream
95 | | i: $crate::macros::TokenStream
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/trait_def.rs:67:26
67 | #[derive(Default, Debug, HashStable)]
| ^^^^^^^^^^
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
[Truncated]
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
For more information about this error, try `rustc --explain E0599`.
error: could not compile `rustc_middle` due to 2 previous errors |
plain
Checking rustc_ast_lowering v0.0.0 (/checkout/compiler/rustc_ast_lowering)
Checking rustc_ast_passes v0.0.0 (/checkout/compiler/rustc_ast_passes)
Checking rustc_expand v0.0.0 (/checkout/compiler/rustc_expand)
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
|
|
51 | #[derive(Default, TyEncodable, TyDecodable, Debug, HashStable)]
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
94 | / pub fn $derives(
95 | | i: $crate::macros::TokenStream
95 | | i: $crate::macros::TokenStream
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
error[E0599]: the method `hash_stable` exists for reference `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>`, but its trait bounds were not satisfied
--> compiler/rustc_middle/src/ty/trait_def.rs:67:26
67 | #[derive(Default, Debug, HashStable)]
| ^^^^^^^^^^
| |
| |
| method cannot be called on `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>` due to unsatisfied trait bounds
| in this derive macro expansion
::: /cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.7.0/src/map.rs:71:1
|
|
71 | pub struct IndexMap<K, V, S = RandomState> {
| ------------------------------------------ doesn't satisfy `_: HashStable<_>`
::: compiler/rustc_middle/src/ty/fast_reject.rs:21:1
|
|
21 | / pub enum SimplifiedTypeGen<D>
22 | | where
23 | | D: Copy + Debug + Eq,
24 | | {
48 | | ParameterSimplifiedType,
49 | | }
49 | | }
| |_- doesn't satisfy `_: HashStable<_>`
::: /cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/macros.rs:94:9
|
[Truncated]
96 | | ) -> $crate::macros::TokenStream {
| |- in this expansion of `#[derive(HashStable)]`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`SimplifiedTypeGen<rustc_span::def_id::DefId>: HashStable<_>`
which is required by `indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
`indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
which is required by `&indexmap::map::IndexMap<SimplifiedTypeGen<rustc_span::def_id::DefId>, Vec<rustc_span::def_id::DefId>, BuildHasherDefault<FxHasher>>: HashStable<_>`
--> /checkout/compiler/rustc_data_structures/src/stable_hasher.rs:170:1
|
|
170 | / pub trait HashStable<CTX> {
171 | | fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher);
| |_^
For more information about this error, try `rustc --explain E0599`.
error: could not compile `rustc_middle` due to 2 previous errors |
plain
Checking rustc_ty_utils v0.0.0 (/checkout/compiler/rustc_ty_utils)
Checking rustc_const_eval v0.0.0 (/checkout/compiler/rustc_const_eval)
Checking rustc_traits v0.0.0 (/checkout/compiler/rustc_traits)
Checking rustc_mir_build v0.0.0 (/checkout/compiler/rustc_mir_build)
error[E0277]: the trait bound `DefId: Ord` is not satisfied
--> compiler/rustc_traits/src/chalk/lowering.rs:817:10
817 | .collect();
817 | .collect();
| ^^^^^^^ the trait `Ord` is not implemented for `DefId`
|
= note: required because of the requirements on the impl of `FromIterator<(DefId, u32)>` for `BTreeMap<DefId, u32>`
note: required by a bound in `std::iter::Iterator::collect`
|
|
1741 | fn collect<B: FromIterator<Self::Item>>(self) -> B
| ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `std::iter::Iterator::collect`
error[E0277]: the trait bound `DefId: Ord` is not satisfied
--> compiler/rustc_traits/src/chalk/lowering.rs:956:79
|
956 | ty::BrNamed(def_id, _name) => match self.named_parameters.get(&def_id) {
| --- ^^^^^^^ the trait `Ord` is not implemented for `DefId`
| required by a bound introduced by this call
|
|
note: required by a bound in `BTreeMap::<K, V>::get`
|
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `BTreeMap::<K, V>::get`
error[E0277]: the trait bound `DefId: Ord` is not satisfied
--> compiler/rustc_traits/src/chalk/lowering.rs:1039:67
|
1039 | ty::ReEarlyBound(_re) => match self.named_regions.get(&_re.def_id) {
| --- ^^^^^^^^^^^ the trait `Ord` is not implemented for `DefId`
| required by a bound introduced by this call
|
|
note: required by a bound in `BTreeMap::<K, V>::get`
|
|
558 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `BTreeMap::<K, V>::get`
error[E0277]: the trait bound `DefId: Ord` is not satisfied
--> compiler/rustc_traits/src/chalk/lowering.rs:1051:47
1051 | self.named_regions.insert(_re.def_id, idx);
1051 | self.named_regions.insert(_re.def_id, idx);
| ------ ^^^^^^^^^^ the trait `Ord` is not implemented for `DefId`
| required by a bound introduced by this call
|
|
note: required by a bound in `BTreeMap::<K, V>::insert`
|
|
851 | K: Ord,
| ^^^ required by this bound in `BTreeMap::<K, V>::insert`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_traits` due to 4 previous errors
warning: build failed, waiting for other jobs to finish...
warning: build failed, waiting for other jobs to finish...
error[E0277]: the trait bound `rustc_middle::mir::PlaceRef<'_>: Ord` is not satisfied
|
1727 | all_fake_borrows.sort();
1727 | all_fake_borrows.sort();
| ^^^^ the trait `Ord` is not implemented for `rustc_middle::mir::PlaceRef<'_>`
|
note: required by a bound in `slice::<impl [T]>::sort`
|
|
274 | T: Ord,
| ^^^ required by this bound in `slice::<impl [T]>::sort`
error[E0277]: the trait bound `rustc_middle::mir::PlaceRef<'tcx>: Ord` is not satisfied
--> compiler/rustc_const_eval/src/transform/validate.rs:450:34
450 | self.place_cache.sort_unstable();
450 | self.place_cache.sort_unstable();
| ^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_middle::mir::PlaceRef<'tcx>`
|
note: required by a bound in `core::slice::<impl [T]>::sort_unstable`
|
|
2457 | T: Ord,
| ^^^ required by this bound in `core::slice::<impl [T]>::sort_unstable`
error: build failed
Build completed unsuccessfully in 0:02:09 |
plain
Checking tracing-tree v0.2.0
Checking rustdoc-json-types v0.1.0 (/checkout/src/rustdoc-json-types)
Checking tera v1.10.0
Checking rustdoc v0.0.0 (/checkout/src/librustdoc)
error[E0277]: the trait bound `ImplTraitParam: Ord` is not satisfied
--> src/librustdoc/clean/mod.rs:572:32
|
572 | impl_trait.insert(param.index.into(), vec![]);
| ^^^^^^ the trait `Ord` is not implemented for `ImplTraitParam`
|
note: required by a bound in `BTreeMap::<K, V>::insert`
|
|
851 | K: Ord,
| ^^^ required by this bound in `BTreeMap::<K, V>::insert`
error[E0277]: the trait bound `ImplTraitParam: Ord` is not satisfied
--> src/librustdoc/clean/mod.rs:615:45
|
615 | if let Some(b) = impl_trait.get_mut(¶m_idx.into()) {
| ^^^^^^^ the trait `Ord` is not implemented for `ImplTraitParam`
|
note: required by a bound in `BTreeMap::<K, V>::get_mut`
|
|
812 | K: Borrow<Q> + Ord,
| ^^^ required by this bound in `BTreeMap::<K, V>::get_mut`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> src/librustdoc/html/render/search_index.rs:57:9
|
57 | std::cmp::Ord::cmp(&k1, &k2)
| ^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `std::option::Option<rustc_span::def_id::DefId>`
= note: 2 redundant requirements hidden
= note: required because of the requirements on the impl of `Ord` for `(&std::string::String, &std::string::String, &ItemType, &std::option::Option<rustc_span::def_id::DefId>)`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustdoc` due to 3 previous errors
Build completed unsuccessfully in 0:02:59 |
plain
|
34 | use std::collections::BTreeMap;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
error[E0277]: the trait bound `rustc_span::def_id::DefId: Ord` is not satisfied
--> src/librustdoc/html/render/search_index.rs:57:9
|
57 | std::cmp::Ord::cmp(&k1, &k2)
| ^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `rustc_span::def_id::DefId`
|
= note: required because of the requirements on the impl of `Ord` for `std::option::Option<rustc_span::def_id::DefId>`
= note: 2 redundant requirements hidden
= note: required because of the requirements on the impl of `Ord` for `(&std::string::String, &std::string::String, &ItemType, &std::option::Option<rustc_span::def_id::DefId>)`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustdoc` due to 2 previous errors
Build completed unsuccessfully in 0:02:57 |
plain
.................................................................................................... 100/12528
...........................................iiiiiiiiiiii...........i..i...............i...i.......... 200/12528
.................................................................................................... 300/12528
.................................................................................................... 400/12528
..................FF..................................F............................................. 500/12528
........F..F........................................................................................ 600/12528
...i............................................................................i................... 800/12528
.................................................................................................... 900/12528
.................................................................................................... 1000/12528
.................................................................................................... 1100/12528
.................................................................................................... 1100/12528
.................................................................................................... 1200/12528
........i........................................................................................... 1300/12528
........................................i........................................................... 1400/12528
.................................................................................................... 1500/12528
.................F.................................................................................. 1600/12528
i.....................................................................FF.F..............F........... 1700/12528
F................................................................................................... 1800/12528
.................................................................................................... 2000/12528
..............................................................................i..................... 2100/12528
.................................................................................................... 2200/12528
.................................................................................................... 2300/12528
---
.................................................................................................... 4000/12528
.................................................................................................... 4100/12528
.................................................................................................... 4200/12528
.................................................................................................... 4300/12528
.........F.....F.................................................................................... 4400/12528
................................................................F................................... 4600/12528
.................................................................................................... 4700/12528
.....................................................................i.............................. 4800/12528
................................i................................................................... 4900/12528
................................i................................................................... 4900/12528
.................................................................................................... 5000/12528
.................................................................................................... 5100/12528
...................F.................................F.............................................. 5200/12528
.................................................................................................... 5400/12528
.............................................................................................i...... 5500/12528
.......................................F............................................................ 5600/12528
.................................................................................................... 5700/12528
---
....ii................................ii........................................................i... 7200/12528
.................................................................................................... 7300/12528
..........................................................i......................................... 7400/12528
.................................................................................................... 7500/12528
...............................................................................F..F................. 7600/12528
.................................................................................................... 7800/12528
.................................................................................................... 7900/12528
...........................................................F........................................ 8000/12528
...........................................................i..ii.................................... 8100/12528
---
.................................................................................................... 9200/12528
.............................................................................................iiii.ii 9300/12528
iii..................................................................ii...............i............. 9400/12528
.................................................................................................... 9500/12528
......................................................................FF...........F................ 9600/12528
........................................................................F..........F................ 9700/12528
.................................................................................................... 9900/12528
.................................................................................................... 10000/12528
..............................................................................i..ii.i............... 10100/12528
.................................................................................................... 10200/12528
.................................................................................................... 10200/12528
.i...............................................................................................iii 10300/12528
iii.i..iiiiii.i..................................................................................... 10400/12528
.................................................................................................... 10500/12528
............................................................................F....................... 10600/12528
...........................................................................F..F..................... 10700/12528
.................................................................................................... 10900/12528
.................................................................................................... 11000/12528
.................................................................................................... 11100/12528
.......................F...................................ii.............................i......... 11200/12528
.......................F...................................ii.............................i......... 11200/12528
.............................................................................................F...... 11300/12528
.................................................................................................... 11400/12528
F.....................................................FF............................................ 11500/12528
[Truncated]
note: ...does not necessarily outlive the lifetime `'a` as defined here
|
|
LL | impl<'a, T> SomeTrait for &'a Bar<T> {
error: aborting due to 7 previous errors
Some errors have detailed explanations: E0307, E0308.
---
test result: FAILED. 12367 passed; 42 failed; 119 ignored; 0 measured; 0 filtered out; finished in 144.61s
command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/compiletest" "--compile-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib" "--run-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--suite" "ui" "--mode" "ui" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-12/bin/FileCheck" "--nodejs" "/usr/bin/node" "--host-rustcflags" "-Crpath -O -Cdebuginfo=0 -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--target-rustcflags" "-Crpath -O -Cdebuginfo=0 -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--docck-python" "/usr/bin/python3" "--lldb-python" "/usr/bin/python3" "--gdb" "/usr/bin/gdb" "--quiet" "--llvm-version" "12.0.0" "--llvm-components" "aarch64 aarch64asmparser aarch64codegen aarch64desc aarch64disassembler aarch64info aarch64utils aggressiveinstcombine all all-targets amdgpu amdgpuasmparser amdgpucodegen amdgpudesc amdgpudisassembler amdgpuinfo amdgpuutils analysis arm armasmparser armcodegen armdesc armdisassembler arminfo armutils asmparser asmprinter avr avrasmparser avrcodegen avrdesc avrdisassembler avrinfo binaryformat bitreader bitstreamreader bitwriter bpf bpfasmparser bpfcodegen bpfdesc bpfdisassembler bpfinfo cfguard codegen core coroutines coverage debuginfocodeview debuginfodwarf debuginfogsym debuginfomsf debuginfopdb demangle dlltooldriver dwarflinker engine executionengine extensions filecheck frontendopenacc frontendopenmp fuzzmutate globalisel hellonew hexagon hexagonasmparser hexagoncodegen hexagondesc hexagondisassembler hexagoninfo instcombine instrumentation interfacestub interpreter ipo irreader jitlink lanai lanaiasmparser lanaicodegen lanaidesc lanaidisassembler lanaiinfo libdriver lineeditor linker lto mc mca mcdisassembler mcjit mcparser mips mipsasmparser mipscodegen mipsdesc mipsdisassembler mipsinfo mirparser msp430 msp430asmparser msp430codegen msp430desc msp430disassembler msp430info native nativecodegen nvptx nvptxcodegen nvptxdesc nvptxinfo objcarcopts object objectyaml option orcjit orcshared orctargetprocess passes perfjitevents powerpc powerpcasmparser powerpccodegen powerpcdesc powerpcdisassembler powerpcinfo profiledata remarks riscv riscvasmparser riscvcodegen riscvdesc riscvdisassembler riscvinfo runtimedyld scalaropts selectiondag sparc sparcasmparser sparccodegen sparcdesc sparcdisassembler sparcinfo support symbolize systemz systemzasmparser systemzcodegen systemzdesc systemzdisassembler systemzinfo tablegen target textapi transformutils vectorize webassembly webassemblyasmparser webassemblycodegen webassemblydesc webassemblydisassembler webassemblyinfo windowsmanifest x86 x86asmparser x86codegen x86desc x86disassembler x86info xcore xcorecodegen xcoredesc xcoredisassembler xcoreinfo xray" "--system-llvm" "--cc" "" "--cxx" "" "--cflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--channel" "nightly" "--color" "always"
Build completed unsuccessfully in 0:12:47 |
plain
.................................................................................................... 100/12538
...........................................iiiiiiiiiiii...........i.i................i...i.......... 200/12538
.................................................................................................... 300/12538
.................................................................................................... 400/12538
....................F..................................F............................................ 500/12538
......F....F........................................................................................ 600/12538
...i............................................................................i................... 800/12538
.................................................................................................... 900/12538
.................................................................................................... 1000/12538
.................................................................................................... 1100/12538
.................................................................................................... 1100/12538
.................................................................................................... 1200/12538
........i........................................................................................... 1300/12538
........................................i...............................................F........... 1400/12538
.................................................................................................... 1500/12538
.....................F.............................................................................. 1600/12538
i.....................................................................FF.F.................F........ 1700/12538
F................................................................................................... 1800/12538
.................................................................................................... 2000/12538
..................................................................................i................. 2100/12538
.................................................................................................... 2200/12538
.................................................................................................... 2300/12538
---
............................................................................i....................... 4800/12538
.......................................i............................................................ 4900/12538
.................................................................................................... 5000/12538
.................................................................................................... 5100/12538
........................F.....................................F..................................... 5200/12538
.................................................................................................... 5400/12538
.................................................................................................... 5500/12538
i..........................................F........................................................ 5600/12538
.................................................................................................... 5700/12538
---
...........ii................................ii..................................................... 7200/12538
....i............................................................................................... 7300/12538
..................................................................i................................. 7400/12538
.................................................................................................... 7500/12538
.........................................................................................F......F... 7600/12538
.................................................................................................... 7800/12538
.................................................................................................... 7900/12538
....................................................................F............................... 8000/12538
...................................................................i..ii............................ 8100/12538
---
.................................................................................................... 9200/12538
.................................................................................................... 9300/12538
..iiii.iiiii..................................................................ii...............i.... 9400/12538
.................................................................................................... 9500/12538
...............................................................................F.......F.....F...... 9600/12538
..................................................................................F.........F....... 9700/12538
..F................................................................................................. 9800/12538
.................................................................................................... 10000/12538
.......................................................................................i..ii.i...... 10100/12538
.................................................................................................... 10200/12538
..........i......................................................................................... 10300/12538
..........i......................................................................................... 10300/12538
......iiiiii.i..iiiiii.i............................................................................ 10400/12538
.................................................................................................... 10500/12538
..................................................................................F................. 10600/12538
...................................................................................F..F............. 10700/12538
.................................................................................................... 10900/12538
.................................................................................................... 11000/12538
.................................................................................................... 11100/12538
..............................F......................................ii............................. 11200/12538
..............................F......................................ii............................. 11200/12538
i..................................................................................................F 11300/12538
.................................................................................................... 11400/12538
.................................................................F....F............................. 11500/12538
.F...............F.................................................................................. 11600/12538
..............................................................F.i................................... 11800/12538
.................................................................................................... 11900/12538
.........................................................F.......................................... 12000/12538
.................................................................................................... 12100/12538
---
---- [ui] ui/associated-types/cache/project-fn-ret-invariant.rs#krisskross stdout ----
[Truncated]
note: ...does not necessarily outlive the lifetime `'a` as defined here
|
|
LL | impl<'a, T> SomeTrait for &'a Bar<T> {
error: aborting due to 7 previous errors
Some errors have detailed explanations: E0307, E0308.
---
test result: FAILED. 12379 passed; 40 failed; 119 ignored; 0 measured; 0 filtered out; finished in 129.57s
command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/compiletest" "--compile-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib" "--run-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--suite" "ui" "--mode" "ui" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-12/bin/FileCheck" "--nodejs" "/usr/bin/node" "--host-rustcflags" "-Crpath -O -Cdebuginfo=0 -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--target-rustcflags" "-Crpath -O -Cdebuginfo=0 -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--docck-python" "/usr/bin/python3" "--lldb-python" "/usr/bin/python3" "--gdb" "/usr/bin/gdb" "--quiet" "--llvm-version" "12.0.0" "--llvm-components" "aarch64 aarch64asmparser aarch64codegen aarch64desc aarch64disassembler aarch64info aarch64utils aggressiveinstcombine all all-targets amdgpu amdgpuasmparser amdgpucodegen amdgpudesc amdgpudisassembler amdgpuinfo amdgpuutils analysis arm armasmparser armcodegen armdesc armdisassembler arminfo armutils asmparser asmprinter avr avrasmparser avrcodegen avrdesc avrdisassembler avrinfo binaryformat bitreader bitstreamreader bitwriter bpf bpfasmparser bpfcodegen bpfdesc bpfdisassembler bpfinfo cfguard codegen core coroutines coverage debuginfocodeview debuginfodwarf debuginfogsym debuginfomsf debuginfopdb demangle dlltooldriver dwarflinker engine executionengine extensions filecheck frontendopenacc frontendopenmp fuzzmutate globalisel hellonew hexagon hexagonasmparser hexagoncodegen hexagondesc hexagondisassembler hexagoninfo instcombine instrumentation interfacestub interpreter ipo irreader jitlink lanai lanaiasmparser lanaicodegen lanaidesc lanaidisassembler lanaiinfo libdriver lineeditor linker lto mc mca mcdisassembler mcjit mcparser mips mipsasmparser mipscodegen mipsdesc mipsdisassembler mipsinfo mirparser msp430 msp430asmparser msp430codegen msp430desc msp430disassembler msp430info native nativecodegen nvptx nvptxcodegen nvptxdesc nvptxinfo objcarcopts object objectyaml option orcjit orcshared orctargetprocess passes perfjitevents powerpc powerpcasmparser powerpccodegen powerpcdesc powerpcdisassembler powerpcinfo profiledata remarks riscv riscvasmparser riscvcodegen riscvdesc riscvdisassembler riscvinfo runtimedyld scalaropts selectiondag sparc sparcasmparser sparccodegen sparcdesc sparcdisassembler sparcinfo support symbolize systemz systemzasmparser systemzcodegen systemzdesc systemzdisassembler systemzinfo tablegen target textapi transformutils vectorize webassembly webassemblyasmparser webassemblycodegen webassemblydesc webassemblydisassembler webassemblyinfo windowsmanifest x86 x86asmparser x86codegen x86desc x86disassembler x86info xcore xcorecodegen xcoredesc xcoredisassembler xcoreinfo xray" "--system-llvm" "--cc" "" "--cxx" "" "--cflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--channel" "nightly" "--color" "always"
Build completed unsuccessfully in 0:11:42 |
plain
Checking rustc_typeck v0.0.0 (/checkout/compiler/rustc_typeck)
Checking rustc_plugin_impl v0.0.0 (/checkout/compiler/rustc_plugin_impl)
Checking rustc_borrowck v0.0.0 (/checkout/compiler/rustc_borrowck)
Checking rustc_mir_transform v0.0.0 (/checkout/compiler/rustc_mir_transform)
error[E0277]: can't compare `VarianceDiagInfo<'_>` with `VarianceDiagInfo<'_>`
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| ---------- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `VarianceDiagInfo<'_> < VarianceDiagInfo<'_>` and `VarianceDiagInfo<'_> > VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd<VarianceDiagInfo<'_>>` is not implemented for `VarianceDiagInfo<'_>`
error[E0277]: the trait bound `VarianceDiagInfo<'_>: Ord` is not satisfied
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| --- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
error[E0599]: the method `cmp` exists for tuple `(CrateNum, DefId)`, but its trait bounds were not satisfied
--> compiler/rustc_typeck/src/check/method/suggest.rs:1922:13
|
1922 | lhs.cmp(&rhs)
| ^^^ method cannot be called on `(CrateNum, DefId)` due to unsatisfied trait bounds
::: /checkout/compiler/rustc_span/src/def_id.rs:225:1
|
225 | pub struct DefId {
225 | pub struct DefId {
| ---------------- doesn't satisfy `DefId: Ord`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`DefId: Ord`
which is required by `(CrateNum, DefId): Ord`
`(CrateNum, DefId): Iterator`
which is required by `&mut (CrateNum, DefId): Iterator`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_borrowck` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
For more information about this error, try `rustc --explain E0599`. |
plain
Checking rustc_typeck v0.0.0 (/checkout/compiler/rustc_typeck)
Checking rustc_plugin_impl v0.0.0 (/checkout/compiler/rustc_plugin_impl)
Checking rustc_mir_transform v0.0.0 (/checkout/compiler/rustc_mir_transform)
Checking rustc_borrowck v0.0.0 (/checkout/compiler/rustc_borrowck)
error[E0277]: can't compare `VarianceDiagInfo<'_>` with `VarianceDiagInfo<'_>`
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| ---------- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `VarianceDiagInfo<'_> < VarianceDiagInfo<'_>` and `VarianceDiagInfo<'_> > VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd<VarianceDiagInfo<'_>>` is not implemented for `VarianceDiagInfo<'_>`
error[E0277]: the trait bound `VarianceDiagInfo<'_>: Ord` is not satisfied
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| --- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_borrowck` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
warning: build failed, waiting for other jobs to finish...
error[E0599]: the method `cmp` exists for tuple `(CrateNum, DefId)`, but its trait bounds were not satisfied
--> compiler/rustc_typeck/src/check/method/suggest.rs:1922:13
|
1922 | lhs.cmp(&rhs)
| ^^^ method cannot be called on `(CrateNum, DefId)` due to unsatisfied trait bounds
::: /checkout/compiler/rustc_span/src/def_id.rs:225:1
|
225 | pub struct DefId {
225 | pub struct DefId {
| ---------------- doesn't satisfy `DefId: Ord`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`DefId: Ord`
which is required by `(CrateNum, DefId): Ord`
`(CrateNum, DefId): Iterator`
which is required by `&mut (CrateNum, DefId): Iterator`
For more information about this error, try `rustc --explain E0599`.
error: build failed
Build completed unsuccessfully in 0:02:37 |
plain
Checking rustc_typeck v0.0.0 (/checkout/compiler/rustc_typeck)
Checking rustc_plugin_impl v0.0.0 (/checkout/compiler/rustc_plugin_impl)
Checking rustc_borrowck v0.0.0 (/checkout/compiler/rustc_borrowck)
Checking rustc_mir_transform v0.0.0 (/checkout/compiler/rustc_mir_transform)
error[E0277]: can't compare `VarianceDiagInfo<'_>` with `VarianceDiagInfo<'_>`
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| ---------- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `VarianceDiagInfo<'_> < VarianceDiagInfo<'_>` and `VarianceDiagInfo<'_> > VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:1108:1
|
|
1108 | / pub macro PartialOrd($item:item) {
1110 | | }
1110 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd<VarianceDiagInfo<'_>>` is not implemented for `VarianceDiagInfo<'_>`
error[E0277]: the trait bound `VarianceDiagInfo<'_>: Ord` is not satisfied
|
|
75 | #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
| --- in this derive macro expansion
...
94 | pub variance_info: VarianceDiagInfo<'tcx>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `VarianceDiagInfo<'_>`
::: /checkout/library/core/src/cmp.rs:832:1
|
|
832 | / pub macro Ord($item:item) {
834 | | }
834 | | }
| |_- in this expansion of `#[derive(Ord)]`
error[E0599]: the method `cmp` exists for tuple `(CrateNum, DefId)`, but its trait bounds were not satisfied
--> compiler/rustc_typeck/src/check/method/suggest.rs:1922:13
|
1922 | lhs.cmp(&rhs)
| ^^^ method cannot be called on `(CrateNum, DefId)` due to unsatisfied trait bounds
::: /checkout/compiler/rustc_span/src/def_id.rs:226:1
|
226 | pub struct DefId {
226 | pub struct DefId {
| ---------------- doesn't satisfy `DefId: Ord`
= note: the following trait bounds were not satisfied:
= note: the following trait bounds were not satisfied:
`DefId: Ord`
which is required by `(CrateNum, DefId): Ord`
`(CrateNum, DefId): Iterator`
which is required by `&mut (CrateNum, DefId): Iterator`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `rustc_borrowck` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
For more information about this error, try `rustc --explain E0599`. |
plain
Checking rustc_codegen_ssa v0.0.0 (/checkout/compiler/rustc_codegen_ssa)
Checking rustc_resolve v0.0.0 (/checkout/compiler/rustc_resolve)
Checking rustc_trait_selection v0.0.0 (/checkout/compiler/rustc_trait_selection)
Checking rustc_codegen_llvm v0.0.0 (/checkout/compiler/rustc_codegen_llvm)
error[E0425]: cannot find value `unused_def_ids_by_file` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:322:12
|
322 | if unused_def_ids_by_file.is_empty() {
error[E0412]: cannot find type `FxHashMap` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:47
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::FxHashMap;
1 | use crate::FxHashMap;
|
1 | use rustc_data_structures::stable_map::FxHashMap;
|
error[E0412]: cannot find type `Symbol` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:57
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::Symbol;
---
error[E0412]: cannot find type `DefId` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:65
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::coverageinfo::DefId;
---
error[E0433]: failed to resolve: use of undeclared type `FxHashMap`
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:343:74
|
343 | let mut first_covered_def_id_by_file: FxHashMap<Symbol, DefId> = FxHashMap::default();
|
help: consider importing one of these items
|
1 | use crate::FxHashMap;
1 | use crate::FxHashMap;
|
1 | use rustc_data_structures::stable_map::FxHashMap;
|
error[E0425]: cannot find value `unused_def_ids_by_file` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:347:20
|
347 | if unused_def_ids_by_file.contains_key(covered_file_name) {
error[E0412]: cannot find type `FxHashSet` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:364:32
|
364 | let cgu_covered_files: FxHashSet<Symbol> =
|
help: consider importing this type alias
|
1 | use rustc_data_structures::stable_set::FxHashSet;
1 | use rustc_data_structures::stable_set::FxHashSet;
|
error[E0412]: cannot find type `Symbol` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:364:42
[Truncated]
1 | use rustc_span::Symbol;
|
error[E0425]: cannot find value `unused_def_ids_by_file` in this scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:377:27
|
377 | for def_id in unused_def_ids_by_file.remove(&covered_file_name).into_iter().flatten() {
error[E0599]: no method named `covered_file_name` found for struct `TyCtxt<'tcx>` in the current scope
--> compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:345:50
|
|
345 | if let Some(covered_file_name) = tcx.covered_file_name(def_id) {
Some errors have detailed explanations: E0412, E0425, E0433, E0599.
For more information about an error, try `rustc --explain E0412`.
error: could not compile `rustc_codegen_llvm` due to 10 previous errors |
plain
Checking rustc_builtin_macros v0.0.0 (/checkout/compiler/rustc_builtin_macros)
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:794:71
|
794 | self.insert_trait_and_projection(trait_ref, None, &mut traits, &mut fn_traits);
| ^^^^^^^^^^^ expected struct `indexmap::map::IndexMap`, found struct `HashMap`
|
= note: expected mutable reference `&mut indexmap::map::IndexMap<Binder<'tcx, sty::TraitRef<'tcx>>, indexmap::map::IndexMap<rustc_span::def_id::DefId, Binder<'tcx, ty::Term<'tcx>>, BuildHasherDefault<FxHasher>>, BuildHasherDefault<FxHasher>>`
found mutable reference `&mut HashMap<_, _, BuildHasherDefault<FxHasher>>`
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:794:84
|
|
794 | self.insert_trait_and_projection(trait_ref, None, &mut traits, &mut fn_traits);
| ^^^^^^^^^^^^^^ expected struct `indexmap::map::IndexMap`, found struct `HashMap`
|
= note: expected mutable reference `&mut indexmap::map::IndexMap<Binder<'tcx, sty::TraitRef<'tcx>>, OpaqueFnEntry<'tcx>, BuildHasherDefault<FxHasher>>`
found mutable reference `&mut HashMap<_, _, BuildHasherDefault<FxHasher>>`
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:806:25
|
806 | &mut traits,
806 | &mut traits,
| ^^^^^^^^^^^ expected struct `indexmap::map::IndexMap`, found struct `HashMap`
|
= note: expected mutable reference `&mut indexmap::map::IndexMap<Binder<'tcx, sty::TraitRef<'tcx>>, indexmap::map::IndexMap<rustc_span::def_id::DefId, Binder<'tcx, ty::Term<'tcx>>, BuildHasherDefault<FxHasher>>, BuildHasherDefault<FxHasher>>`
found mutable reference `&mut HashMap<_, _, BuildHasherDefault<FxHasher>>`
error[E0308]: mismatched types
--> compiler/rustc_middle/src/ty/print/pretty.rs:807:25
|
807 | &mut fn_traits,
807 | &mut fn_traits,
| ^^^^^^^^^^^^^^ expected struct `indexmap::map::IndexMap`, found struct `HashMap`
|
= note: expected mutable reference `&mut indexmap::map::IndexMap<Binder<'tcx, sty::TraitRef<'tcx>>, OpaqueFnEntry<'tcx>, BuildHasherDefault<FxHasher>>`
found mutable reference `&mut HashMap<_, _, BuildHasherDefault<FxHasher>>`
error[E0277]: can't compare `TyS<'_>` with `TyS<'_>`
--> compiler/rustc_middle/src/ty/mod.rs:787:8
|
784 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, TyEncodable, TyDecodable)]
| ---------- in this derive macro expansion
...
787 | Ty(Ty<'tcx>),
| ^^^^^^^^ no implementation for `TyS<'_> < TyS<'_>` and `TyS<'_> > TyS<'_>`
::: /checkout/library/core/src/cmp.rs:1154:1
|
|
1154 | / pub macro PartialOrd($item:item) {
1156 | | }
1156 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd<TyS<'_>>` is not implemented for `TyS<'_>`
= note: required because of the requirements on the impl of `std::cmp::PartialOrd<&TyS<'_>>` for `&TyS<'_>`
error[E0277]: can't compare `ty::consts::Const<'_>` with `ty::consts::Const<'_>`
--> compiler/rustc_middle/src/ty/mod.rs:788:11
|
784 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, TyEncodable, TyDecodable)]
| ---------- in this derive macro expansion
...
788 | Const(&'tcx Const<'tcx>),
| ^^^^^^^^^^^^^^^^^ no implementation for `ty::consts::Const<'_> < ty::consts::Const<'_>` and `ty::consts::Const<'_> > ty::consts::Const<'_>`
::: /checkout/library/core/src/cmp.rs:1154:1
|
|
1154 | / pub macro PartialOrd($item:item) {
1156 | | }
1156 | | }
| |_- in this expansion of `#[derive(PartialOrd)]`
|
= help: the trait `std::cmp::PartialOrd<ty::consts::Const<'_>>` is not implemented for `ty::consts::Const<'_>`
= note: required because of the requirements on the impl of `std::cmp::PartialOrd<&ty::consts::Const<'_>>` for `&ty::consts::Const<'_>`
[Truncated]
| --- in this derive macro expansion
...
788 | Const(&'tcx Const<'tcx>),
| ^^^^^^^^^^^^^^^^^ the trait `Ord` is not implemented for `ty::consts::Const<'_>`
::: /checkout/library/core/src/cmp.rs:849:1
|
|
849 | / pub macro Ord($item:item) {
851 | | }
851 | | }
| |_- in this expansion of `#[derive(Ord)]`
|
= note: required because of the requirements on the impl of `Ord` for `&ty::consts::Const<'_>`
Some errors have detailed explanations: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `rustc_middle` due to 8 previous errors
warning: build failed, waiting for other jobs to finish... |
Making TestObject [Context (Thread) Hashcode: 37460558]
Global [2021-11-11T20:47:17.8691440Z - [Instance: 6B37B561-49E6-432D-8DBB-D49364EEF978] [Context (DI) HashCode: 59487907] [Context (Thread) HashCode: 37460558]]
Making TestObject [Context (Thread) Hashcode: 37460558]
Exception thrown: 'System.InvalidOperationException' in AspNetDependencyInjection.dll
An exception of type 'System.InvalidOperationException' occurred in AspNetDependencyInjection.dll but was not handled in user code
The HttpContextBase has not been set for this Service Scope. |
Making TestObject [Context (Thread) Hashcode: 37460558]
Global [2021-11-11T20:47:17.8691440Z - [Instance: 6B37B561-49E6-432D-8DBB-D49364EEF978] [Context (DI) HashCode: 59487907] [Context (Thread) HashCode: 37460558]]
Making TestObject [Context (Thread) Hashcode: 37460558]
Exception thrown: 'System.InvalidOperationException' in AspNetDependencyInjection.dll
An exception of type 'System.InvalidOperationException' occurred in AspNetDependencyInjection.dll but was not handled in user code
The HttpContextBase has not been set for this Service Scope. |
[2021-11-11T09:54:58.565Z] Exception occurred:
[2021-11-11T09:54:58.565Z] File "<BASE>/venv/lib/python3.7/site-packages/sphinx/util/docstrings.py", line 75, in prepare_docstring
[2021-11-11T09:54:58.565Z] lines = s.expandtabs(tabsize).splitlines()
[2021-11-11T09:54:58.565Z] AttributeError: 'property' object has no attribute 'expandtabs' |
response: ◀
{"error":{"code":"ErrorItemNotFound","message":"The specified object was not found in the store.","innerError":{"date":"2021-11-16T09:51:35","request-id":"{request_id}","client-request-id":"{client_request_id}"}}} ◀ |
Client error: `PATCH https://graph.microsoft.com/v1.0/me/events/{id}` resulted in a `404 Not Found` response: ◀
{"error":{"code":"ErrorItemNotFound","message":"The specified object was not found in the store.","innerError":{"date":"2021-11-16T09:51:35","request-id":"{request_id}","client-request-id":"{client_request_id}"}}} ◀ |
def test_compact_twice(self):
"""
target: test compact twice
method: 1.create with shard_num=1
2.insert and flush twice (two segments)
3.compact
4.insert new data
5.compact
expected: Merge into one segment
"""
# init collection with one shard, insert into two segments
collection_w = self.collection_insert_two_segments_one_shard(prefix, tmp_nb)
# first compact two segments
collection_w.compact()
collection_w.wait_for_compaction_completed()
c_plans1 = collection_w.get_compaction_plans()[0]
log.debug(c_plans1.plans[0].target)
# insert new data
df = cf.gen_default_dataframe_data(tmp_nb)
collection_w.insert(df)
log.debug(collection_w.num_entities)
# second compact
collection_w.compact()
collection_w.wait_for_compaction_completed(timeout=50)
collection_w.get_compaction_state()
c_plans2 = collection_w.get_compaction_plans()[0]
[Truncated]
mic-compact-milvus-querynode-f58d584c9-cfbls 1/1 Running 0 5m6s
mic-compact-milvus-rootcoord-5866478f99-n2cv4 1/1 Running 0 5m2s
mic-compact-minio-0 1/1 Running 0 22h
mic-compact-minio-1 1/1 Running 0 22h
mic-compact-minio-2 1/1 Running 0 22h
mic-compact-minio-3 1/1 Running 0 22h
mic-compact-pulsar-bookie-0 1/1 Running 0 22h
mic-compact-pulsar-bookie-1 1/1 Running 0 22h
mic-compact-pulsar-bookie-init-l5sh2 0/1 Completed 0 22h
mic-compact-pulsar-broker-0 1/1 Running 0 22h
mic-compact-pulsar-broker-1 1/1 Running 0 22h
mic-compact-pulsar-proxy-0 1/1 Running 0 22h
mic-compact-pulsar-proxy-1 1/1 Running 0 22h
mic-compact-pulsar-pulsar-init-5psds 0/1 Completed 0 22h
mic-compact-pulsar-recovery-0 1/1 Running 0 22h
mic-compact-pulsar-toolset-0 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-0 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-1 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-2 1/1 Running 0 22h |
def test_compact_twice(self):
"""
target: test compact twice
method: 1.create with shard_num=1
2.insert and flush twice (two segments)
3.compact
4.insert new data
5.compact
expected: Merge into one segment
"""
# init collection with one shard, insert into two segments
collection_w = self.collection_insert_two_segments_one_shard(prefix, tmp_nb)
# first compact two segments
collection_w.compact()
collection_w.wait_for_compaction_completed()
c_plans1 = collection_w.get_compaction_plans()[0]
log.debug(c_plans1.plans[0].target)
# insert new data
df = cf.gen_default_dataframe_data(tmp_nb)
collection_w.insert(df)
log.debug(collection_w.num_entities)
# second compact
collection_w.compact()
collection_w.wait_for_compaction_completed(timeout=50)
collection_w.get_compaction_state()
c_plans2 = collection_w.get_compaction_plans()[0]
[Truncated]
mic-compact-milvus-querynode-f58d584c9-cfbls 1/1 Running 0 5m6s
mic-compact-milvus-rootcoord-5866478f99-n2cv4 1/1 Running 0 5m2s
mic-compact-minio-0 1/1 Running 0 22h
mic-compact-minio-1 1/1 Running 0 22h
mic-compact-minio-2 1/1 Running 0 22h
mic-compact-minio-3 1/1 Running 0 22h
mic-compact-pulsar-bookie-0 1/1 Running 0 22h
mic-compact-pulsar-bookie-1 1/1 Running 0 22h
mic-compact-pulsar-bookie-init-l5sh2 0/1 Completed 0 22h
mic-compact-pulsar-broker-0 1/1 Running 0 22h
mic-compact-pulsar-broker-1 1/1 Running 0 22h
mic-compact-pulsar-proxy-0 1/1 Running 0 22h
mic-compact-pulsar-proxy-1 1/1 Running 0 22h
mic-compact-pulsar-pulsar-init-5psds 0/1 Completed 0 22h
mic-compact-pulsar-recovery-0 1/1 Running 0 22h
mic-compact-pulsar-toolset-0 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-0 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-1 1/1 Running 0 22h
mic-compact-pulsar-zookeeper-2 1/1 Running 0 22h |
ValueError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_15568/3535513890.py in <module>
3 val_series=val_scaled,
4 val_future_covariates=covariates,
----> 5 verbose=True
6 )
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\utils\torch.py in decorator(self, *args, **kwargs)
63 with fork_rng():
64 manual_seed(self._random_instance.randint(0, high=MAX_TORCH_SEED_VALUE))
---> 65 return decorated(self, *args, **kwargs)
66 return decorator
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in fit(self, series, past_covariates, future_covariates, val_series, val_past_covariates, val_future_covariates, verbose, epochs)
427 logger.info('Train dataset contains {} samples.'.format(len(train_dataset)))
428
--> 429 self.fit_from_dataset(train_dataset, val_dataset, verbose, epochs)
430
431 @random_method
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\utils\torch.py in decorator(self, *args, **kwargs)
63 with fork_rng():
64 manual_seed(self._random_instance.randint(0, high=MAX_TORCH_SEED_VALUE))
---> 65 return decorated(self, *args, **kwargs)
66 return decorator
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in fit_from_dataset(self, train_dataset, val_dataset, verbose, epochs)
515
516 # Train model
--> 517 self._train(train_loader, val_loader, tb_writer, verbose, train_num_epochs)
518
519 # Close tensorboard writer
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in _train(self, train_loader, val_loader, tb_writer, verbose, epochs)
806 # if the param doesn't require gradient, then param.grad = None and param.grad.data will crash
807 if param.requires_grad:
--> 808 tb_writer.add_histogram(name + '/gradients', param.grad.data.cpu().numpy(), epoch)
809
810 tb_writer.add_scalar("training/loss", total_loss / (batch_idx + 1), epoch)
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\writer.py in add_histogram(self, tag, values, global_step, bins, walltime, max_bins)
427 bins = self.default_bins
428 self._get_file_writer().add_summary(
--> 429 histogram(tag, values, bins, max_bins=max_bins), global_step, walltime)
430
431 def add_histogram_raw(self, tag, min, max, num, sum, sum_squares,
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\summary.py in histogram(name, values, bins, max_bins)
298 """
299 values = make_np(values)
--> 300 hist = make_histogram(values.astype(float), bins, max_bins)
301 return Summary(value=[Summary.Value(tag=name, histo=hist)])
302
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\summary.py in make_histogram(values, bins, max_bins)
336
337 if counts.size == 0 or limits.size == 0:
--> 338 raise ValueError('The histogram is empty, please file a bug report.')
339
340 sum_sq = values.dot(values)
ValueError: The histogram is empty, please file a bug report. |
ValueError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_15568/3535513890.py in <module>
3 val_series=val_scaled,
4 val_future_covariates=covariates,
----> 5 verbose=True
6 )
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\utils\torch.py in decorator(self, *args, **kwargs)
63 with fork_rng():
64 manual_seed(self._random_instance.randint(0, high=MAX_TORCH_SEED_VALUE))
---> 65 return decorated(self, *args, **kwargs)
66 return decorator
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in fit(self, series, past_covariates, future_covariates, val_series, val_past_covariates, val_future_covariates, verbose, epochs)
427 logger.info('Train dataset contains {} samples.'.format(len(train_dataset)))
428
--> 429 self.fit_from_dataset(train_dataset, val_dataset, verbose, epochs)
430
431 @random_method
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\utils\torch.py in decorator(self, *args, **kwargs)
63 with fork_rng():
64 manual_seed(self._random_instance.randint(0, high=MAX_TORCH_SEED_VALUE))
---> 65 return decorated(self, *args, **kwargs)
66 return decorator
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in fit_from_dataset(self, train_dataset, val_dataset, verbose, epochs)
515
516 # Train model
--> 517 self._train(train_loader, val_loader, tb_writer, verbose, train_num_epochs)
518
519 # Close tensorboard writer
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\darts\models\forecasting\torch_forecasting_model.py in _train(self, train_loader, val_loader, tb_writer, verbose, epochs)
806 # if the param doesn't require gradient, then param.grad = None and param.grad.data will crash
807 if param.requires_grad:
--> 808 tb_writer.add_histogram(name + '/gradients', param.grad.data.cpu().numpy(), epoch)
809
810 tb_writer.add_scalar("training/loss", total_loss / (batch_idx + 1), epoch)
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\writer.py in add_histogram(self, tag, values, global_step, bins, walltime, max_bins)
427 bins = self.default_bins
428 self._get_file_writer().add_summary(
--> 429 histogram(tag, values, bins, max_bins=max_bins), global_step, walltime)
430
431 def add_histogram_raw(self, tag, min, max, num, sum, sum_squares,
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\summary.py in histogram(name, values, bins, max_bins)
298 """
299 values = make_np(values)
--> 300 hist = make_histogram(values.astype(float), bins, max_bins)
301 return Summary(value=[Summary.Value(tag=name, histo=hist)])
302
~\AppData\Local\Continuum\anaconda3\envs\darts_env\lib\site-packages\torch\utils\tensorboard\summary.py in make_histogram(values, bins, max_bins)
336
337 if counts.size == 0 or limits.size == 0:
--> 338 raise ValueError('The histogram is empty, please file a bug report.')
339
340 sum_sq = values.dot(values)
ValueError: The histogram is empty, please file a bug report. |
rust
fn compile_test(mut capture: Capture<Offline>, output: &Path) -> Result<(), Error> {
while let Ok(packet) = capture.next() {
let mut savefile = capture.savefile(output)?;
savefile.write(&packet);
savefile.flush()?;
}
Ok(())
} |
rust
fn compile_test(mut capture: Capture<Offline>, output: &Path) -> Result<(), Error> {
while let Ok(packet) = capture.next() {
let mut savefile = capture.savefile(output)?;
savefile.write(&packet);
savefile.flush()?;
}
Ok(())
} |
error[E0502]: cannot borrow `capture` as immutable because it is also borrowed as mutable
--> tests/lib.rs:347:32
|
346 | while let Ok(packet) = capture.next() {
| ------- mutable borrow occurs here
347 | let mut savefile = capture.savefile(output)?;
| ^^^^^^^ immutable borrow occurs here
348 | savefile.write(&packet);
| ------- mutable borrow later used here |
ERROR, test=Recommended.Proto2.JsonInput.FieldNameExtension.Validator: Expected JSON payload but got type 1. request=json_payload: "{\n \"[protobuf_test_messages.proto2.extension_int32]\": 1\n }" requested_output_format: JSON message_type: "protobuf_test_messages.proto2.TestAllTypesProto2" test_category: JSON_TEST, response=parse_error: "** (Protobuf.JSON.DecodeError) JSON encoding of \'proto2\' syntax is unsupported, try proto3" |
ERROR, test=Recommended.Proto2.JsonInput.FieldNameExtension.Validator: Expected JSON payload but got type 1. request=json_payload: "{\n \"[protobuf_test_messages.proto2.extension_int32]\": 1\n }" requested_output_format: JSON message_type: "protobuf_test_messages.proto2.TestAllTypesProto2" test_category: JSON_TEST, response=parse_error: "** (Protobuf.JSON.DecodeError) JSON encoding of \'proto2\' syntax is unsupported, try proto3" |
import React from "react";
import { OverflowList } from "@blueprintjs/core";
import { Example } from "./Example";
const items = [
"aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa"
];
export const CoreExample: React.FC = () => {
return (
<Example header="Crash">
<OverflowList
items={items}
visibleItemRenderer={(item) => item}
overflowRenderer={() => <div>overflow</div>}
/>
</Example>
);
}; |
import React from "react";
import { OverflowList } from "@blueprintjs/core";
import { Example } from "./Example";
const items = [
"aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa", "aaaaaaaa"
];
export const CoreExample: React.FC = () => {
return (
<Example header="Crash">
<OverflowList
items={items}
visibleItemRenderer={(item) => item}
overflowRenderer={() => <div>overflow</div>}
/>
</Example>
);
}; |
diff
diff --git a/pkg/node/node.go b/pkg/node/node.go
index 42e01af..b56f91f 100644
--- a/pkg/node/node.go
+++ b/pkg/node/node.go
@@ -571,7 +571,6 @@ func addTaint(node *corev1.Node, nth Node, taintKey string, taintValue string, e
refresh = true
continue
}
- return nil
}
_, err = client.CoreV1().Nodes().Update(context.TODO(), freshNode, metav1.UpdateOptions{})
if err != nil && errors.IsConflict(err) && time.Now().Before(retryDeadline) { |
diff
diff --git a/pkg/node/node.go b/pkg/node/node.go
index 42e01af..b56f91f 100644
--- a/pkg/node/node.go
+++ b/pkg/node/node.go
@@ -571,7 +571,6 @@ func addTaint(node *corev1.Node, nth Node, taintKey string, taintValue string, e
refresh = true
continue
}
- return nil
}
_, err = client.CoreV1().Nodes().Update(context.TODO(), freshNode, metav1.UpdateOptions{})
if err != nil && errors.IsConflict(err) && time.Now().Before(retryDeadline) { |
$ supervisorctl status
clamav_update FATAL Exited too quickly (process log may have details)
git_status_updater RUNNING pid 4657, uptime 0:00:48
rqscheduler RUNNING pid 12, uptime 0:08:47
rqworker_default:rqworker_default_0 RUNNING pid 4869, uptime 0:00:26
rqworker_default:rqworker_default_1 RUNNING pid 4578, uptime 0:00:56
rqworker_low RUNNING pid 598, uptime 0:08:05
runserver RUNNING pid 4947, uptime 0:00:17
ssh-agent RUNNING pid 8, uptime 0:08:47 |
$ supervisorctl status
clamav_update FATAL Exited too quickly (process log may have details)
git_status_updater RUNNING pid 4657, uptime 0:00:48
rqscheduler RUNNING pid 12, uptime 0:08:47
rqworker_default:rqworker_default_0 RUNNING pid 4869, uptime 0:00:26
rqworker_default:rqworker_default_1 RUNNING pid 4578, uptime 0:00:56
rqworker_low RUNNING pid 598, uptime 0:08:05
runserver RUNNING pid 4947, uptime 0:00:17
ssh-agent RUNNING pid 8, uptime 0:08:47 |
sh
{
"code": -32500,
"data": {
"args": [],
"command": "stream_cost_estimate",
"kwargs": {
"uri": "lbry://@xeroforhire#3/DLive-Stream-Dec-1#b"
},
"name": "KeyError",
"traceback": [
"Traceback (most recent call last):",
" File \"/opt/git/lbry-sdk/lbry/extras/daemon/daemon.py\", line 755, in _process_rpc_call",
" result = await result",
" File \"/opt/git/lbry-sdk/lbry/extras/daemon/daemon.py\", line 833, in get_est_cost_from_uri",
" claim_response = resolved[uri]",
"KeyError: 'lbry://@xeroforhire#3/DLive-Stream-Dec-1#b'",
""
]
},
"message": "'lbry://@xeroforhire#3/DLive-Stream-Dec-1#b'"
} |
sh
{
"code": -32500,
"data": {
"args": [],
"command": "stream_cost_estimate",
"kwargs": {
"uri": "lbry://@xeroforhire#3/DLive-Stream-Dec-1#b"
},
"name": "KeyError",
"traceback": [
"Traceback (most recent call last):",
" File \"/opt/git/lbry-sdk/lbry/extras/daemon/daemon.py\", line 755, in _process_rpc_call",
" result = await result",
" File \"/opt/git/lbry-sdk/lbry/extras/daemon/daemon.py\", line 833, in get_est_cost_from_uri",
" claim_response = resolved[uri]",
"KeyError: 'lbry://@xeroforhire#3/DLive-Stream-Dec-1#b'",
""
]
},
"message": "'lbry://@xeroforhire#3/DLive-Stream-Dec-1#b'"
} |
level=info msg="Waiting for IPs to become available in CRD-backed allocation pool" available=0 helpMessage="Check if cilium-operator pod is running and does not have any warnings or error messages." name=ip-172-21-83-242.eu-west-1.compute.internal required=8 subsys=ipam |
level=info msg="Waiting for IPs to become available in CRD-backed allocation pool" available=0 helpMessage="Check if cilium-operator pod is running and does not have any warnings or error messages." name=ip-172-21-83-242.eu-west-1.compute.internal required=8 subsys=ipam |
Error: node_modules/files-from-path/types/index.d.ts:72:8 - error TS1192: Module '"fs"' has
no default export.
72 import fs from "fs"; |
processors:
tail_sampling:
...
policies:
[
{<other-policy>},
{
name: and-policy,
type: and,
and: {
combined_policy:
[
{
name: probabilistic-policy,
type: probabilistic,
probabilistic: {sampling_percentage: 20}
},
{
name: status-policy,
type: status_code,
status_code: {status_codes: [ERROR, UNSET]}
}
]
}
]
|
processors:
tail_sampling:
...
policies:
[
{<other-policy>},
{
name: and-policy,
type: and,
and: {
combined_policy:
[
{
name: probabilistic-policy,
type: probabilistic,
probabilistic: {sampling_percentage: 20}
},
{
name: status-policy,
type: status_code,
status_code: {status_codes: [ERROR, UNSET]}
}
]
}
]
|
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index f055118..1bf3865 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#System_Data_Entity_Core_Common_CommandTrees_DbExpressionBinding_Variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#System_Data_Entity_Core_Common_CommandTrees_DbExpressionBinding_Variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index 98d4b55..25d313a 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#System_Data_Entity_Core_Common_CommandTrees_ExpressionBuilder_Row_ToExpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#System_Data_Entity_Core_Common_CommandTrees_ExpressionBuilder_Row_ToExpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index b792f95..b3d32db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_BeganTransaction_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_BeginTransactionInterceptionContext_\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_BeganTransaction_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_BeginTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index 8635d96..62c9bce 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Committed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Committed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 427c3a7..2101ce2 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Disposed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Disposed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index 280a12a..46b4171 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_RolledBack_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_RolledBack_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 566159f..425d07d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_ConnectionStringGetting_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_DbConnectionInterceptionContext_System_String__\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_ConnectionStringGetting_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_DbConnectionInterceptionContext_System_String__\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index 9bfb6d9..121e394 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
1<class Microsoft.Docs.Build.Error>)
3% | docfx!Microsoft.Docs.Build.ParallelUtility.ForEach(class Microsoft.Docs.Build.LogScope,class Microsoft.Docs.Build.ErrorBuilder,class System.Collections.Generic.IEnumerable |
2<class Markdig.Syntax.MarkdownObject,bool>)
3% | docfx!Microsoft.Docs.Build.PageBuilder.CreatePageOutput(class Microsoft.Docs.Build.ErrorBuilder,class Microsoft.Docs.Build.FilePath,class Newtonsoft.Json.Linq.JObject)
3% | docfx!Microsoft.Docs.Build.Builder+<>c__DisplayClass8_0.<Build>b__0(class Microsoft.Docs.Build.DocsetBuilder)
3% | docfx!Microsoft.Docs.Build.DocsetBuilder.Build(class System.String[])
3% | Microsoft.Graph.Core!Microsoft.Graph.HttpProvider+<SendRequestAsync>d__19.MoveNext()
3% | docfx!Microsoft.Docs.Build.ParallelUtility.ForEach(class Microsoft.Docs.Build.LogScope,class Microsoft.Docs.Build.ErrorBuilder,class System.Collections.Generic.IEnumerable |
1<!!0>)
3% | Markdig!Markdig.Renderers.RendererBase.WriteChildren(class Markdig.Syntax.ContainerBlock)
3% | docfx!Microsoft.Docs.Build.ErrorBuilder.AddRange(class System.Collections.Generic.IEnumerable |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.MarkdownEngine.GetImageLink(class System.String,class Markdig.Syntax.MarkdownObject,class System.String,class System.String)
3% | Microsoft.Graph.Core!Microsoft.Graph.HttpProvider+<SendAsync>d__18.MoveNext()
2% | docfx!Microsoft.Docs.Build.ErrorLog.Add(class Microsoft.Docs.Build.Error) |
1<class Microsoft.Docs.Build.Error>)
3% | docfx!Microsoft.Docs.Build.MarkdigUtility.Visit(class Markdig.Syntax.MarkdownObject,class System.Func |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.DocsetBuilder.Build(class System.String[])
3% | docfx!Microsoft.Docs.Build.ParallelUtility.ForEach(class Microsoft.Docs.Build.LogScope,class Microsoft.Docs.Build.ErrorBuilder,class System.Collections.Generic.IEnumerable |
1<!!0>)
3% | docfx!Microsoft.Docs.Build.ErrorLog.Add(class Microsoft.Docs.Build.Error)
3% | docfx!Microsoft.Docs.Build.ContentValidator.ValidateLink(class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.Watch |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
4% | Markdig!Markdig.Renderers.RendererBase.WriteChildren(class Markdig.Syntax.ContainerBlock)
4% | docfx!Microsoft.Docs.Build.ErrorBuilder.AddRange(class System.Collections.Generic.IEnumerable |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.ErrorLog.Add(class Microsoft.Docs.Build.Error)
3% | docfx!Microsoft.Docs.Build.Builder+<>c__DisplayClass8_0.<Build>b__0(class Microsoft.Docs.Build.DocsetBuilder)
3% | docfx!Microsoft.Docs.Build.ParallelUtility.ForEach(class Microsoft.Docs.Build.LogScope,class Microsoft.Docs.Build.ErrorBuilder,class System.Collections.Generic.IEnumerable |
1<!!0>)
3% | docfx!Microsoft.Docs.Build.DocsetBuilder.Build(class System.String[])
3% | docfx!Microsoft.Docs.Build.ContentValidator.ValidateLink(class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.PageBuilder.CreatePageOutput(class Microsoft.Docs.Build.ErrorBuilder,class Microsoft.Docs.Build.FilePath,class Newtonsoft.Json.Linq.JObject)
3% | docfx!Microsoft.Docs.Build.MarkdigUtility.Visit(class Markdig.Syntax.MarkdownObject,class System.Func |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.ErrorBuilder.AddRange(class System.Collections.Generic.IEnumerable |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
4% | docfx!Microsoft.Docs.Build.Watcher.Write(class System.Action)
3% | docfx!Microsoft.Docs.Build.Builder+<>c__DisplayClass8_0.<Build>b__0(class Microsoft.Docs.Build.DocsetBuilder)
3% | docfx!Microsoft.Docs.Build.ParallelUtility.ForEach(class Microsoft.Docs.Build.LogScope,class Microsoft.Docs.Build.ErrorBuilder,class System.Collections.Generic.IEnumerable |
1<class System.String>,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Build.FilePath,class Microsoft.Docs.Validation.LinkNode)
3% | docfx!Microsoft.Docs.Build.PageBuilder.CreatePageOutput(class Microsoft.Docs.Build.ErrorBuilder,class Microsoft.Docs.Build.FilePath,class Newtonsoft.Json.Linq.JObject)
3% | docfx!Microsoft.Docs.Build.MarkdownEngine.GetImageLink(class System.String,class Markdig.Syntax.MarkdownObject,class System.String,class System.String)
3% | docfx!Microsoft.Docs.Build.ErrorBuilder.AddRange(class System.Collections.Generic.IEnumerable |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index f055118..1bf3865 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#System_Data_Entity_Core_Common_CommandTrees_DbExpressionBinding_Variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#System_Data_Entity_Core_Common_CommandTrees_DbExpressionBinding_Variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index 98d4b55..25d313a 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#System_Data_Entity_Core_Common_CommandTrees_ExpressionBuilder_Row_ToExpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#System_Data_Entity_Core_Common_CommandTrees_ExpressionBuilder_Row_ToExpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index b792f95..b3d32db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_BeganTransaction_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_BeginTransactionInterceptionContext_\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_BeganTransaction_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_BeginTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index 8635d96..62c9bce 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Committed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Committed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 427c3a7..2101ce2 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Disposed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_Disposed_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index 280a12a..46b4171 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_RolledBack_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#System_Data_Entity_Infrastructure_Interception_IDbTransactionInterceptor_RolledBack_System_Data_Common_DbTransaction_System_Data_Entity_Infrastructure_Interception_DbTransactionInterceptionContext_\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 566159f..425d07d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_ConnectionStringGetting_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_DbConnectionInterceptionContext_System_String__\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#System_Data_Entity_Infrastructure_Interception_IDbConnectionInterceptor_ConnectionStringGetting_System_Data_Common_DbConnection_System_Data_Entity_Infrastructure_Interception_DbConnectionInterceptionContext_System_String__\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index 9bfb6d9..121e394 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index fc8c3a4..d40a20d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index f19dbf6..2f16d09 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index bb2e34f..649de23 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index fde9d7b..b39f07c 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 2c6211f..30530af 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index c764e3d..59a01aa 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 743f750..b35d0db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index fc9df6c..944e851 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index fc8c3a4..d40a20d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index f19dbf6..2f16d09 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index bb2e34f..649de23 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index fde9d7b..b39f07c 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 2c6211f..30530af 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index c764e3d..59a01aa 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 743f750..b35d0db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index fc9df6c..944e851 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index fc8c3a4..d40a20d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index f19dbf6..2f16d09 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index bb2e34f..649de23 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index fde9d7b..b39f07c 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 2c6211f..30530af 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index c764e3d..59a01aa 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 743f750..b35d0db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index fc9df6c..944e851 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index fc8c3a4..d40a20d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index f19dbf6..2f16d09 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index bb2e34f..649de23 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index fde9d7b..b39f07c 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 2c6211f..30530af 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index c764e3d..59a01aa 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 743f750..b35d0db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index fc9df6c..944e851 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.dryrun.azure-docs-pr\\output/.errors.log" "b/D:/docfx.TestData\\regression-test.dryrun.azure-docs-pr\\.temp/.errors.log"
index a965a3e..65b148f 100644
--- "a/D:/docfx.TestData\\regression-test.dryrun.azure-docs-pr\\output/.errors.log"
+++ "b/D:/docfx.TestData\\regression-test.dryrun.azure-docs-pr\\.temp/.errors.log"
@@ -1725064,6 +1725064,23 @@
"ms.topic": "quickstart",
"document_url": "https://review.docs.microsoft.com/en-us/help/contribute/validation-ref/ms-author-invalid?branch=main"
}
+{
+ "message_severity": "warning",
+ "code": "ms-author-invalid",
+ "message": "Invalid value for 'ms.author', 'anvang' is not a valid Microsoft alias.",
+ "file": "articles/synapse-analytics/sql-data-warehouse/quickstart-scale-compute-tsql.md",
+ "line": 11,
+ "end_line": 11,
+ "column": 12,
+ "end_column": 18,
+ "log_item_type": "user",
+ "property_path": "ms.author",
+ "ms.author": "anvang",
+ "ms.service": "synapse-analytics",
+ "ms.subservice": "sql-dw",
+ "ms.topic": "quickstart",
+ "document_url": "https://review.docs.microsoft.com/en-us/help/contribute/validation-ref/ms-author-invalid?branch=main"
+}
{
"message_severity": "warning",
"code": "ms-author-invalid", |
diff
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
index fc8c3a4..d40a20d 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.dbexpressionbinding.raw.page.json"
@@ -270,8 +270,8 @@ and <a href='system.data.entity.core.common.commandtrees.dbjoinexpression' data-
⬇
\t<h2 id=\"see-also\">See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" data-linktype=\"relative-path\">Variable</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpression\" class=\"no-loc\" data-linktype=\"relative-path\">DbExpression</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.dbexpressionbinding.variable#system-data-entity-core-common-commandtrees-dbexpressionbinding-variable\" class=\"no-loc\" data-linktype=\"relative-path\">Variable</a></li>⬇
</ul>⬇
",
"rawMetadata": {
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
index f19dbf6..2f16d09 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.core.common.commandtrees.expressionbuilder.row.op_implicit.raw.page.json"
@@ -124,7 +124,7 @@ is null.</p>⬇
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
+<li><a href=\"system.data.entity.core.common.commandtrees.expressionbuilder.row.toexpression#system-data-entity-core-common-commandtrees-expressionbuilder-row-toexpression\" class=\"no-loc\" data-linktype=\"relative-path\">ToExpression()</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
index bb2e34f..649de23 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.begantransaction.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.begantransaction#system-data-entity-infrastructure-interception-idbconnectioninterceptor-begantransaction(system-data-common-dbconnection-system-data-entity-infrastructure-interception-begintransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">BeganTransaction(DbConnection, BeginTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
index fde9d7b..b39f07c 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.committed.raw.page.json"
@@ -121,7 +121,7 @@ Otherwise marks the commit as succeeded and queues the transaction information t
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.committed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-committed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Committed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
index 2c6211f..30530af 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.disposed.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.disposed#system-data-entity-infrastructure-interception-idbtransactioninterceptor-disposed(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">Disposed(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
index c764e3d..59a01aa 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.commitfailurehandler.rolledback.raw.page.json"
@@ -120,7 +120,7 @@
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbtransactioninterceptor.rolledback#system-data-entity-infrastructure-interception-idbtransactioninterceptor-rolledback(system-data-common-dbtransaction-system-data-entity-infrastructure-interception-dbtransactioninterceptioncontext)\" class=\"no-loc\" data-linktype=\"relative-path\">RolledBack(DbTransaction, DbTransactionInterceptionContext)</a></li>⬇
[Truncated]
index 743f750..b35d0db 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
+++ "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgetting.raw.page.json"
@@ -129,7 +129,7 @@ override this.ConnectionStringGetting : System.Data.Common.DbConnection * System
⬇
\t<h2>See also</h2>⬇
\t<ul>⬇
-<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
+<li><a href=\"system.data.entity.infrastructure.interception.idbconnectioninterceptor.connectionstringgetting#system-data-entity-infrastructure-interception-idbconnectioninterceptor-connectionstringgetting(system-data-common-dbconnection-system-data-entity-infrastructure-interception-dbconnectioninterceptioncontext((system-string)))\" class=\"no-loc\" data-linktype=\"relative-path\">ConnectionStringGetting(DbConnection, DbConnectionInterceptionContext<String>)</a></li>⬇
</ul>⬇
⬇
</div>⬇
diff --git "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" "b/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\.temp/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json"
index fc9df6c..944e851 100644
--- "a/D:/docfx.TestData\\regression-test.EntityFramework.ApiDocs\\output/EF/dotnet/920d4df8a00e30da42d0bf162356c0dc/api/system.data.entity.infrastructure.transactionhandler.connectionstringgot.raw.page.json" |
diff
diff --git "a/D:/docfx.TestData\\regression-test.microsoft-365-docs-pr.zh-CN\\output/.errors.log" "b/D:/docfx.TestData\\regression-test.microsoft-365-docs-pr.zh-CN\\.temp/.errors.log"
index dfcb728..526000d 100644
--- "a/D:/docfx.TestData\\regression-test.microsoft-365-docs-pr.zh-CN\\output/.errors.log"
+++ "b/D:/docfx.TestData\\regression-test.microsoft-365-docs-pr.zh-CN\\.temp/.errors.log"
@@ -1,7 +1,7 @@
{
"message_severity": "info",
"code": "MetadataValidationRuleset",
- "message": "Metadata validation ruleset used: _localization_. Document url: ",
+ "message": "Metadata validation ruleset used: MARVEL. Document url: https://review.docs.microsoft.com/en-us/help/contribute/validation-ref/rulesets?branch=master#marvel",
"line": 0,
"end_line": 0,
"column": 0, |
bash
$ ./jsish/jsish poc.js
ASAN:DEADLYSIGNAL
=================================================================
==119220==ERROR: AddressSanitizer: SEGV on unknown address 0x603f80019c20 (pc 0x7f2d155e4507 bp 0x000000000000 sp 0x7ffd01763808 T0)
==119220==The signal is caused by a READ memory access.
#0 0x7f2d155e4506 (/lib/x86_64-linux-gnu/libc.so.6+0x18e506)
#1 0x7f2d15557743 in regexec (/lib/x86_64-linux-gnu/libc.so.6+0x101743)
#2 0x562082528c68 in jsi_RegExpMatches src/jsiRegexp.c:235
#3 0x56208252a51b in RegexpExecCmd src/jsiRegexp.c:323
#4 0x562082585818 in jsi_FuncCallSub src/jsiProto.c:244
#5 0x56208284f71a in jsiFunctionSubCall src/jsiEval.c:796
#6 0x56208284f71a in jsiEvalFunction src/jsiEval.c:837
#7 0x56208284f71a in jsiEvalCodeSub src/jsiEval.c:1264
#8 0x56208286315e in jsi_evalcode src/jsiEval.c:2204
#9 0x562082867274 in jsi_evalStrFile src/jsiEval.c:2665
#10 0x56208255666a in Jsi_Main src/jsiInterp.c:936
#11 0x562082d5b03a in jsi_main src/main.c:47
#12 0x7f2d15477bf6 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21bf6)
#13 0x5620824ea969 in _start (/usr/local/bin/jsish+0xe8969)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV (/lib/x86_64-linux-gnu/libc.so.6+0x18e506) |
bash
$ ./jsish/jsish poc.js
ASAN:DEADLYSIGNAL
=================================================================
==119220==ERROR: AddressSanitizer: SEGV on unknown address 0x603f80019c20 (pc 0x7f2d155e4507 bp 0x000000000000 sp 0x7ffd01763808 T0)
==119220==The signal is caused by a READ memory access.
#0 0x7f2d155e4506 (/lib/x86_64-linux-gnu/libc.so.6+0x18e506)
#1 0x7f2d15557743 in regexec (/lib/x86_64-linux-gnu/libc.so.6+0x101743)
#2 0x562082528c68 in jsi_RegExpMatches src/jsiRegexp.c:235
#3 0x56208252a51b in RegexpExecCmd src/jsiRegexp.c:323
#4 0x562082585818 in jsi_FuncCallSub src/jsiProto.c:244
#5 0x56208284f71a in jsiFunctionSubCall src/jsiEval.c:796
#6 0x56208284f71a in jsiEvalFunction src/jsiEval.c:837
#7 0x56208284f71a in jsiEvalCodeSub src/jsiEval.c:1264
#8 0x56208286315e in jsi_evalcode src/jsiEval.c:2204
#9 0x562082867274 in jsi_evalStrFile src/jsiEval.c:2665
#10 0x56208255666a in Jsi_Main src/jsiInterp.c:936
#11 0x562082d5b03a in jsi_main src/main.c:47
#12 0x7f2d15477bf6 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21bf6)
#13 0x5620824ea969 in _start (/usr/local/bin/jsish+0xe8969)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV (/lib/x86_64-linux-gnu/libc.so.6+0x18e506) |
anchor build
BPF SDK: /home/basementwolfe/.local/share/solana/install/releases/1.7.11/solana-release/bin/sdk/bpf
Running: rustup toolchain list -v
Running: cargo +bpf build --target bpfel-unknown-unknown --release
error: failed to download |
export type Milliseconds = number;
export type Days = number;
export type CognitoId = string;
export type UUID = string;
export enum Zone {
PZ1 = 1,
SZ2,
SZ3,
}
export interface TestItem {
userId: CognitoId;
locationId: UUID;
room: string | Partial<Record<Zone, string>>;
timeout: Milliseconds;
days: Days;
} |
/*
* Generated type guards for "test.ts".
* WARNING: Do not manually change this file.
*/
import { isMilliseconds, isCognitoId } from "../index.guard";
import { Milliseconds, Days, CognitoId, UUID, Zone, TestItem } from "./test";
export function isMilliseconds(obj: any, _argumentName?: string): obj is Milliseconds {
return (
typeof obj === "number"
)
}
export function isDays(obj: any, _argumentName?: string): obj is Days {
return (
typeof obj === "number"
)
}
export function isCognitoId(obj: any, _argumentName?: string): obj is CognitoId {
return (
typeof obj === "string"
)
}
export function isUUID(obj: any, _argumentName?: string): obj is UUID {
return (
typeof obj === "string"
)
}
export function isZone(obj: any, _argumentName?: string): obj is Zone {
return (
(obj === Zone.PZ1 ||
obj === Zone.SZ2 ||
obj === Zone.SZ3)
)
}
export function isTestItem(obj: any, _argumentName?: string): obj is TestItem {
return (
(obj !== null &&
typeof obj === "object" ||
typeof obj === "function") &&
isCognitoId(obj.userId) as boolean &&
isCognitoId(obj.locationId) as boolean &&
(obj.room !== null &&
typeof obj.room === "object" ||
typeof obj.room === "function") &&
(typeof obj.room.1 === "undefined" ||
isCognitoId(obj.room.1) as boolean) &&
(typeof obj.room.2 === "undefined" ||
isCognitoId(obj.room.2) as boolean) &&
(typeof obj.room.3 === "undefined" ||
isCognitoId(obj.room.3) as boolean) &&
isMilliseconds(obj.timeout) as boolean &&
isMilliseconds(obj.days) as boolean
)
} |
export type Milliseconds = number;
export type Days = number;
export type CognitoId = string;
export type UUID = string;
export enum Zone {
PZ1 = 1,
SZ2,
SZ3,
}
export interface TestItem {
userId: CognitoId;
locationId: UUID;
room: string | Partial<Record<Zone, string>>;
timeout: Milliseconds;
days: Days;
} |
/*
* Generated type guards for "test.ts".
* WARNING: Do not manually change this file.
*/
import { isMilliseconds, isCognitoId } from "../index.guard";
import { Milliseconds, Days, CognitoId, UUID, Zone, TestItem } from "./test";
export function isMilliseconds(obj: any, _argumentName?: string): obj is Milliseconds {
return (
typeof obj === "number"
)
}
export function isDays(obj: any, _argumentName?: string): obj is Days {
return (
typeof obj === "number"
)
}
export function isCognitoId(obj: any, _argumentName?: string): obj is CognitoId {
return (
typeof obj === "string"
)
}
export function isUUID(obj: any, _argumentName?: string): obj is UUID {
return (
typeof obj === "string"
)
}
export function isZone(obj: any, _argumentName?: string): obj is Zone {
return (
(obj === Zone.PZ1 ||
obj === Zone.SZ2 ||
obj === Zone.SZ3)
)
}
export function isTestItem(obj: any, _argumentName?: string): obj is TestItem {
return (
(obj !== null &&
typeof obj === "object" ||
typeof obj === "function") &&
isCognitoId(obj.userId) as boolean &&
isCognitoId(obj.locationId) as boolean &&
(obj.room !== null &&
typeof obj.room === "object" ||
typeof obj.room === "function") &&
(typeof obj.room.1 === "undefined" ||
isCognitoId(obj.room.1) as boolean) &&
(typeof obj.room.2 === "undefined" ||
isCognitoId(obj.room.2) as boolean) &&
(typeof obj.room.3 === "undefined" ||
isCognitoId(obj.room.3) as boolean) &&
isMilliseconds(obj.timeout) as boolean &&
isMilliseconds(obj.days) as boolean
)
} |
compatible. Here is an [example that illustrates the issue](https://codesandbox.io/s/node-redis-typescript-fhzck).
The following does not compile unless someone knows how to type |
See https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBFApgE2AZwDRwN5wEoroDCANsIgHYwAqAnmInAL5wBmUEIcA5EqmtwBQAQzS0KAYzYBXSTGAQKcCUmExEBfqXJUAFAEoAXHAAKHEOkQAeTcTKUa9RAD4cguB+WK08CfapwALwIhGgAdCqIaojaDgbunjBOyv6ODEFwSQwQrCk6MAkeWYwA4ogwAMoqwGBp1kRwiAAe6hTIaPihsVR0DFbCFLRYA7TOrsENza3tnVqpvdYjWMAUrIhQcNSuAPybcMayANYUEADuFADchZnJaNW1Cxlllfd1Vn75C87XAPQ-nh4AHrba7CU7CYC+VIRRQURASGDxAFIGDSKBKD4OQRMIA
The issue here is that the script type returned by |