Home
last modified time | relevance | path

Searched refs:idx_diff (Results 1 – 9 of 9) sorted by relevance

/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/timedeltas/
H A Dtest_setops.py221 idx_diff = index.difference(other, sort)
222 tm.assert_index_equal(idx_diff, expected)
223 tm.assert_attr_equal("freq", idx_diff, expected)
226 idx_diff = index.difference(other, sort)
228 tm.assert_index_equal(idx_diff, expected)
229 tm.assert_attr_equal("freq", idx_diff, expected)
238 idx_diff = index.difference(other, sort)
245 tm.assert_index_equal(idx_diff, expected)
246 tm.assert_attr_equal("freq", idx_diff, expected)
249 idx_diff = index.difference(other, sort)
[all …]
/dports/www/carbonapi/carbonapi-0.14.1/vendor/github.com/mjibson/go-dsp/fft/
H A Dradix2.go97 idx_diff := lx / num_workers
98 if idx_diff < 2 {
99 idx_diff = 2
136 if end-start >= idx_diff || end == lx {
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/period/
H A Dtest_setops.py333 idx_diff = index.difference(other, sort)
334 tm.assert_index_equal(idx_diff, expected)
335 tm.assert_attr_equal("freq", idx_diff, expected)
338 idx_diff = index.difference(other, sort)
340 tm.assert_index_equal(idx_diff, expected)
341 tm.assert_attr_equal("freq", idx_diff, expected)
/dports/math/faiss/faiss-1.7.1/faiss/gpu/test/
H A Dtest_gpu_index_ivfsq.py121 idx_diff = order_d1[0] - order_d2[0]
123 if idx_diff not in idx_diffs:
124 idx_diffs[idx_diff] = 1
126 idx_diffs[idx_diff] += 1
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/
H A Dtest_setops.py339 idx_diff = index.difference(other, sort)
340 tm.assert_index_equal(idx_diff, expected)
341 tm.assert_attr_equal("freq", idx_diff, expected)
344 idx_diff = index.difference(other, sort)
346 tm.assert_index_equal(idx_diff, expected)
347 tm.assert_attr_equal("freq", idx_diff, expected)
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/reshape/concat/
H A Dtest_append.py227 idx_diff = ser.index.difference(df_columns)
228 combined_columns = Index(df_columns.tolist()).append(idx_diff)
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/src/game/TileEngine/
H A DTileDat.cc659 INT16 const idx_diff = database_elem - gTileTypeStartIndex[type]; in SetSpecificDatabaseValues() local
660 switch (idx_diff % 3) in SetSpecificDatabaseValues()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/innobase/trx/
H A Dtrx0rec.cc989 lob_index_diff_t idx_diff; in trx_undo_read_blob_update() local
992 idx_diff.m_modifier_trxid = mach_read_next_compressed(&undo_ptr); in trx_undo_read_blob_update()
995 idx_diff.m_modifier_undo_no = mach_read_next_compressed(&undo_ptr); in trx_undo_read_blob_update()
997 lob_diff.m_idx_diffs->push_back(idx_diff); in trx_undo_read_blob_update()
/dports/math/py-pandas/pandas-1.2.5/pandas/core/
H A Dframe.py7954 idx_diff = other.index.difference(self.columns)
7956 combined_columns = self.columns.append(idx_diff)
7958 combined_columns = self.columns.astype(object).append(idx_diff)
8618 idx_diff = result_index.difference(correl.index)
8620 if len(idx_diff) > 0:
8621 correl = correl.append(Series([np.nan] * len(idx_diff), index=idx_diff))