Home
last modified time | relevance | path

Searched full:ignored (Results 1 – 25 of 3311) sorted by relevance

12345678910>>...133

/freebsd/contrib/bmake/unit-tests/
H A Dsh-flags.exp12 *** Error code 1 (ignored)
16 *** Error code 1 (ignored)
28 *** Error code 1 (ignored)
32 *** Error code 1 (ignored)
42 *** Error code 1 (ignored)
46 *** Error code 1 (ignored)
56 *** Error code 1 (ignored)
60 *** Error code 1 (ignored)
65 *** Error code 1 (ignored)
69 *** Error code 1 (ignored)
[all …]
H A Ddeptgt-ignore.mk13 all: depends-on-failed depends-on-ignored
14 .PHONY: all depends-on-failed depends-on-ignored error-failed error-ignored
16 error-failed error-ignored:
23 depends-on-ignored: error-ignored
28 # on the target with the ignored commands are made.
29 .IGNORE: error-ignored
H A Ddeptgt-ignore.exp3 error-ignored before
4 *** Error code 1 (ignored)
5 error-ignored after
6 Making depends-on-ignored from error-ignored.
H A Dposix-execution.mk52 # expect: do-error-not-ignored: successful
53 # expect-not: do-error-not-ignored: after an error
54 all: error-not-ignored
55 error-not-ignored:
56 @${MAKE} -f ${MAKEFILE} do-error-not-ignored || :
57 do-error-not-ignored:
H A Dopt-ignore.exp2 *** Error code 1 (ignored)
4 *** Error code 7 (ignored)
7 *** Error code 1 (ignored)
10 *** Error code 1 (ignored)
H A Ddepsrc-ignore.mk10 # The "ignored" comes much too late to be related to the "false
17 # appear. Now the "ignored" message is issued in the correct position.
30 # * the "(ignored)" line
39 # "*** Error code 1 (ignored)"
47 # Goes to the stdout buffer, where the "*** Error code 1 (ignored)" is
H A Ddeptgt.exp1 make: deptgt.mk:11: warning: Extra target ".PHONY" ignored
21 make: deptgt.mk:58: warning: Extra target "ordinary" ignored
22 make: deptgt.mk:61: warning: Extra target "ordinary" ignored
23 make: deptgt.mk:64: warning: Special and mundane targets don't mix. Mundane ones ignored
/freebsd/usr.bin/bmake/tests/execution/joberr/
H A Dexpected.stdout.161 *** [check-joberr] Error code 2 (ignored)
62 *** [check-joberr] Error code 2 (ignored)
63 *** [check-joberr] Error code 2 (ignored)
64 *** [check-joberr] Error code 2 (ignored)
65 *** [check-joberr] Error code 2 (ignored)
66 *** [check-joberr] Error code 2 (ignored)
67 *** [check-joberr] Error code 2 (ignored)
68 *** [check-joberr] Error code 2 (ignored)
69 *** [check-joberr] Error code 2 (ignored)
70 *** [check-joberr] Error code 2 (ignored)
[all …]
/freebsd/contrib/mandoc/
H A Droff.798 whether in a request, macro, or text line, is ignored to the end of the line.
101 is also ignored.
108 \&.\e\(dq The next line is ignored:
418 For requests marked as "ignored" or "unsupported", any arguments are
419 ignored, and the number of arguments is not checked.
426 Currently ignored.
429 Currently ignored.
489 This is a groff extension and currently ignored.
492 Currently ignored.
495 This is a Heirloom extension and currently ignored
[all...]
H A Dtbl.788 Currently ignored.
91 Currently ignored.
94 This is a GNU extension and currently ignored.
100 This is a GNU extension and currently ignored.
174 Currently ignored.
194 Currently ignored.
198 Currently ignored.
202 Currently ignored.
205 Currently ignored.
/freebsd/usr.bin/iscsictl/
H A Dtoken.l67 port { return IGNORED; }
72 MaxConnections { return IGNORED; }
73 TargetAlias { return IGNORED; }
74 TargetPortalGroupTag { return IGNORED; }
75 InitialR2T { return IGNORED; }
76 ImmediateData { return IGNORED; }
77 MaxRecvDataSegmentLength { return IGNORED; }
78 MaxBurstLength { return IGNORED; }
79 FirstBurstLength { return IGNORED; }
80 DefaultTime2Wait { return IGNORED; }
[all …]
/freebsd/contrib/libpcap/
H A Ddiag-control.h88 * ignored -Wxxx" and "clang diagnostic push/pop".
100 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wsign-compare") \
101 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wdocumentation") \
102 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wshorten-64-to-32") \
103 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wmissing-noreturn") \
104 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wunused-parameter") \
105 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wunreachable-code")
114 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wshorten-64-to-32")
124 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wdeprecated-declarations")
136 PCAP_DO_PRAGMA(clang diagnostic ignored "-Wstrict-prototypes")
[all …]
/freebsd/lib/libomp/
H A Dkmp_i18n_default.inc160 "%1$s: \"%2$s\" is an invalid value; ignored.",
163 "%1$s supported only on debug builds; ignored.",
166 "Empty string specified for %1$s; ignored.",
167 "%1$s value is too long; ignored.",
172 "%1$s value \"%2$s\" is ignored.",
174 "%1$s must be set prior to first parallel region; ignored.",
182 "%1$s: proclist specified without \"explicit\" affinity type, proclist ignored.",
188 "%1$s: %2$s is defined. %3$s will be ignored.",
199 "%1$s: extra trailing characters ignored: \"%2$s\".",
215 "Requested number of active parallel levels \"%1$d\" is negative; ignored.",
[all …]
/freebsd/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.py18 self.ignored = 0
40 tests,failures,ignored = self.parse_test_summary('\n'.join(lines))
43 self.ignored += ignored
45 if self.ignored > 0:
48 self.report += "UNITY IGNORED TEST SUMMARY\n"
63 …ailures} TOTAL FAILURES {ignored} IGNORED\n".format(total_tests = self.total_tests, failures=self.…
105 m = re.search(r"([0-9]+) Tests ([0-9]+) Failures ([0-9]+) Ignored", summary)
H A Dunity_test_summary.rb17 attr_reader :report, :total_tests, :failures, :ignored accessor in UnityTestSummary
23 @ignored = 0
44 tests,failures,ignored = parse_test_summary(lines)
47 @ignored += ignored
51 if @ignored > 0
54 @report += "UNITY IGNORED TEST SUMMARY\n"
71 @report += "#{@total_tests} TOTAL TESTS #{@failures} TOTAL FAILURES #{@ignored} IGNORED\n"
111 if summary.find { |v| v =~ /(\d+) Tests (\d+) Failures (\d+) Ignored/ }
/freebsd/contrib/llvm-project/openmp/runtime/src/i18n/
H A Den_US.txt204 StgInvalidValue "%1$s: \"%2$s\" is an invalid value; ignored."
207 OBSOLETE "%1$s supported only on debug builds; ignored."
211 EmptyString "Empty string specified for %1$s; ignored."
212 LongValue "%1$s value is too long; ignored."
217 IgnoreChunk "%1$s value \"%2$s\" is ignored."
219 EnvParallelWarn "%1$s must be set prior to first parallel region; ignored."
227 AffProcListNotExplicit "%1$s: proclist specified without \"explicit\" affinity type, proclist ignored."
233 OBSOLETE "%1$s: %2$s is defined. %3$s will be ignored."
244 ParseExtraCharsWarn "%1$s: extra trailing characters ignored: \"%2$s\"."
260 ActiveLevelsNegative "Requested number of active parallel levels \"%1$d\" is negative; ignored
[all...]
/freebsd/contrib/llvm-project/libc/src/__support/threads/linux/
H A Dfutex_utils.h51 /* ignored */ nullptr,
68 /* ignored */ nullptr,
69 /* ignored */ nullptr,
70 /* ignored */ 0);
78 /* ignored */ nullptr,
79 /* ignored */ nullptr,
80 /* ignored */ 0);
/freebsd/contrib/pkgconf/man/
H A Dpkgconf.155 silently ignored.
69 These options cause all arguments to be ignored.
106 argument is used, all other arguments are silently ignored,
131 can be combined with each other, but are overridden and ignored if
142 Most other options and all command line arguments are ignored.
149 Most other options and all command line arguments are ignored.
177 that would otherwise silently be ignored.
219 Most other options and all command line arguments are ignored.
267 Most other options and all command line arguments are ignored.
300 All command line arguments are ignored.
[all …]
/freebsd/contrib/tcpdump/
H A Ddiag-control.h60 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wassign-enum")
76 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wassign-enum")
95 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wcast-qual")
104 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wdeprecated-declarations")
118 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wc11-extensions")
131 DIAG_DO_PRAGMA(clang diagnostic ignored "-Wstrict-prototypes")
144 DIAG_DO_PRAGMA(GCC diagnostic ignored "-Wcast-qual")
158 DIAG_DO_PRAGMA(GCC diagnostic ignored "-Wunused-result")
167 DIAG_DO_PRAGMA(GCC diagnostic ignored "-Wdeprecated-declarations")
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp25 bool Ignored; in printImpl() local
36 APF.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
41 APF.convert(APFloat::BFloat(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
46 APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
51 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
/freebsd/contrib/libarchive/cpio/
H A Dbsdcpio.1152 In input mode, this option is ignored; xz compression is recognized
170 In input mode, this option is ignored.
174 In input mode, this option is ignored; lz4 compression is recognized
179 In input mode, this option is ignored; zstd compression is recognized
184 In input mode, this option is ignored; lzma compression is recognized
190 In input mode, this option is ignored.
282 In input mode, this option is ignored;
287 In input mode, this option is ignored;
292 In input mode, this option is ignored;
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_format_warc_empty.c42 /* Add "." entry which must be ignored. */ in DEFINE_TEST()
52 /* Add ".." entry which must be ignored. */ in DEFINE_TEST()
62 /* Add "/" entry which must be ignored. */ in DEFINE_TEST()
72 /* Add "../" entry which must be ignored. */ in DEFINE_TEST()
82 /* Add "../../." entry which must be ignored. */ in DEFINE_TEST()
92 /* Add "..//.././" entry which must be ignored. */ in DEFINE_TEST()
H A Dtest_write_format_xar_empty.c53 /* Add "." entry which must be ignored. */ in DEFINE_TEST()
63 /* Add ".." entry which must be ignored. */ in DEFINE_TEST()
73 /* Add "/" entry which must be ignored. */ in DEFINE_TEST()
83 /* Add "../" entry which must be ignored. */ in DEFINE_TEST()
93 /* Add "../../." entry which must be ignored. */ in DEFINE_TEST()
103 /* Add "..//.././" entry which must be ignored. */ in DEFINE_TEST()
/freebsd/share/man/man4/
H A Diic.457 All other elements are ignored.
67 All other elements are ignored.
82 The argument is completely ignored.
97 element is ignored.
118 element is ignored.
176 The read/write bit in the least-significant position is ignored.
/freebsd/share/doc/usd/21.troff/
H A Dm0a72 \fB&ss\fI|N\fR 12\(sl36\|em ignored E Space-character size
91 \fB&fp\fI|N|F\fR R,I,B,S ignored - Font named \fIF\fR mounted on physical position 1\(<=\fIN\fR\(<=…
105 \fB&pn\fI|\(+-N N\(eq\fR1 ignored - Next page number \fIN\fR.
154 \fB&ti\fI|\(+-N\fR - ignored B,E,\fBm\fR Temporary indent.
162 \fB&ds\fI|xx|string\fR - ignored - Define a string \fIxx\fR containing \fIstring\fR.
164 \fB&as\fI|xx|string\fR - ignored - Append \fIstring\fR to string \fIxx\fR.
166 \fB&rm\fI|xx\fR - ignored - Remove request, macro, or string.
168 \fB&rn\fI|xx|yy\fR - ignored - Rename request, macro, or string \fIxx\fR to \fIyy\fR.
235 \fB&hw\fI|word1|...\fR ignored - Exception words.
328 …p\fR,\fBm\fR,\fBu\fR Default scale indicator; if not specified, scale indicators are \fIignored\fR.
[all …]

12345678910>>...133