1 write to _sources
Microsoft.ML.Data (1)
DataView\AppendRowsDataView.cs (1)
77_sources = sources;
11 references to _sources
Microsoft.ML.Data (11)
DataView\AppendRowsDataView.cs (11)
78Schema = schema ?? _sources[0].Schema; 83_counts = new int[_sources.Length]; 84for (int i = 0; i < _sources.Length; i++) 86IDataView dv = _sources[i]; 109int startingSchemaIndex = Schema == _sources[0].Schema ? 1 : 0; 113_host.Check(_sources.All(source => source.Schema.Count == colCount), errMsg); 120for (int i = startingSchemaIndex; i < _sources.Length; i++) 122var schema = _sources[i].Schema; 132foreach (var source in _sources) 174Sources = parent._sources; 325_cursorSet[i] = parent._sources[i].GetRowCursor(columnsNeeded, RandomUtils.Create(_rand));