Home
last modified time | relevance | path

Searched refs:keep_index (Results 1 – 25 of 34) sorted by relevance

12

/dports/biology/vcftools/vcftools-0.1.16/src/cpp/
H A Dvariant_file_filters.cpp118 vector<unsigned int> keep_index(N_kept_indv); in filter_individuals_randomly() local
124 keep_index[count] = ui; in filter_individuals_randomly()
129 random_shuffle(keep_index.begin(), keep_index.end()); // Get a random order in filter_individuals_randomly()
130 keep_index.resize(min(max_N_indv, (signed)keep_index.size())); // Only keep a subset in filter_individuals_randomly()
137 for (unsigned int uj=0; uj<keep_index.size(); uj++) in filter_individuals_randomly()
139 if (keep_index[uj] == ui) in filter_individuals_randomly()
/dports/devel/git-cola/git-cola-3.10.1/cola/widgets/
H A Dstash.py70 self.keep_index = qtutils.checkbox(
92 self.keep_index,
128 qtutils.connect_checkbox(self.keep_index, self.keep_index_clicked)
143 self.keep_index.setChecked(False)
174 self.keep_index.setEnabled(is_changed)
215 index = get(self.keep_index)
240 keep_index = get(self.keep_index)
245 cmds.do(stash.SaveStash, context, stash_name, keep_index)
270 state['keep_index'] = get(self.keep_index)
278 keep_index = bool(state.get('keep_index', True))
[all …]
/dports/devel/anjuta/anjuta-3.34.0/plugins/git/
H A Dgit-stash-save-command.c24 gboolean keep_index; member
59 if (self->priv->keep_index) in git_stash_save_command_run()
83 gboolean keep_index, const gchar *message) in git_stash_save_command_new() argument
92 self->priv->keep_index = keep_index; in git_stash_save_command_new()
H A Dgit-stash-save-command.h53 gboolean keep_index,
/dports/devel/R-cran-gert/gert/R/
H A Dstash.R18 git_stash_save <- function(message = "", keep_index = FALSE, include_untracked = FALSE, argument
21 keep_index <- as.logical(keep_index)
24 .Call(R_git_stash_save, repo, message, keep_index, include_untracked, include_ignored)
/dports/devel/gitui/gitui-0.10.1/src/tabs/
H A Dstashing.rs29 pub keep_index: bool, field
62 keep_index: false, in new()
123 if self.options.keep_index { in get_option_text()
224 self.options.keep_index = in event()
225 !self.options.keep_index; in event()
/dports/news/golded+/golded-plus/golded+/goldlib/gmb3/
H A Dgmosmb2.cpp34 void SMBArea::raw_scan(bool keep_index, bool scanpm) in raw_scan() argument
60 if(keep_index or scanpm) { in raw_scan()
74 if(keep_index) in raw_scan()
H A Dgmosmb.h49 void raw_scan(bool keep_index=false, bool scanpm=false);
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/base/tests/
H A Dtest_generic_methods.py95 keep_index = list(range(self.results.model.exog.shape[1]))
100 del keep_index[i]
104 res1 = self.results.model._fit_zeros(keep_index, maxiter=500,
107 res1 = self.results.model._fit_zeros(keep_index, maxiter=500)
109 res2 = self._get_constrained(keep_index, keep_index_p)
142 predicted2 = res2.predict(ex[keep_index], **self.predict_kwds)
150 def _get_constrained(self, keep_index, keep_index_p): argument
171 keep_index = list(range(self.results.model.exog.shape[1]))
176 del keep_index[i]
188 keep_index = list(range(self.results.model.exog.shape[1]))
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/base/
H A Dmodel.py611 def _fit_zeros(self, keep_index=None, start_params=None, argument
649 keep_index = np.array(keep_index, copy=True)
654 keep_index_p = keep_index
668 keep_index = keep_index_p
675 params_full[keep_index] = res_constr.params
719 keep_index = np.array(keep_index)
720 res._results.normalized_cov_params[keep_index[:, None], keep_index] = \
725 res._results.cov_params_default[keep_index[:, None], keep_index] = \
731 res._results.keep_index = keep_index
747 cov[keep_index[:, None], keep_index] = res_constr.bcov_scaled
[all …]
H A D_penalized.py220 keep_index = np.nonzero(np.abs(res.params) > trim)[0]
224 res_aux = self._fit_zeros(keep_index, **kwds)
/dports/devel/allegro5/allegro5-5.2.7.0/addons/image/
H A Dpcx.c23 bool keep_index; in _al_load_pcx_f() local
72 keep_index = INT_TO_BOOL(flags & ALLEGRO_KEEP_INDEX); in _al_load_pcx_f()
87 if (bpp == 8 && keep_index) { in _al_load_pcx_f()
156 if (keep_index) { in _al_load_pcx_f()
/dports/devel/git-cola/git-cola-3.10.1/cola/models/
H A Dstash.py96 def __init__(self, context, stash_name, keep_index): argument
99 self.keep_index = keep_index
102 if self.keep_index:
/dports/devel/R-cran-gert/gert/src/
H A Dstash.c4 SEXP R_git_stash_save(SEXP ptr, SEXP message, SEXP keep_index, in R_git_stash_save() argument
12 flags += Rf_asLogical(keep_index) * GIT_STASH_KEEP_INDEX; in R_git_stash_save()
/dports/devel/R-cran-gert/gert/man/
H A Dgit_stash.Rd13 keep_index = FALSE,
28 \item{keep_index}{changes already added to the index are left intact in
/dports/devel/cgit/cgit-1.2.3/git/builtin/
H A Dstash.c1266 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1274 if (patch_mode && keep_index == -1) in do_push_stash()
1275 keep_index = 1; in do_push_stash()
1402 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1432 if (keep_index < 1) { in do_push_stash()
1453 int keep_index = -1; in push_stash() local
1460 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1481 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1487 int keep_index = -1; in save_stash() local
1496 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/mail/p5-Mail-Box/Mail-Box-3.009/t/
H A D113mh-create.t127 , keep_index => 1
168 , keep_index => 1
H A D112mh-append.t76 , keep_index => 1
/dports/devel/git-svn/git-2.34.1/builtin/
H A Dstash.c1408 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1416 if (patch_mode && keep_index == -1) in do_push_stash()
1417 keep_index = 1; in do_push_stash()
1547 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1577 if (keep_index < 1) { in do_push_stash()
1600 int keep_index = -1; in push_stash() local
1609 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1659 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1665 int keep_index = -1; in save_stash() local
1674 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/devel/git-gui/git-2.34.1/builtin/
H A Dstash.c1408 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1416 if (patch_mode && keep_index == -1) in do_push_stash()
1417 keep_index = 1; in do_push_stash()
1547 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1577 if (keep_index < 1) { in do_push_stash()
1600 int keep_index = -1; in push_stash() local
1609 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1659 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1665 int keep_index = -1; in save_stash() local
1674 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/devel/git-p4/git-2.34.1/builtin/
H A Dstash.c1408 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1416 if (patch_mode && keep_index == -1) in do_push_stash()
1417 keep_index = 1; in do_push_stash()
1547 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1577 if (keep_index < 1) { in do_push_stash()
1600 int keep_index = -1; in push_stash() local
1609 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1659 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1665 int keep_index = -1; in save_stash() local
1674 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/devel/git/git-2.34.1/builtin/
H A Dstash.c1408 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1416 if (patch_mode && keep_index == -1) in do_push_stash()
1417 keep_index = 1; in do_push_stash()
1547 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1577 if (keep_index < 1) { in do_push_stash()
1600 int keep_index = -1; in push_stash() local
1609 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1659 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1665 int keep_index = -1; in save_stash() local
1674 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/devel/git-cvs/git-2.34.1/builtin/
H A Dstash.c1408 int keep_index, int patch_mode, int include_untracked) in do_push_stash() argument
1416 if (patch_mode && keep_index == -1) in do_push_stash()
1417 keep_index = 1; in do_push_stash()
1547 if (keep_index == 1 && !is_null_oid(&info.i_tree)) { in do_push_stash()
1577 if (keep_index < 1) { in do_push_stash()
1600 int keep_index = -1; in push_stash() local
1609 OPT_BOOL('k', "keep-index", &keep_index, in push_stash()
1659 return do_push_stash(&ps, stash_msg, quiet, keep_index, patch_mode, in push_stash()
1665 int keep_index = -1; in save_stash() local
1674 OPT_BOOL('k', "keep-index", &keep_index, in save_stash()
[all …]
/dports/devel/gitui/gitui-0.10.1/asyncgit/src/sync/
H A Dstash.rs85 keep_index: bool, in stash_save()
98 if keep_index { in stash_save()
/dports/devel/cgit/cgit-1.2.3/git/
H A Dgit-legacy-stash.sh293 test -z "$keep_index" && keep_index=t

12