Skip to content
#

intelligence

Here are 234 public repositories matching this topic...

wagner-certat
wagner-certat commented Jun 11, 2021

https://intelmq.readthedocs.io/en/latest/user/bots.html#filter

Currently the docs say:

filter_regex - attribute determines if the filter_value shall be treated as regular expression or not.
If this attribute is not empty, the bot uses python’s “search” function to evaluate the filter.

It is not clear from this text, that the "search" function is re.search and what it implies (as

myungjoo
myungjoo commented Apr 9, 2021

With GST CAP Negotiation, tensor-decoder::direct-video may identify the color format automatically without "option1".

If option1 is given, try to mandate it.

If it is not given:

  1. With the given bits-per-pixel info, we can narrow down "possible" color formats
  2. Let GST CAP Negotiation mechanism further narrow it down.
  3. Let GST choose and verify it at fixate.
zhoonit
zhoonit commented Jul 14, 2021

We are relying on a virtual method call when delegating constructor in props.

so for example, if we do

PropsPath(const std::string &value): Property<std::string>(value) {  };

this bypasses behind isValid call because vtable has not been initialized.

When setting default value, we should code as below to avoid such behavior.

PropsPath(const std::string &value) { se

Improve this page

Add a description, image, and links to the intelligence topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the intelligence topic, visit your repo's landing page and select "manage topics."

Learn more