Home
last modified time | relevance | path

Searched refs:issue (Results 1 – 25 of 808) sorted by relevance

12345678910>>...33

/external/nanopb-c/
DCHANGELOG.txt2 Fix bug with default values for extension fields (issue 111)
3 Fix some MISRA-C warnings (issue 91)
4 Implemented optional malloc() support (issue 80)
6 Add a "found" field to pb_extension_t (issue 112)
7 Add convenience function pb_get_encoded_size() (issue 16)
10 Fix generator error with bytes callback fields (issue 99)
11 Fix warnings about large integer constants (issue 102)
12 Add comments to where STATIC_ASSERT is used (issue 96)
13 Add warning about unknown field names on .options (issue 105)
14 Move descriptor.proto to google/protobuf subdirectory (issue 104)
[all …]
/external/python/cpython2/Doc/tools/extensions/
Dsuspicious.py63 def __init__(self, docname, lineno, issue, line): argument
69 self.issue = issue # the markup fragment that triggered this rule
122 def check_issue(self, line, lineno, issue): argument
123 if not self.is_ignored(line, lineno, issue):
124 self.report_issue(line, lineno, issue)
126 def is_ignored(self, line, lineno, issue): argument
131 if rule.issue != issue: continue
148 def report_issue(self, text, lineno, issue): argument
151 self.write_log_entry(lineno, issue, text)
154 (self.docname, lineno, issue, text))
[all …]
/external/clang/www/
Dmake_cxx_dr_status17 def __init__(self, section, issue, url, status, title): argument
18 self.section, self.issue, self.url, self.status, self.title = \
19 section, issue, url, status, title
21 return '%s (%s): %s' % (self.issue, self.status, self.title)
28 _, url, issue = issue_link.split('"', 2)
30 issue = int(issue.split('>', 1)[1].split('<', 1)[0])
32 return DR(section, issue, url, status, title)
48 key = lambda dr: dr.issue)
96 def availability(issue): argument
97 status = status_map.get(issue, 'unknown')
[all …]
/external/autotest/server/cros/dynamic_suite/
Dreporting.py577 issue = self._format_issue_options(bug_template, title=bug.title(),
583 filed_bug = self._phapi_client.create_issue(issue)
590 issue.get('owner'))
701 all_issues = [issue for issue in issues
702 if clean_marker in re.sub('[0-9]+', '', issue.summary)]
705 issue_ids = [issue.id for issue in all_issues]
713 for issue in issues:
715 for comment in issue.comments):
716 return issue
727 issue = self._find_issue_by_marker(marker)
[all …]
Dreporting_unittest.py126 issue = self.mox.CreateMock(phapi_lib.Issue)
127 issue.id = self._FAKE_ISSUE_ID
128 issue.labels = []
129 issue.state = constants.ISSUE_OPEN
136 issue)
150 def check_suite_options(issue): argument
158 assert('autofiled' in issue.labels)
161 and all(item in getattr(issue, k) for item in v)):
163 if v and getattr(issue, k) is not v:
356 issue = self.mox.CreateMock(gdata_lib.Issue)
[all …]
/external/hamcrest/
DCHANGES.txt19 * Fix gh issue #69 - Iterable contains in order is null-safe
21 * Fix gh issue #59 - added equalToObject() (i.e. unchecked) method
23 * Fix gh issue #25 - arrayContaining(null, null) cause NullPointerException
25 * Fix gh issue #36 - string matching on regular expressions
27 * Fix gh issue #8 - isCloseTo() shows wrong delta in mismatch description
29 * Fix issue 131 - Implement IsEmptyMap, IsMapWithSize
31 * Fix issue 155 - Deprecated several matcher factory methods of the for "isXyz"
33 * Fix issue 187 - IsArray.describeMismatchSafely() should use Matcher.describeMismatch
35 * Fix issue 155 - Add Matcher implementation for files
37 * Fix issue 59 - add untyped version of equalTo, named equalToObject
[all …]
/external/v8/
DChangeLog442 Remove SIMD.js from V8 (issue 4124, Chromium issue 5948).
3497 [build] Use MSVS 2015 by default (Chromium issue 603131).
4029 [wasm] Be more lenient on the names section (issue 5632).
6026 [wasm] Master CL for Binary 0xC changes (Chromium issue 575167).
6193 [wasm] Master CL for Binary 0xC changes (Chromium issue 575167).
9755 Recognize HTMLCloseComment after multiline comment (issue 5142).
10192 [stubs] GetPropertyStub added (issue 4911).
10194 [wasm] Fix receiver conversion for WASM->JS calls (Chromium issue
10282 Allow trailing commas in function parameter lists (issue 5051).
10309 [stubs] Implementing CodeStubAssembler::GetOwnProperty() (issue 4911).
[all …]
/external/mockito/src/test/java/org/mockito/exceptions/base/
DMockitoSerializationIssueTest.java23 … MockitoSerializationIssue issue = new MockitoSerializationIssue("msg", new Exception("cause")); in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true() local
26 …assertThat(Arrays.toString(issue.getUnfilteredStackTrace())).contains("MockitoSerializationIssueTe… in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true()
27 …assertThat(Arrays.toString(issue.getStackTrace())).doesNotContain("MockitoSerializationIssueTest"); in should_filter_out_test_class_from_stacktrace_when_clean_flag_is_true()
36 … MockitoSerializationIssue issue = new MockitoSerializationIssue("msg", new Exception("cause")); in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false() local
39 …assertThat(Arrays.toString(issue.getUnfilteredStackTrace())).contains("MockitoSerializationIssueTe… in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false()
40 … assertThat(Arrays.toString(issue.getStackTrace())).contains("MockitoSerializationIssueTest"); in should_keep_executing_class_in_stacktrace_when_clean_flag_is_false()
/external/cmockery/cmockery_0_1_2/packages/
Drpm.sh59 if [ -r /etc/issue ]
61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
65 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
/external/python/cpython2/Misc/
DREADME.AIX74 in issue 11212 at bugs.python.org.
88 * issue 3526: the memory used by a Python process will never be
90 uses a lot of memory, you should read this issue and you may
94 * issue 11184: support for large files is currently broken
96 * issue 11185: os.wait4 does not behave correctly with option WNOHANG
98 * issue 1745108: there may be some problems with curses.panel
100 * issue 11192: test_socket fails
102 * issue 11190: test_locale fails
104 * issue 11193: test_subprocess fails
106 * issue 9920: minor arithmetic issues in cmath
[all …]
/external/lz4/
DNEWS77 Fixed : Fuzzer + frametest compatibility with NetBSD (issue #48, reported by Thomas Klausner)
129 Added : pkg-config, thanks to Zbigniew Jędrzejewski-Szmek (issue 135)
130 Makefile : lz4-test only test native binaries, as suggested by Michał Górny (issue 136)
140 fix : support ppc64le platform (issue 131)
142 fix : Makefile : minor issue 130 : header files permissions
147 fix : block-dependency command line (issue 127)
148 fix : lz4fullbench (issue 128)
151 hotfix (issue 124 & 125)
154 Added : lz4cat utility, installed on POSX systems (issue 118)
155 OS-X compatible compilation of dynamic library (issue 115)
[all …]
/external/python/cpython2/Doc/whatsnew/
D2.7.rst47 (Contributed by P.Y. Developer; :issue:`12345`.)
73 feature or the issue on https://bugs.python.org in which a change was
144 on stdlib-sig and carried out in :issue:`7319`.)
607 Backported to 2.7 by Alexandre Vassalotti; :issue:`1967`.
658 Backported to 2.7 by Antoine Pitrou; :issue:`2396`.
681 Backported by Alexandre Vassalotti; :issue:`2335`.
692 Backported by Alexandre Vassalotti; :issue:`2333`.
743 :file:`dtoa.c` library; :issue:`7117`.
767 (Implemented by Mark Dickinson; :issue:`3166`.)
770 implemented by Mark Dickinson; :issue:`1811`.)
[all …]
/external/protobuf/csharp/protos/
Dunittest_issues.proto3 // These proto descriptors have at one time been reported as an issue or defect.
4 // They are kept here to replicate the issue, and continue to verify the fix.
21 // Old issue 13: http://code.google.com/p/protobuf-csharp-port/issues/detail?id=13
22 // New issue 309: https://github.com/google/protobuf/issues/309
36 // Similar issue with numeric names
43 // issue 19 - negative enum values
/external/flatbuffers/.github/
DISSUE_TEMPLATE.md1 Thank you for submitting an issue!
3 …, compiler version(s), operating system version(s), and FlatBuffers version(s) in your issue title.
5 This helps us get the correct maintainers to look at your issue. Here are examples of good titles:
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue115/
DParameterizedTest.java38 Issue issue = new Issue(); in testAsJavaBeanProperty() local
41 issue.parm = parm; in testAsJavaBeanProperty()
42 String result = yaml.dump(issue); in testAsJavaBeanProperty()
DParameterizedJavaBeanTest.java42 IssueBean issue = new IssueBean(); in testAsJavaBeanProperty() local
46 issue.setBean(bean); in testAsJavaBeanProperty()
47 String result = yaml.dump(issue); in testAsJavaBeanProperty()
/external/skia/infra/bots/recipes/
Dupload_nano_results.py42 issue = api.properties.get('patch_issue')
44 if issue and patchset:
45 gs_path = '/'.join(('trybot', gs_path, str(issue), str(patchset)))
/external/v8/tools/release/
Dcheck_clusterfuzz.py216 for issue in issues:
217 if re.match(spec["crash_state"], issue["crash_state"]):
218 results.append(issue["id"])
/external/shflags/doc/
DCHANGES-1.0.md15 Fixed issue #10. Usage of `expr` under FreeBSD 7.2 (FreeNAS 0.7.1) and FreeBSD
18 Fixed issue where booleans were sometimes mis-configured to require additional
23 Fixed issue #11. When help is requested, the help flag is no longer prefixed
28 Fixed issue #12. Requesting help shouldn't be considered an error.
47 Fixed issue in `shflags_test_public.sh` where screens >80 columns were causing a
65 Fixed issue# 7 where long flags defined with '=' (e.g. `--abc=123`) made it
73 Due to above fix for issue# 7, there is now proper support for mixing flags
/external/ppp/pppd/plugins/radius/etc/
Dradiusclient.conf25 issue /usr/local/etc/radiusclient/issue
/external/webrtc/tools/valgrind-webrtc/gtest_exclude/
Drtc_unittests.gtest-memcheck.txt5 # TODO(wu): Reenable P2PTransportChannelTest after issue 2158 is resolved.
17 # Flaky; WebRTC issue 5136
/external/skia/
DPRESUBMIT.py287 self._issue = input_api.change.issue
292 issue=int(self._issue), messages=True)
344 if input_api.change.issue:
395 if input_api.change.issue:
482 issue = cl.issue
483 if issue:
498 docs_preview_link = '%s%s' % (DOCS_PREVIEW_URL, issue)
/external/skia/site/user/
Dissue-tracker.md10 When filing a new issue, please select the appropriate template, most likely
21 * To have an issue triaged by the Skia team, add `Component:Internals>Skia`.
25 * If the Sheriff cannot be assigned, cc them and assign the issue to hcm@.
/external/skia/tools/
Dadd_codereview_message.py34 def add_codereview_message(issue, message): argument
46 my_rietveld.add_comment(issue, message)
/external/jacoco/.github/
DISSUE_TEMPLATE.md1 This is a issue tracker. Please use our mailing list for general questions:
4 Also check FAQ before opening an issue: http://www.jacoco.org/jacoco/trunk/doc/faq.html

12345678910>>...33