1 write to _ectx
Microsoft.ML.Core (1)
Data\Repository.cs (1)
111
_ectx
= ectx;
16 references to _ectx
Microsoft.ML.Core (16)
Data\Repository.cs (16)
104
public IExceptionContext ExceptionContext =>
_ectx
;
151
_ectx
.Assert(!Disposed);
160
_ectx
.Assert(false, "Closing entries should not throw!");
205
_ectx
.Assert(false, "Why wasn't the entry found?");
236
_ectx
.Assert(!Disposed);
237
_ectx
.CheckValueOrNull(dir);
238
_ectx
.CheckParam(dir == null || !dir.Contains(".."), nameof(dir));
239
_ectx
.CheckParam(!string.IsNullOrWhiteSpace(name), nameof(name));
240
_ectx
.CheckParam(!name.Contains(".."), nameof(name));
251
_ectx
.Check(parent != null);
252
_ectx
.Check(parent.StartsWith(root));
255
_ectx
.Check(entityPath.Length > ichSplit && entityPath[ichSplit] == Path.DirectorySeparatorChar);
262
_ectx
.Check(Utils.Size(pathEnt) > 0);
263
_ectx
.Check(entityPath == Path.Combine(root, pathEnt));
274
_ectx
.Assert(!Disposed);
275
_ectx
.AssertValue(stream);