Home
last modified time | relevance | path

Searched refs:del_dep (Results 1 – 6 of 6) sorted by relevance

/dports/devel/rebar3/rebar3-3.17.0/src/
H A Drebar_opts.erl168 del_dep(OldValue, [Value]) when is_atom(Value) -> function
170 del_dep(NewValue, OldValue, [Value]);
171 del_dep(OldValue, [{Value, _Version, _Source}]) -> function
173 del_dep(NewValue, OldValue, [{Value, _Version, _Source}]);
174 del_dep(OldValue, [Value]) -> function
175 del_dep(OldValue, OldValue, [Value]);
176 del_dep(OldValue, [Value|Values]) -> function
177 NewValue = del_dep(del_dep(OldValue, [Value]), OldValue, [Value]),
178 del_dep(NewValue, Values).
183 del_dep(OldValue, OldValue, Value) -> function
[all …]
/dports/devel/R-cran-desc/desc/tests/testthat/
H A Dtest-deps.R108 desc$del_dep("igraph")
123 desc$del_dep("igraph", type = "Imports")
149 desc$del_dep("foobar", "Imports")
/dports/devel/R-cran-desc/desc/
H A DNEWS.md127 * Fix but in `del_dep()` and `has_dep()`, they only worked if the package
/dports/devel/R-cran-desc/desc/R/
H A Ddescription.R550 del_dep = function(package, type = c("all", desc::dep_types)) method in description
/dports/devel/R-cran-desc/desc/man/
H A Ddescription.Rd233 description$del_dep(package, type = c("all", dep_types))
240 \code{$del_dep} it may also be \code{"all"}, and then the package
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libpijul-1.0.0-alpha.49/src/unrecord/
H A Dmod.rs71 while txn.del_dep(&change_id, None)? {} in unrecord()