How do I register a file type for a scripting language so that users get a warning when they run an untrusted script?
Источник: The Old New Thing
Источник: The Old New Thing
Microsoft News
How do I register a file type for a scripting language so that users get a warning when they run an untrusted script?
Use the FTA_AlwaysUnsafe edit flag.
PVS-Studio соответствует требованиям ГОСТ Р 71207—2024 (статический анализ программного обеспечения)
Источник: Habr
Автор: Andrey2008 (PVS-Studio)
Источник: Habr
Автор: Andrey2008 (PVS-Studio)
Хабр
PVS-Studio соответствует требованиям ГОСТ Р 71207—2024 (статический анализ программного обеспечения)
Инструментальное средство PVS-Studio разрабатывается с учётом требований, предъявляемых к статическим анализаторам в ГОСТ Р 71207–2024, выявляет критические ошибки и может использоваться при...
A common proposed solution to certain categories of IFNDR: Getting the linker to verify identical functions
Источник: The Old New Thing
Источник: The Old New Thing
Microsoft News
A common proposed solution to certain categories of IFNDR: Getting the linker to verify identical functions
You could do it, but it could cramp your style.
C++ Game Development - Techniques to Optimise Multithreaded Data Building - Dominik Grabiec - CppCon
Источник: CppCon
Источник: CppCon
YouTube
C++ Game Development - Techniques to Optimise Multithreaded Data Building - Dominik Grabiec - CppCon
https://cppcon.org
---
Techniques to Optimise Multithreaded Data Building During C++ Game Development - Dominik Grabiec - CppCon 2024
---
In game development the building and optimisation of data for the game is an important but resource intensive and…
---
Techniques to Optimise Multithreaded Data Building During C++ Game Development - Dominik Grabiec - CppCon 2024
---
In game development the building and optimisation of data for the game is an important but resource intensive and…
Как мы добавляли поддержку Apple Silicon в анализатор (arm64)
Источник: Habr
Автор: Mixxxxa (PVS-Studio)
Источник: Habr
Автор: Mixxxxa (PVS-Studio)
Хабр
Как мы добавляли поддержку Apple Silicon в анализатор (arm64)
С выходом PVS-Studio 7.34 стали доступны нативные сборки анализатора для macOS на архитектуре Apple Silicon (ARM). В этой заметке мы хотели бы подробнее рассказать о проделанной работе, а также...
How can I check if two GUIDs are equal when they are provided as strings?
Источник: The Old New Thing
Источник: The Old New Thing
Microsoft News
How can I check if two GUIDs are equal when they are provided as strings?
A customer asked if there was a helper function in the system that accepted two strings and reported whether the GUIDs they represent are equal. This is a tricky question, because you first have to decide what “represent” means. There are many ways of representing…