Displaying 20 results from an estimated 204 matches for "rehash".
2014 Feb 27
1
AIX 7.1 Winbind Module Problems
...winbind module for 3.6.0.
methods.cfg
WINBIND:
program_64 = /usr/lib/security/WINBIND_64
(have tried authonly here)
NIS:
program = /usr/lib/security/NIS
program_64 = /usr/lib/security/NIS_64
DCE:
program = /usr/lib/security/DCE
[root] on [barrow] on [/rehash/samba-3.6.0] {932} /security | grep
WINBIND <
lrwxrwxrwx 1 root staff 33 Feb 19 14:34 WINBIND_64 ->
/opt/pware64/lib/security/WINBIND
lsuser -R WINBIND ALL lists nothing
smb.conf
[root] on [barrow] on [/opt/pware64/lib/security] {938} cat
/opt/pware64/lib/smb.conf...
2004 Aug 06
0
admin 'rehash' broken in icecast 1.3.12?
I tried admin rehash for the first time since upgrading to 1.3.12 today. The
rehash took at least 30 seconds [If not longer -- I didn't time it very
closely] and icecast slowly snuck up to 99% CPU usage. I tried issuing the
'alias' command just to try and get a response from the console and that
never respo...
2014 Feb 27
0
AIX WINBIND ISSUES
...load winbind
module for 3.6.0.
methods.cfg
WINBIND:
program_64 = /usr/lib/security/WINBIND_64
(have tried authonly here)
NIS:
program = /usr/lib/security/NIS
program_64 = /usr/lib/security/NIS_64
DCE:
program = /usr/lib/security/DCE
[root] on [barrow] on [/rehash/samba-3.6.0] {932} /security | grep
WINBIND <
lrwxrwxrwx 1 root staff 33 Feb 19 14:34 WINBIND_64 ->
/opt/pware64/lib/security/WINBIND
lsuser -R WINBIND ALL lists nothing
smb.conf
[root] on [barrow] on [/opt/pware64/lib/security] {938} cat
/opt/pware64/lib/smb.conf
# S...
2014 Feb 27
0
AIX 7.1 Winbind Module Load Issues
...winbind module for 3.6.0.
methods.cfg
WINBIND:
program_64 = /usr/lib/security/WINBIND_64
(have tried authonly here)
NIS:
program = /usr/lib/security/NIS
program_64 = /usr/lib/security/NIS_64
DCE:
program = /usr/lib/security/DCE
[root] on [barrow] on [/rehash/samba-3.6.0] {932} /security | grep
WINBIND <
lrwxrwxrwx 1 root staff 33 Feb 19 14:34 WINBIND_64 ->
/opt/pware64/lib/security/WINBIND
lsuser -R WINBIND ALL lists nothing
smb.conf
[root] on [barrow] on [/opt/pware64/lib/security] {938} cat
/opt/pware64/lib/smb.conf...
2016 Mar 15
7
RFC: DenseMap grow() slowness
...in the function. EarlyCSE is the best example, but Reassociate and MachineCSE have this to some degree as well (there might be others?). To put it simply: at least in my profile, EarlyCSE spends ~1/5 of its time growing DenseMaps. This is kind of… bad.
grow() is inherently slow because it needs to rehash and reinsert everything. This means growing a DenseMap costs much, much more than growing, for example, a vector. I talked about this with a few people and here are some possibilities we’ve come up with to improve this (some of which probably aren’t what we want):
1. Use a map that doesn’t require...
2004 Aug 06
0
admin 'rehash' broken in icecast 1.3.12?
Beau D Simensen <simensen@halogen.org> writes:
> I tried admin rehash for the first time since upgrading to 1.3.12 today. The
> rehash took at least 30 seconds [If not longer -- I didn't time it very
> closely] and icecast slowly snuck up to 99% CPU usage. I tried issuing the
> 'alias' command just to try and get a response from the console and t...
2011 Dec 22
3
6.2 and login.defs
Hi,
After the 6.2 upgrade, the new /etc/login.defs has:
? ENCRYPT_METHOD SHA512 instead of MD5Is it safe to just apply the change?
Will my current MD5 passwords in /etc/passwd still work and only new passwords will be SHA512?
Or are they automatically "converted" (rehashed) to SHA512?
Thx,
JD
2009 Jun 08
1
[SUGGESSTION 1/1] OCFS2: automatic dlm hash table size
backgroud:
ocfs2 dlm uses a hash table to store dlm_lock_resource objects. the often used lookup is performed on the hash table.
problem:
for usages that there are huge number of inodes(thus huge number of dlm_lock_resource objects) in a ocfs2 volume, the lookup performance becomes a problem. the lookup holds spin_lock which could put all others cpus into the state of aquring the spinlock. if
2020 Mar 28
0
[klibc:update-dash] dash: exec: Never rehash regular built-ins
...ibc/klibc.git;a=commit;h=e8b1ed5d253922aeb880518f27312b112e360f09
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Sat, 19 May 2018 02:39:51 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: exec: Never rehash regular built-ins
[ dash commit 59e62c9a3c67eef2bf9dc86e5bf0b2c88d6e8571 ]
As regular (including special) built-ins can never be overridden,
we should never remove them from the hash table.
Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben at d...
2003 Jun 04
1
Maybe a Rehash Call Queues
Hi All,
I'm using the Call Queue without the Agent Login to provide a company
with a Call Queue for their tech support Staff. Basically they have
several techs the work from home. I dump the calls back out the PSTN
via a SIP gateway.
With the Queue application is there a way to define an absolute time out
so that if a caller sits in the queue for say 10 minutes with out being
serviced they
2016 Mar 15
2
RFC: DenseMap grow() slowness
...ction. EarlyCSE is the best example, but Reassociate and MachineCSE have this to some degree as well (there might be others?). To put it simply: at least in my profile, EarlyCSE spends ~1/5 of its time growing DenseMaps. This is kind of… bad.
>
> grow() is inherently slow because it needs to rehash and reinsert everything. This means growing a DenseMap costs much, much more than growing, for example, a vector. I talked about this with a few people and here are some possibilities we’ve come up with to improve this (some of which probably aren’t what we want):
>
> 1. Use a map that doesn...
2007 Jun 23
0
[1060] trunk/wxruby2/swig/fixevents.rb: Include some previously missing events, rehash and simplify
...fd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[1060] trunk/wxruby2/swig/fixevents.rb: Include some previously missing events, rehash and simplify</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>1060</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2007-06-23 08:42:20 -0400 (Sat, 23 Jun 2007)</dd...
2016 Mar 15
2
RFC: DenseMap grow() slowness
...arlyCSE is the best example, but Reassociate and MachineCSE have this to some degree as well (there might be others?). To put it simply: at least in my profile, EarlyCSE spends ~1/5 of its time growing DenseMaps. This is kind of… bad.
>>
>> grow() is inherently slow because it needs to rehash and reinsert everything. This means growing a DenseMap costs much, much more than growing, for example, a vector. I talked about this with a few people and here are some possibilities we’ve come up with to improve this (some of which probably aren’t what we want):
>>
>> 1. Use a map th...
2004 Aug 06
1
[icecast-dev] Some nits in icecast 1.3.12
Attached are nits I found in 1.3.12. That first patch there
looks more like a bug than a nit.
------
Dave Hayes - Consultant - Altadena CA, USA - dave@jetcafe.org
>>> The opinions expressed above are entirely my own <<<
Before criticizing people, walk a mile in their shoes. Then
when you do criticize them, you will be a mile away and have
their shoes.
*** avl_functions.c
2004 Aug 06
1
Some nits in icecast 1.3.12
Attached are nits I found in 1.3.12. That first patch there
looks more like a bug than a nit.
------
Dave Hayes - Consultant - Altadena CA, USA - dave@jetcafe.org
>>> The opinions expressed above are entirely my own <<<
Before criticizing people, walk a mile in their shoes. Then
when you do criticize them, you will be a mile away and have
their shoes.
*** avl_functions.c
2006 Jun 05
3
Swap: typical rehash. Why?
I can't resist. Read the thread that was pointed to on lkml. ROTFLMAO.
*Real* UNIX addressed these problems long ago. I guess the "Gurus"
suffer from NIH (Not Invented Here) syndrome.
Given a "general purpose" system, tunability is a must. UNIX, as
delivered by USL in such examples as Sys V, had tunables that let admins
tune to their needs. A single "swappiness"
2011 Mar 15
10
[LLVMdev] Prevent unbounded memory consuption of long lived JIT processes
This series of patches address several issues causing memory usage to grow
indefinetely on a long lived process.
These are not convenional leaks -- memory would have been freed when the LLVM
context or/and JIT engine is destroyed -- but for as long as they aren't the
memory is usage effectively ubounded.
The issues were found using valgrind with '--show-reachable=yes' option:
1.
2006 Apr 17
2
Building Dynamic DOM Element IDs for RJS Templates
...link_to_remote "Do Foo", :url =>{:action => "do", :id =>
foo.id} %>
</div>
How do, and can I, build that id in the RJS template?
Also, can anyone recommend a good Ruby syntax book that would help me
out with Rails? I know Java, so I don''t want a rehash of OO
programming, I just want the meat of using Ruby.
Thx.
--
Posted via http://www.ruby-forum.com/.
2016 Jan 27
4
Just need to vent
Sylvain CANOINE wrote:
>> De: "Jonathan Billings" <billings at negate.org>
>> Maybe you're not aware of it, but there are a LOT of things that
>> systemd fixes that people are happy about.
> Like what ? I don't remember there were as many errors to fix before
> systemd appeared.
>
Agreed. The speed of boot and shutdown? Whoop-de-do. I've got
2004 Aug 14
7
Free MOH MP3
Hello All,
Sorry to rehash a question I am sure has shown several time but I cannot
google up the answer from the lists.
Does anyone know where I can get some royalty free, cost free music for
my music on hold?
I saw someone's post several weeks ago that said that this exists at a
download site but I have not bee...