Displaying 10 results from an estimated 10 matches for "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
...ns
1.
GLOB_DAT, ABS64, and RELATIVE relocations change semantics - they would
be required to retrieve and insert the memory tag of the symbol into the
relocated value. For example, the ABS64 relocation becomes:
sym_addr = get_symbol_address() // sym_addr = 0x1008
sym_addr |= get_tag(sym_addr & 0xf) // get_tag(0x1008 & 0xf == 0x1000)
*r_offset = sym_addr + r_addend;
2.
Introduce a TAGGED_RELATIVE relocation - in order to solve the problem
where the tag derivation shouldn't be from the relocation result, e.g.
static int array[16] = {};
// array_e...
2020 Sep 18
2
[MTE] Globals Tagging - Discussion
..._DAT, ABS64, and RELATIVE relocations change semantics - they would
> be required to retrieve and insert the memory tag of the symbol into the
> relocated value. For example, the ABS64 relocation becomes:
> > sym_addr = get_symbol_address() // sym_addr = 0x1008
> > sym_addr |= get_tag(sym_addr & 0xf) // get_tag(0x1008 & 0xf == 0x1000)
> > *r_offset = sym_addr + r_addend;
> >
> > Introduce a TAGGED_RELATIVE relocation - in order to solve the problem
> where the tag derivation shouldn't be from the relocation result, e.g.
> > static int arr...
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
...ABS64, and RELATIVE relocations change semantics - they would be required to retrieve and insert the memory tag of the symbol into the relocated value. For example, the ABS64 relocation becomes:
>>> > sym_addr = get_symbol_address() // sym_addr = 0x1008
>>> > sym_addr |= get_tag(sym_addr & 0xf) // get_tag(0x1008 & 0xf == 0x1000)
>>> > *r_offset = sym_addr + r_addend;
>>> >
>>> > Introduce a TAGGED_RELATIVE relocation - in order to solve the problem where the tag derivation shouldn't be from the relocation result, e.g.
>&...
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 th...
2020 Oct 09
3
[MTE] Globals Tagging - Discussion
...tions change semantics - they
> would
> > be required to retrieve and insert the memory tag of the symbol into
> the
> > relocated value. For example, the ABS64 relocation becomes:
> > sym_addr = get_symbol_address() // sym_addr = 0x1008
> > sym_addr |= get_tag(sym_addr & 0xf) // get_tag(0x1008 & 0xf ==
> 0x1000)
> > *r_offset = sym_addr + r_addend;
> > 2.
> >
> > Introduce a TAGGED_RELATIVE relocation - in order to solve the problem
> > where the tag derivation shouldn't be from the relocation re...
2006 May 22
0
problem in running amavisd-new with postfix on Centos4.0
...May 22 18:04:31 cluster1 postfix/smtp[16407]: 9E27811008D: to=<
ankush at sun.net>, orig_to=<ankush>, relay=127.0.0.1[127.0.0.1], delay=0,
status=deferred (host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in
processing, id=12095-07, spam_scan FAILED: Can't locate object method
"get_tag" via package "Mail::SpamAssassin::PerMsgStatus" at (eval 44) line
322, <GEN60> line 23. (in reply to end of DATA command))
the master.conf file ---> default entries are skipped
smtp-amavis unix - - n - 2 smtp
-o smtp_data_done_timeout=1200
-o smtp_sen...
2006 May 22
0
Re: problem in running amavisd-new with postfix on Centos4.0(problem solved)
...ster1 postfix/smtp[16407]: 9E27811008D: to=<
> ankush at sun.net>, orig_to=<ankush>, relay=127.0.0.1[127.0.0.1], delay=0,
> status=deferred (host 127.0.0.1[127.0.0.1] said: 451 4.5.0 Error in
> processing, id=12095-07, spam_scan FAILED: Can't locate object method
> "get_tag" via package "Mail::SpamAssassin::PerMsgStatus" at (eval 44) line
> 322, <GEN60> line 23. (in reply to end of DATA command))
>
>
> the master.conf file ---> default entries are skipped
>
> smtp-amavis unix - - n - 2 smtp
> -o smtp_data_d...
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 me...