arm
Here are 1,826 public repositories matching this topic...
-
Updated
May 17, 2020 - C++
Template name: 101-event-grid, https://github.com/Azure/azure-quickstart-templates/blob/master/101-event-grid/azuredeploy.json
The parameter eventGridSubscriptionUrl's description ends with:
(RequestBin URLs are exempt from this requirement.)
This is no longer true, and deployments will fail, if the validation challenge is not answered, or the validation URL is not visited - even when
-
Updated
May 16, 2020 - C
There are a few flags that currently don't have proper error checking. The ones I found are -gc, -scheduler and -size. Using the wrong value will lead to no or unexpected errors.
I think the best way to handle it is to add a new method to compileopts.Config that checks whether there are any faulty flags, which is then called from the main function.
Is there a way to let the citra gdbstub automatically break on unmapped memory access? Right now, citra handles unmapped access gracefully and only spits out an error in the log. The real 3DS hardware will crash on unmapped memory access but the current Rosalina gdbstub will at least break with SIGSEGV and let you examine the process remains.
Would be nice if it was possible with citra as well ..
PaddlePaddle/Paddle使用git-flow分支模型,切换的issue:PaddlePaddle/Paddle#250 ,文档中亦有对PaddlePaddle分支规范的介绍。
PaddlePaddle的主版本库遵循git-flow分支规范。其中:
- master分支为稳定(stable branch)版本
-
Updated
Jun 20, 2020 - Python
请完善cmsis os接口
因为要使用rtt+emwin,在emwin532版本里,GUI_X_OS.c是和os的接口,在rtconfig.h里打开#define RT_USING_CMSIS_OS后,编译出了几条错误,如下
cmsis_rtthread.c
Error[Pe167]: argument of type "os_pthread" is incompatible with parameter of type "void (*)(void *)" \RTThread\rt-thread-v2.1.x\components\CMSIS\RTOS\cmsis_rtthread.c 33
Warning[Pe188]: enumerated type mixed with another type \RTThread\rt-thread-v2.1.x\components\CMSIS\RTOS\cm
Env:
- python 3.8
- capstone 4.0.1
- ubuntu 18.04 (WSL)
Repro:
import capstone
md = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_32)
md.detail = True
# case 1
# expected: fstcw WORD PTR [ebp-0x4] (based on Objdump disassembly which round-trips with GNU as)
for insn in md.disasm(b"\x9B\xD9\x7D\xFC", 0):
print(insn.address, insn.mnemonic, insn.op_str)
print(已经按照https://www.yuque.com/mnn/cn/cvrt_windows的步骤 ,安装好了protobuf。
但是在进行编译模型转换工具步骤时报错如下:

步骤为:
cd tools/converter
mkdir build
cd build
cmake -G "Ninja" -DMNN_BUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release ..
想知道问题是什么,感谢~
Solutions
1. Convert INO files to CPP
2. Manual prototype declaration
#ifdef DO_NOT_USE
typedef int32_t delaytype;
void thisShouldNotAppearInTheBinary(delaytype timer); // aded manually
void thisShouldNotAppearInTheBinary(delaytype timer) {
delay(timer);
}
#endifCOPYING and README claim this is GPL, but it doesn't specify which version exactly? It looks like GPLv2, the question is: "GPLv2 only" or "GPLv2 or later"?
The current uc.c only contains a copyright where it's unclear wether that file also belongs to GPL'd code.
The source files or README should contain [the license text as per COPYING file](https://github.com/unicorn-engine/unicorn/blob/master/CO
-
Updated
May 16, 2020 - Python
Python 3 bindings
Implement Python 3 bindings, so wasm3 can be easily used from Python.
The ADC driver for the nRF52 chip only supports single samples. The continuous sampling function needs to be implemented:
-
Updated
Jun 8, 2020
-
Updated
May 29, 2020 - C++
-
Updated
Jun 23, 2020 - Shell
-
Updated
Jun 17, 2020 - C++
xargo CI is failing with a strange ICE:
thread 'rustc' panicked at 'failed to lookup `SourceFile` in new context', src/librustc_middle/ty/query/on_disk_cache.rs:456:17
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: internal compiler error: unexpected panic
note: the compiler unexpect
debug/log flag?
Just a quick question, do you think we should add a flag to keystone that will log all assemble attempts and their results? This could help for detecting inconsistencies, however it might be out of the scope for the project.
Missing instructions
add a doc builder
Our documentation site is always lagging behind as updating the docs is a non-trivial task that has to be automated. Setting up the Travis job for building wouldn't be trivial (we probably won't fit into the time constraints), but we can use GitHub actions and host a documentation builder on one of our servers. We shall update both bap documentation and Primus Lisp docs.
-
Updated
Nov 24, 2019 - Python
After running NC with NCP for more then a year with over 2 million files stored on it, I asked myself if the mysql/mariadb DB needs to be maintained?
I searched the internet and the simplest solution I found was using
sudo mysqlcheck -o --all-databases
This reduced the DB size from around 950MB to a little over 800MB and NC seems to be a little more responsive (but this could homeopat
Conan package
-
Updated
Jun 19, 2020 - Shell
Improve this page
Add a description, image, and links to the arm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the arm topic, visit your repo's landing page and select "manage topics."


Now when oss-fuzz provides pretty code coverage, it is easy to see which parts of the code are not fuzzed properly.
Identify what can be done, and add fuzzers targeting the uncovered code.