search for: ttbomk

Displaying 17 results from an estimated 17 matches for "ttbomk".

Did you mean: tomk
2016 Jul 26
4
grouping global variables by alignment: safe to do at LLVM level, or only at Clang level?
>> My question this time is this: is re-ordering globals at the LLVM level both possible [...] On 07/25/2016 10:53 PM, Mehdi Amini wrote: > Isn’t something a linker could/should do? AFAIK & TTBOMK, a compiler should do it [if allowed by the language] and a linker should not mess it up. I don`t know that a linker is allowed to make assumptions about code not traversing labels in its data accesses. After all, a compiler may have assigned labels to e.g. the start of a "struct" in...
2020 Oct 30
2
Sieve filter script EXECUTION FAILED
...head>|<style>* {color:white !important; background-color: black !important; } </style></head>|' > > What should the sed stuff do? Changes </head> to <style>* {color:white !important; background-color: black !important; } </style></head> > TTBOMK '|' is not known by sed ... Yes, it most certainly is. (It's the only delimiter I use anymore since it means I never have to deal with escaping /) -- Some people are like a slinky: Totally useless, but you can't help but smile when you push them down the stairs
2017 Mar 30
3
Alphabet character in destination number (CDR)
Dear all, I have PBX with asterisk 13.x a couple of IPPhone that connect to that asterisk PBX send an alphanumeric dialed phone number. for example, in my CDR table, field DST, it show dialed phone number like - 0C81318304632C (it should be 081318304632) - 08D11157112 (it should be 0811157112). Why it's happening ? and how can I prevent it to happen ? Thanks in advance, Ikka Jakarta
2020 Oct 30
4
Sieve filter script EXECUTION FAILED
...etrovitsch.priv.at> wrote: > > > On 30/10/2020 17:11, @lbutlr wrote: > [...] > > echo $1 | sed -e '|</head>|<style>* {color:white !important; background-color: black !important; } </style></head>|' > > What should the sed stuff do? > TTBOMK '|' is not known by sed ... > > MfG, > Bernd sed accepts | as alternative for / as boundary. But I think the sed here is missing 's' from start, so this does not actually do anything... Aki
2020 Oct 30
6
Sieve filter script EXECUTION FAILED
So, I have the sieve working up to the point that it calls the script, and the script is called (I get different errors if the script is not there, for example). filter action execute program `darkmode.sh' [[EXECUTION ABORTED]] There's no other error logged (for example, when I had sieve_filter_bin_dir miss-set, I would get: sieve: action filter: failed to execute program
2020 Oct 30
0
Sieve filter script EXECUTION FAILED
On 30/10/2020 17:11, @lbutlr wrote: [...] > echo $1 | sed -e '|</head>|<style>* {color:white !important; background-color: black !important; } </style></head>|' What should the sed stuff do? TTBOMK '|' is not known by sed ... MfG, Bernd -- There is no cloud, just other people computers. -- https://static.fsf.org/nosvn/stickers/thereisnocloud.svg -------------- next part -------------- A non-text attachment was scrubbed... Name: pEpkey.asc Type: application/pgp-keys Size: 3110 bytes...
2020 Oct 30
0
Sieve filter script EXECUTION FAILED
...:white !important; background-color: black !important; } </style></head>|' > > > > What should the sed stuff do? > > Changes </head> to <style>* {color:white !important; background-color: black !important; } </style></head> > > > TTBOMK '|' is not known by sed ... > > Yes, it most certainly is. Perhaps try the script beforehand in a terminal: ---- snip ---- {2}sed -e '|x|y|' sed: -e expression #1, char 1: unknown command: `|' ---- snip ---- So no, it's not. You actually wanted: ---- snip ----...
2004 Oct 19
1
WINEDEBUG for a non-descript segfault
Hi, I'm loooking at a Linux program that calls WIne and then segfaults without any real information. Are there any debug channels that make most sense to try and trap in this specific case? Thanks, Mark
2010 May 28
2
4 CPU with WinXP on Centos 5.5 KVM?
Has anyone had any success getting WinXP 32bit to use 4 CPU's under Centos 5.5 KVM? I have tried everything and the best I can get is 2 CPU's. I tried everything listed here http://www.linux-kvm.com/content/running-windows-smp-guests I am using the VIRTIO drivers. Is this known limitation of KVM-83-164 (Centos5 release) with WinXP 32bit? I think there are reports of it working
2018 Feb 01
5
Migrate utils/ Python 2 scripts to Python 3
Sadly, neither the latest version of RedHat (released in 2014), nor the latest version of macOS (released in 2017) have any version of python3 available with the default system. On the other hand, TTBOMK, every system that does have python3 available also makes python2.7 also easily available. LLVM is not a primarily python project, so keeping up with the latest features of the language, and making them available for developers of LLVM is not terribly interesting (contrast with C++ -- enabling dev...
2018 Feb 01
1
Migrate utils/ Python 2 scripts to Python 3
...on instead. -Dimitry On 1 Feb 2018, at 22:47, James Y Knight <jyknight at google.com> wrote: Sadly, neither the latest version of RedHat (released in 2014), nor the latest version of macOS (released in 2017) have any version of python3 available with the default system. On the other hand, TTBOMK, every system that does have python3 available also makes python2.7 also easily available. LLVM is not a primarily python project, so keeping up with the latest features of the language, and making them available for developers of LLVM is not terribly interesting (contrast with C++ -- enabling dev...
2018 Feb 01
0
Migrate utils/ Python 2 scripts to Python 3
...Dimitry > On 1 Feb 2018, at 22:47, James Y Knight <jyknight at google.com> wrote: > > Sadly, neither the latest version of RedHat (released in 2014), nor the latest version of macOS (released in 2017) have any version of python3 available with the default system. On the other hand, TTBOMK, every system that does have python3 available also makes python2.7 also easily available. > > LLVM is not a primarily python project, so keeping up with the latest features of the language, and making them available for developers of LLVM is not terribly interesting (contrast with C++ -- en...
2011 Apr 07
3
IO rate quotas?
Hi Okay so we've been having this issue since forever and I figured why the heck not ask it here since it's mostly related to dovecot. The thing is, we have a huge amount of public folders (at the moment, around 1100). Now, with dovecot indexing and caching we're mostly okay, also being careful with things like Thunderbird 3's default 'Download everything' option
2016 Jul 25
7
grouping global variables by alignment: safe to do at LLVM level, or only at Clang level?
Dear all, Howdy! ;-) This is Abe of the Samsung Austin R&D Center`s compilers team. As an early part of a project that should help performance on some CPUs, I would like to cause global variables [at least from C and C++ programs] to be grouped together according to their alignment needs, which should help to slightly reduce RAM requirements in some cases. IMO this should be done at
2018 Feb 01
0
Migrate utils/ Python 2 scripts to Python 3
You might want to tell that to the Prominent North American Enterprise Linux Vendor that everybody is using... :) -Dimitry > On 1 Feb 2018, at 06:28, Tim Northover via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Since we seem to be voting, I'll -1 it. It's pretty ridiculous to have > a system without Python 3 in 2018 and anyone supplying such a > monstrosity
2018 Feb 01
3
Migrate utils/ Python 2 scripts to Python 3
Since we seem to be voting, I'll -1 it. It's pretty ridiculous to have a system without Python 3 in 2018 and anyone supplying such a monstrosity should be encouraged to stop it. Tim. On 1 February 2018 at 05:20, Philip Reames via llvm-dev <llvm-dev at lists.llvm.org> wrote: > +1 to what Chris and Justin said. > > I see no strong benefit to moving to python3 and substantial
2019 Oct 31
37
[Bug 3085] New: seccomp issue after upgrading openssl
https://bugzilla.mindrot.org/show_bug.cgi?id=3085 Bug ID: 3085 Summary: seccomp issue after upgrading openssl Product: Portable OpenSSH Version: 8.1p1 Hardware: Other OS: Linux Status: NEW Severity: critical Priority: P5 Component: sshd Assignee: unassigned-bugs at mindrot.org