Displaying 10 results from an estimated 10 matches for "get_tags".
Did you mean:
get_tag
2013 Jan 21
15
Terrible exported resources performance
Hi,
Since the below is a little long, I put my question at the top: how do I
troubleshoot awful exported resources performance in puppet and is there
anything I can tweak to get it to run under 10 minutes in larger
environments?
I have a fairly modest environment (118 nodes, but prod will be at least
twice as large). I''m trying to move my distributed nagios setup to one
based on
2020 Sep 17
4
[MTE] Globals Tagging - Discussion
Hi folks,
ARM v8.5 introduces the Memory Tagging Extension (MTE), a hardware that
allows for detection of memory safety bugs (buffer overflows,
use-after-free, etc) with low overhead. So far, MTE support is implemented
in the Scudo hardened allocator (compiler-rt/lib/scudo/standalone) for
heap, and stack allocation is implemented in LLVM/Clang behind
-fsanitize=memtag
2020 Sep 18
2
[MTE] Globals Tagging - Discussion
Hi David,
Does the tagging of these hidden symbols only protect against RW
> primitives without a similar ldg? If I knew the address of the hidden
> symbol I could presumably use the same sequence, but I think I'm
> stretching what memory tagging is supposed to protect against.
I might be missing your point here - but don't forget that the local
globals are always PC-relative
2006 Mar 08
2
libflac++ reading vorbis metadata
I'm trying to use libFLAC++ v1.1.2, to read Song information (like artist,
trackname etc..). So..
I read metadata from file
FLAC::Metadata::get_streaminfo("somefile.flac", infosik);
and It's ok - no error, then I read vorbis info:
FLAC::Metadata::VorbisComment vorbis_kom(infosik);
int number_of_comments = vorbis_kom.get_num_comments();
and after that I have
2020 Sep 21
2
[MTE] Globals Tagging - Discussion
> I might be missing your point here - but don't forget that the local globals are always PC-relative direct loads/stores.
I did forget! Thanks for clarifying, now I understand.
On Fri, 18 Sep 2020 at 20:51, Evgenii Stepanov <eugenis at google.com> wrote:
>
>
>
> On Fri, Sep 18, 2020 at 12:18 PM Mitch Phillips via llvm-dev <llvm-dev at lists.llvm.org> wrote:
2006 Mar 10
1
libflac++ reading vorbis metadata
On 2006-03-09 (Thu) ,at 23:20:50 Josh Coalson wrote:
> the vorbiscomments are not in the streaminfo. you want to do:
>
> FLAC::Metadata::VorbisComment tags;
> if (FLAC::Metadata::get_tags("somefile.flac", tags)) {
> FLAC::Metadata::VorbisComment::Entry entry =
> tags->get_comment(tags->get_num_comments-1); //e.g. last tag
> // do something with it...
> }
>
> Josh
Oki, thanks it works. However I still have some questions about all the...
2020 Oct 09
3
[MTE] Globals Tagging - Discussion
>
> note: these bits are not really reserved for os or processor
> specific use in ELF. in practice they are processor specific
> so it will be STO_AARCH64_TAGGED.
>
Correct.
note2: undefined symbol references will need correct marking
> too if objects may get copy relocated into the main exe and
> linkers should check if definitions match references.
Yep - at this point I
2006 May 22
0
problem in running amavisd-new with postfix on Centos4.0
hey friends,
I am trying to configure amavisd-new with postfix 2.1.5.
amavisd-new-2.4.1-1.el4.rf
spamassassin-3.0.5-3.el4
Mail-SpamAssassin-3.1.1
clamav-0.88.2-1
there are no Razor or Dcc files on the system.
I am getting this error when I try to send any mail.
amavis[12095]: (12095-07) (!) PRESERVING EVIDENCE in
/var/amavis/tmp/amavis-20060522T180431-12095
May 22 18:04:31 cluster1
2006 May 22
0
Re: problem in running amavisd-new with postfix on Centos4.0(problem solved)
hey friends,
my problem is solved, the culprit was the typo mistake in master.cf file of
postfix.
Thanks & Regards
Ankush Grover
On 5/22/06, ankush grover <ankushcentos at gmail.com> wrote:
>
> hey friends,
>
> I am trying to configure amavisd-new with postfix 2.1.5.
> amavisd-new-2.4.1-1.el4.rf
> spamassassin-3.0.5-3.el4
> Mail-SpamAssassin-3.1.1
>
2008 Jan 26
1
funny characters in file names
def file_tail (file, offset)
56 f=File.new(file)
f.seek(-offset,IO::SEEK_END)
f.read
end
def get_tags file
file_tail(file, 128)
end
using these def to get ID3 data
works well till it encounters this
Äîðîãàÿïðîïàæà.mp3
56 :in ''initialize'' : Invalid argument - c://///Äîðîãàÿïðîïàæà.mp3
(Errno::EINVAL)
--~--~---------~--~----~------------~-------~--~----~
You received this mes...