Displaying 20 results from an estimated 455 matches for "collid".
Did you mean:
collin
2007 May 01
2
Autoattendant press 1 collides with extension numbers...
So I have whose autoattendant is colliding with their extensions...
Quick fix anyone?
Second someone presses say a person's extension (101) ... Autoattendant
sends them to the first context...
[companyx-main-aa]
exten => s,1,Background(companyx/companyx-main)
exten => s,2,Background(silence/10)
exten => s,3,Background(co...
2009 Aug 25
4
[LLVMdev] Patch: Compiling LLVM in Sparc
Hi,
I think I should rename the constants to be a little less likely to
collide. I think just upcasing them might be good enough?
- Daniel
On Tue, Aug 25, 2009 at 12:20 AM, Duncan Sands<baldrick at free.fr> wrote:
> Hi Venkatraman,
>
>> The current version in SVN fails to compile in sparc machines since
>> gcc defines "sparc" as a macro i...
2006 Aug 02
7
DO NOT REPLY [Bug 3988] New: -a collides with --flags
https://bugzilla.samba.org/show_bug.cgi?id=3988
Summary: -a collides with --flags
Product: rsync
Version: 2.6.8
Platform: x86
OS/Version: FreeBSD
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: rsync@oldach.net...
2015 Jul 29
0
[LLVMdev] What is getTombstoneKey?
...ther value
We usually use something like ~0 for the empty key and ~1 for
tombstones. See DenseMapInfo.h for some examples.
For the data structure background:
DenseMap is a quadratically probed hash map so when a collision occurs
it will pick another slot in the table. If we would delete the first
colliding item and simply empty out the slot it would become
impossible to find any other colliding item. That's why DenseMap
writes a special tombstone value into the slot on deletion which when
performing a lookup will advance to the next slot for this hash value.
- Ben
2014 Nov 19
1
Tripp-Lite USB constantlly disconnecting.
Charles,
We did notice that there were two categories. Is there a way if we
could determine if it is colliding?
We do have a USB analyzer so I'll see if that can be used to determine if
the UPS is disconnecting due to inactivity on the bus.
Thanks!
Shade
On Tue, Nov 18, 2014 at 8:40 PM, Charles Lepple <clepple at gmail.com> wrote:
> On Nov 18, 2014, at 6:28 PM, Shade Alabsa <shade3432...
2009 Aug 25
3
[LLVMdev] Patch: Compiling LLVM in Sparc
...an we add prefix ARCH_?
--Venkatraman
On Tue, Aug 25, 2009 at 2:36 AM, Eric Christopher<echristo at apple.com> wrote:
>
> On Aug 25, 2009, at 12:32 AM, Daniel Dunbar wrote:
>
>> Hi,
>>
>> I think I should rename the constants to be a little less likely to
>> collide. I think just upcasing them might be good enough?
>
> It should, this is the pattern generally emitted by all of the backends.
>
>>>>
>>>> $ cpp -dM /dev/null | grep sparc
>>>> #define sparc 1
>>>> #define __sparc__ 1
>>>> #d...
2015 Jul 29
2
[LLVMdev] What is getTombstoneKey?
Hi, All:
I am trying to extend EarlyCSE.cpp to do more commoning of GEP instruction,
it requires a hashtable with two keys, I defined
typedef ScopedHashTable<DoubleKey, std::pair<Value *, unsigned>,
DenseMapInfo<Value *>, LoadMapAllocator>
LoadHTType;
I declared a DoubleKey struct similar to CallValue but with two Value *
member, However I
2007 Dec 02
6
MD5 Collisions...
Hi everyone,
Not sure if you've read http://www.win.tue.nl/hashclash/SoftIntCodeSign/ .
should some kind of advisory be sent to advise people not to rely solely on MD5 checksums? Maybe an update to the man page is due ? :
"
MD5 has not yet (2001-09-03) been broken, but sufficient attacks have
been made that its security is in some doubt. The attacks on MD5 are in
the
2019 Mar 21
3
[summary] virtio network device failover writeup
...ces
>>>>> created by users?
>>>>
>>>> This is kinda controversial, but maybe separate netns names into 2 groups: hidden and normal.
>>>> To reference a hidden netns, you need to do it explicitly.
>>>> Hidden and normal netns names can collide as they will be maintained in different namespaces (Yes I?m overloading the term namespace here?).
>>>
>>> Maybe it's an unnamed namespace. Hidden until userspace gives it a name?
>>
>> This is also a good idea that will solve the issue. Yes.
>>
>>&...
2019 Mar 21
3
[summary] virtio network device failover writeup
...ces
>>>>> created by users?
>>>>
>>>> This is kinda controversial, but maybe separate netns names into 2 groups: hidden and normal.
>>>> To reference a hidden netns, you need to do it explicitly.
>>>> Hidden and normal netns names can collide as they will be maintained in different namespaces (Yes I?m overloading the term namespace here?).
>>>
>>> Maybe it's an unnamed namespace. Hidden until userspace gives it a name?
>>
>> This is also a good idea that will solve the issue. Yes.
>>
>>&...
2006 May 16
3
Best way to handle namespace collisions?
All,
I have a little namespace collision here. I am trying to use both
RubyfulSoup (an HTML parser - which I highly recommend by the way) and
the ActionView::Helpers::TextHelper class. Within the TextHelper class,
there''s an attempt to create a new "Tag" object. However, Tag is also
defined in the RubyfulSoup gem and it is _this_ Tag class whose
initialize method is
2009 Aug 25
0
[LLVMdev] Patch: Compiling LLVM in Sparc
...n
>
> On Tue, Aug 25, 2009 at 2:36 AM, Eric Christopher<echristo at apple.com> wrote:
>>
>> On Aug 25, 2009, at 12:32 AM, Daniel Dunbar wrote:
>>
>>> Hi,
>>>
>>> I think I should rename the constants to be a little less likely to
>>> collide. I think just upcasing them might be good enough?
>>
>> It should, this is the pattern generally emitted by all of the backends.
>>
>>>>>
>>>>> $ cpp -dM /dev/null | grep sparc
>>>>> #define sparc 1
>>>>> #define __sp...
2014 Nov 19
0
Tripp-Lite USB constantlly disconnecting.
...(It shouldn't, but it might be a workaround for other systems.)
The usbhid-ups driver splits the polling into two categories: "quick updates", to catch OL/OB/LB transitions, and "full updates" to catch everything else. It is possible that the higher pollinterval values are colliding with the pollfreq interval of 30 seconds.
The UPS is requesting that the OS (or in the case of Linux, a program like NUT which uses libusb) poll the interrupt endpoint at least every 40 ms, which is fairly often, and would cause higher CPU load. The defaults in NUT strike a compromise.
Note th...
2015 Feb 21
2
Call for testing: OpenSSH 6.8
...ted back
> during 6.7 testing is still failing for me more often than not. It's
> always the same reason, the script tries to use in-use port numbers.
> Reducing the forwarding script to only this last test loop succeeds
> every time, but is quite a hack for testing.
Is it colliding with itself or with other services running on your
test host? (especially with ones windows starts itself)
> - Last but not least, all tests in hostkey-agent.sh fail and I don't
> understand what's the problem here. I attached the log files for this
> problem to this mail....
2019 Mar 21
2
[summary] virtio network device failover writeup
...how do we avoid conflicting with namespaces
>>> created by users?
>>
>> This is kinda controversial, but maybe separate netns names into 2 groups: hidden and normal.
>> To reference a hidden netns, you need to do it explicitly.
>> Hidden and normal netns names can collide as they will be maintained in different namespaces (Yes I?m overloading the term namespace here?).
>
> Maybe it's an unnamed namespace. Hidden until userspace gives it a name?
This is also a good idea that will solve the issue. Yes.
>
>> Does this seems reasonable?
>>...
2019 Mar 21
2
[summary] virtio network device failover writeup
...how do we avoid conflicting with namespaces
>>> created by users?
>>
>> This is kinda controversial, but maybe separate netns names into 2 groups: hidden and normal.
>> To reference a hidden netns, you need to do it explicitly.
>> Hidden and normal netns names can collide as they will be maintained in different namespaces (Yes I?m overloading the term namespace here?).
>
> Maybe it's an unnamed namespace. Hidden until userspace gives it a name?
This is also a good idea that will solve the issue. Yes.
>
>> Does this seems reasonable?
>>...
2008 Jul 24
6
PCI MSI questions
Looking at the MSI implementation I have a couple of questions:
1) There currently seems to be a hidden requirement of NR_PIRQS in the
kernel needing to be no smaller than NR_IRQS in the hypervisor.
Otherwise, the pirq returned from PHYSDEVOP_map_pirq may collide
with the dynamic IRQs in the kernel or even be out of range altogether.
Therefore I think that NR_PIRQS has to become a variable defaulting
to 256 but getting initialized from a hypervisor reported value (perhaps
in start_info, or else from a new (sub-)hypercall).
2) While pci_restore_msi_state()...
2019 Jun 26
2
[PATCH 04/25] mm: remove MEMORY_DEVICE_PUBLIC support
...u_lock,
> - flags);
> - locked_pgdat = NULL;
> - }
> - put_devmap_managed_page(page);
> - continue;
> - }
> -
This collides with Ira's bug fix [1]. The MEMORY_DEVICE_FSDAX case
needs this to be converted to be independent of "public" pages.
Perhaps it should be pulled out of -mm and incorporated in this
series.
[1]: https://lore.kernel.org/lkml/20190605214922.17684-1-ira.weiny at intel.com/
2009 Nov 11
3
idmap_rid/idmap_hash collisions?
Is it possible for the uid/gid numbers that are generated by the
idmap_rid and idmap_hash to collide if there are a large number of
users or groups? I cannot seem to find any documentation on the
limitations of these plugins. Before using I want to make absolutely
sure that there won't be any collisions.
In doing some research about Likewise Open, I see it's hashing routine
can have th...
2012 May 23
8
Engine's Application Controller
...experience) the engine''s application controller is overidden by the app''s application controller. Wouldn''t it be better if the app would just load on top of the engine?
I mean that if an engine''s application controller has methods or anything else that does not collide with the stuff defined with the app, couldn''t it be used?
Isn''t this the default behaviour of ruby, that you can just reopen a class and add methods to it possibly overriding them but not deleting the rest of the class?
Regards,
Luís Ferreira
--
You received this message b...