Home
last modified time | relevance | path

Searched refs:is_excluded (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/gitignore-1.0.7/src/
H A Dpattern.rs59 pub fn is_excluded(&self, path: &Path, directory: bool) -> bool { in is_excluded() method
169 assert!(gip.is_excluded(Path::new("foo"), false)); in test_matches_simple()
176 assert!(gip.is_excluded(Path::new("bar.foo"), false)); in test_matches_unanchored_on_wildcard()
183 assert!(!gip.is_excluded(Path::new("foo"), false)); in test_matches_negated()
190 assert!(gip.is_excluded(Path::new("lux/bar.foo"), false)); in test_matches_unanchored_on_nested_file()
197 assert!(gip.is_excluded(Path::new("lux/bar/foo"), false)); in test_matches_unanchored_on_nested_dir()
218 assert!(gip.is_excluded(Path::new("foo"), true)); in test_matches_directory_on_directory()
225 assert!(!gip.is_excluded(Path::new("foo"), false)); in test_matches_directory_on_file()
231 assert!(gip.is_excluded(Path::new("foo/bar"), true)); in test_double_star_matches_nested_dir()
237 assert!(!gip.is_excluded(Path::new("foo/bar"), true)); in test_negate_double_star_matches_nested_dir()
[all …]
H A Dfile.rs45 pub fn is_excluded(&self, path: &'b Path) -> Result<bool, error::Error> { in is_excluded() method
94 let matches = pattern.is_excluded(&abs_path, directory); in file_is_excluded()
153 assert!(!file.is_excluded(path.as_path()).unwrap()); in test_new_file_with_empty()
163 assert!(file.is_excluded(path.as_path()).unwrap()); in test_new_file_with_unanchored_wildcard()
173 assert!(file.is_excluded(path.as_path()).unwrap()); in test_new_file_with_anchored()
247 file.is_excluded(path).unwrap(); in bench_file_match()
/dports/textproc/pdfgrep/pdfgrep-2.1.1/src/
H A Dexclude.cc34 bool is_excluded(const ExcludeList &list, const char *name) in is_excluded() function
47 bool is_excluded(const ExcludeList &list, const string &name) in is_excluded() function
49 return is_excluded(list, name.c_str()); in is_excluded()
H A Dexclude.h30 bool is_excluded(const ExcludeList &list, const char *name);
31 bool is_excluded(const ExcludeList &list, const std::string &name);
/dports/science/py-MDAnalysisTests/MDAnalysisTests-0.19.2/MDAnalysisTests/utils/
H A Dtest_imports.py36 def is_excluded(path): function
44 if is_excluded(dirpath):
48 if is_excluded(fpath):
/dports/sysutils/rcm/rcm-1.3.4/bin/
H A Dlsrc144 elif is_excluded "$dotfiles_subdir/$file" "$exclude_file_globs" "$include_file_globs"; then
146 …elif [ -d "$file" ] && is_excluded "$dotfiles_subdir/$file" "$symlink_dirs_file_globs" "$mk_dirs_f…
187 is_excluded() {
355 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
373 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
391 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
H A Dlsrc.in144 elif is_excluded "$dotfiles_subdir/$file" "$exclude_file_globs" "$include_file_globs"; then
146 …elif [ -d "$file" ] && is_excluded "$dotfiles_subdir/$file" "$symlink_dirs_file_globs" "$mk_dirs_f…
187 is_excluded() {
355 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
373 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
391 if is_excluded "$file" "$undotted_file_globs" "$never_undotted_file_globs"; then
/dports/devel/py-pydantic/pydantic-1.8.2/tests/
H A Dtest_utils.py126 assert vi.is_excluded(2)
127 assert [v_ for i, v_ in enumerate(v) if not vi.is_excluded(i)] == ['b']
136 assert not vi.is_excluded('a')
138 assert not vi.is_excluded('c')
144 excluded = {k_: v_ for k_, v_ in v2.items() if not vi.is_excluded(k_)}
154 assert sub_vi.is_excluded(2)
155 assert [v_ for i, v_ in enumerate(sub_v) if not sub_vi.is_excluded(i)] == ['b']
/dports/devel/p5-Role-Basic/Role-Basic-0.13/lib/Role/
H A DBasic.pm257 my ( $is_excluded, $aliases ) =
263 if ( exists $code_for->{$new_method} && !$is_excluded->{$new_method} ) {
283 if ( $is_excluded->{$method} ) {
321 my %is_excluded = map { $_ => 1 } @$excludes;
324 $is_excluded{$old_method} = 1;
344 return ( \%is_excluded, $aliases );
/dports/devel/cssc/CSSC-1.4.1/src/
H A Dsf-get.cc122 ASSERT(state.is_excluded(s)); in prepare_seqstate_1()
155 ASSERT(!state.is_excluded(s)); in prepare_seqstate_1()
187 bool bExcluded = state.is_excluded(seq); in prepare_seqstate_1()
241 if (!state.is_excluded(s)) in prepare_seqstate_1()
279 ASSERT(state.is_excluded(s)); in prepare_seqstate_1()
/dports/lang/python39/Python-3.9.9/Tools/c-analyzer/cpython/
H A Dfiles.py19 def is_excluded(filename): function
27 if is_excluded(filename):
/dports/sysutils/cdrkit/cdrkit-1.1.11/genisoimage/
H A Dexclude.c34 int is_excluded(char *fn);
65 is_excluded(char *fn) in is_excluded() function
/dports/sysutils/genisoimage/cdrkit-1.1.11/genisoimage/
H A Dexclude.c34 int is_excluded(char *fn);
65 is_excluded(char *fn) in is_excluded() function
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/solaris/
H A Dfsstat_bytes68 is_excluded() {
117 is_excluded "$fs" && continue
147 is_excluded "$fs" && continue
/dports/databases/p5-DBIx-DBHResolver/DBIx-DBHResolver-0.17/inc/Test/
H A DLoadAllModules.pm27 grep { !is_excluded( $_, @exceptions ) }
40 sub is_excluded { subroutine
/dports/devel/p5-Perl-Metrics-Lite/Perl-Metrics-Lite-0.08/inc/Test/
H A DLoadAllModules.pm27 grep { !is_excluded( $_, @exceptions ) }
40 sub is_excluded { subroutine
/dports/devel/p5-Test-LoadAllModules/Test-LoadAllModules-0.022/lib/Test/
H A DLoadAllModules.pm26 grep { !is_excluded( $_, @exceptions ) }
39 sub is_excluded { subroutine
/dports/sysutils/py-ansible-lint/ansible-lint-5.3.1/src/ansiblelint/
H A Drunner.py80 def is_excluded(self, file_path: str) -> bool: member in Runner
109 if self.is_excluded(str(lintable.path.resolve())):
159 filter(lambda match: not self.is_excluded(match.filename), matches)
170 if self.is_excluded(str(child.path)):
/dports/mail/thunderbird/thunderbird-91.8.0/comm/taskcluster/comm_taskgraph/
H A Doptimize.py29 def is_excluded(check_path, file_patterns): function
38 return is_excluded(check_path, suite_patterns)
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dtable_column_iterator.h287 bool is_excluded(size_t index) const;
442 bool Table_columns_view<F>::is_excluded(size_t index) const { in is_excluded() function
466 if (!this->is_excluded(d)) { in translate_bitmap()
482 if (!this->is_excluded(d)) { in translate_position()
550 this->m_parent->is_excluded(this->m_absolute_pos));
601 this->m_parent->is_excluded(this->m_absolute_pos));
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/jfr/
H A Djfr.cpp89 bool Jfr::is_excluded(Thread* t) { in is_excluded() function in Jfr
90 return t != NULL && t->jfr_thread_local()->is_excluded(); in is_excluded()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/jfr/
H A Djfr.cpp89 bool Jfr::is_excluded(Thread* t) { in is_excluded() function in Jfr
90 return t != NULL && t->jfr_thread_local()->is_excluded(); in is_excluded()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/jfr/
H A Djfr.cpp88 bool Jfr::is_excluded(Thread* t) { in is_excluded() function in Jfr
89 return t != NULL && t->jfr_thread_local()->is_excluded(); in is_excluded()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/jfr/
H A Djfr.cpp91 bool Jfr::is_excluded(Thread* t) { in is_excluded() function in Jfr
92 return t != NULL && t->jfr_thread_local()->is_excluded(); in is_excluded()
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/
H A Dcheck_all_test_suite.py35 def is_excluded(path): function
65 not is_excluded(test_path) and

12345678910>>...14