Results 26 issues of vient

Shouldn't osquery use GLOB_PERIOD [here](https://github.com/osquery/osquery/blob/0e3f222daec4c7bbcc23eb34f3b9dcd2a6531624/osquery/filesystem/posix/fileops.cpp#L279) to allow matching dotfiles by patterns like `*`? For example, `getUserSshKeys` [uses](https://github.com/osquery/osquery/blob/8cd1437805d14a0564a68603fcf5fac18fe3148f/osquery/tables/system/ssh_keys.cpp#L141) ‎`listFilesInDirectory` function, which eventually just calls `glob("/home/user/.ssh/*", ...)`. I found it when I...

Setting `MissingIncludes: Strict` in clangd config makes it behave strange when \ header is involved. Sources: ```cpp // main.h #pragma once #include // IWYU pragma: export using namespace std::chrono_literals; //...

### How to reproduce ### 1. `touch pch.h` 2. `clang-16 -isysroot ${PWD} --relocatable-pch -x c++-header pch.h -o pch1.pch` 3. `CCACHE_BASEDIR=${PWD} ccache clang-16 -isysroot ${PWD} --relocatable-pch -x c++-header pch.h -o pch2.pch`...

bug
help wanted
compiler: clang

`setup.py` by default generates info for package `tensorflow-io` which depends on `tensorflow-io-gcs-filesystem`. It seems there is no way to say pip to pass additional parameters to egg_info command, `--build-option` and...

I think, or I am using it wrong. Hi, so here https://github.com/tomerfiliba/plumbum/blob/v1.8.1/plumbum/machines/session.py#L280-L283 `popen` checks if cmd is BaseCommand, if so then calls `formulate` on it. After that it assumes that...

Hi, it may be easier to show in code what I mean: ```py import logging from plumbum import cli logging.basicConfig(level=logging.INFO) class A(cli.Application): @cli.autoswitch() def debug(self): logging.basicConfig(level=logging.DEBUG, force=True) logging.debug('enabled debug logs')...

**Is your feature request related to a problem? Please describe.** I observed what is happening with my system's battery life for some time. Adding nohz_full and irq_nocbs changed things a...

feature request

Expectation: setting SO_KEEPALIVE to 0 on socket turns off keepalive logic. Reality: setting SO_KEEPALIVE to 0 on socket zeroes out userspace keepalive variables but does not zero out kernel keepalive...

Hi, Imagine a situation when you close a connection but remote is not responding to you at all. `exasock_tcp_close_worker` will set socket state to FIN-WAIT-1, after which exasock will send...

### OpenVINO Version 2024.0.0 ### Operating System Ubuntu 20.04 (LTS) ### Device used for inference CPU ### Framework None ### Model used _No response_ ### Issue description ONNX frontend uses...

bug
support_request