Displaying 20 results from an estimated 44 matches for "patern".
Did you mean:
pattern
2023 Sep 04
2
[patch] ssh-keygen(1): generate Ed25519 keys when invoked without arguments
On 9/4/23 16:43, Joseph S. Testa II wrote:
> I very often see IT personnel and developers simply use the default
> options for ssh-keygen. They just don't care/don't know to care.
> Switching the default to ED25519 would bring the equivalent security
> up from 112-bits to 128-bits (as 2048-bit RSA is equivalent to 112-bits
> of symmetric strength), which would be a nice
2016 Sep 01
2
RFC: FileCheck Enhancements
I wanted to start making some change. But I thought and I don't understand why it's necessary to add @.
// RUN: FileCheck %s
// CHECK-DEFINE-PATERN: register(n): {{[a-z]+}}n
// CHECK: %[[register("1")]]
// CHECK-SAME: %[[register("2")]]
// CHECK: %[[register("1")]]
// CHECK-SAME: %[[register("2")]]
This example will be equivalent to
// RUN: FileCheck %s
// CHECK-DEFINE-PATERN: register(n): {{[a-z...
2017 Sep 08
3
Problems to configure IMAP Quota
...ilbox is stored in a Mysql database.
For several reasons, we would now want to use the IMAP quota feature,
not only to let users have the quota displayed from their Mail clients.
But testing that features, I encounter two problems :
1) It seems that when we use the sql dict, a map contaning the patern
"priv/quota/limit/messages" is mandatory. Not specifying it in
dovecot-dict-sql.conf.ext issues an error. As we are interested only by
the storage size and don't want to process the number of messages, how
to get rid of it ?
2) We store the storage value in kilobytes.
But the plugi...
2016 Sep 05
2
RFC: FileCheck Enhancements
...hey are different.
vedant
> On Sep 1, 2016, at 2:05 AM, Elena Lepilkina <Elena.Lepilkina at synopsys.com> wrote:
>
> I wanted to start making some change. But I thought and I don't understand why it's necessary to add @.
>
> // RUN: FileCheck %s
> // CHECK-DEFINE-PATERN: register(n): {{[a-z]+}}n // CHECK:
> %[[register("1")]] // CHECK-SAME: %[[register("2")]] // CHECK:
> %[[register("1")]] // CHECK-SAME: %[[register("2")]]
>
> This example will be equivalent to
>
> // RUN: FileCheck %s
> // CHECK-DEF...
2019 Aug 26
2
LLVM X86 backend combineIncDecVector's transform
...est suite. I'd
like to work through as many of the regressions as possible ahead of time.
One source of such regressions is combineIncDecVector in the X86 backend.
It changes (add X, 1) into (sub X, -1) in order to be able to use the
pcmpeq instruction.
This is all well and good, but numerous paterns are matching an add rather
than a sub, and in fact, DAGCombiner does the inverse transform by itself
as it consider the add form to be canonical. An example of such pattern is
the X86ISD::AVG node, but there are more.
It seems to me like this transformation is useful, but doesn't happen at
th...
2016 Aug 31
6
RFC: FileCheck Enhancements
...>
> // RUN: echo "%r1 %r2" | FileCheck %s
> // CHECK: %[[register:[a-z]+]]1
> // CHECK-SAME: %[[register]]2
>
> With the proposed changes, we'll be able to write something like:
>
> // RUN: echo "%cmp %cmp" | FileCheck %s
> // CHECK-DEFINE-PATERN: register(n): {{[a-z]+}}n
> // CHECK: %[[register("1")]]
> // CHECK-SAME: %[[register("2")]]
At first I thought that `register(n)` was some sort of macro, but if it is suppose to be equivalent to the example above of what we do “today”, then using “register(“1”)” is sup...
2002 Jan 30
2
buffered memory grows
Hi.
I have shifted from redhat 7.1 to 7.2, and have several machines running
both versions now. I have noticed, that the memory usage patern is very
different on machines using ext2 and ext3 - the ones using ext2 usually use
5-10 MB of "buff" memory, but the ones with ext3 grow to 50MB on machines
with 128MB, and to 250MB with on machine with 512 MB. I have conducted a
test, and changed /etc/fstab on the 7.2 machine to mount a...
2002 Jan 30
1
"Buff" memory grows
Hi.
I have shifted from redhat 7.1 to 7.2, and have several machines running
both versions now. I have noticed, that the memory usage patern is very
different on machines using ext2 and ext3 - the ones using ext2 usually use
5-10 MB of "buff" memory, but the ones with ext3 grow to 50MB on machines
with 128MB, and to 250MB with on machine with 512 MB. I have conducted a
test, and changed /etc/fstab on the 7.2 machine to mount a...
2005 Mar 11
1
QoS and VoIP
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi all,
I made some filters on tc to match the VoIP traffic based on RTP packet
RFC 1889.
The only patern I found was the rtp version and the payload type wich
identify the codec. The u32 rules are:
- - match ip protocol 0x11 0xff -> UDP
- - match u8 0x80 0xc0 at 28 -> RTP version 2 (two fists bits ''10'' of the
byte)
- - match u8 0x61 0x7f at 29 -> Codec number 97 (seven bits...
2019 Aug 26
2
LLVM X86 backend combineIncDecVector's transform
...of the regressions as possible ahead of time.
> >
> > One source of such regressions is combineIncDecVector in the X86
> backend. It changes (add X, 1) into (sub X, -1) in order to be able to use
> the pcmpeq instruction.
> >
> > This is all well and good, but numerous paterns are matching an add
> rather than a sub, and in fact, DAGCombiner does the inverse transform by
> itself as it consider the add form to be canonical. An example of such
> pattern is the X86ISD::AVG node, but there are more.
> >
> > It seems to me like this transformation is us...
2019 Aug 26
1
LLVM X86 backend combineIncDecVector's transform
...test suite. I'd like to work through as many of the regressions as possible ahead of time.
One source of such regressions is combineIncDecVector in the X86 backend. It changes (add X, 1) into (sub X, -1) in order to be able to use the pcmpeq instruction.
This is all well and good, but numerous paterns are matching an add rather than a sub, and in fact, DAGCombiner does the inverse transform by itself as it consider the add form to be canonical. An example of such pattern is the X86ISD::AVG node, but there are more.
It seems to me like this transformation is useful, but doesn't happen at the...
2016 Sep 01
2
RFC: FileCheck Enhancements
...// RUN: echo "%r1 %r2" | FileCheck %s // CHECK:
>> %[[register:[a-z]+]]1 // CHECK-SAME: %[[register]]2
>>
>> With the proposed changes, we'll be able to write something like:
>>
>> // RUN: echo "%cmp %cmp" | FileCheck %s // CHECK-DEFINE-PATERN:
>> register(n): {{[a-z]+}}n // CHECK: %[[register("1")]] //
>> CHECK-SAME: %[[register("2")]]
>
> At first I thought that `register(n)` was some sort of macro, but if it is suppose to be equivalent to the example above of what we do “today”, then using “r...
2015 Nov 15
6
[Bug 92959] New: [NV1F celcius GeForce4 MX] Rendering artifacts, screen corruption, system reset.
https://bugs.freedesktop.org/show_bug.cgi?id=92959
Bug ID: 92959
Summary: [NV1F celcius GeForce4 MX] Rendering artifacts, screen
corruption, system reset.
Product: Mesa
Version: unspecified
Hardware: x86 (IA32)
OS: Linux (All)
Status: NEW
Severity: major
Priority: medium
2005 Aug 19
2
pam_radius fail open?
...ething which
might possibly be a security problem but you're not certain if it is or
not -- then please let us know.?
I recently installed pam_radius according to the instructions located at
the following address:
https://www.freebsd.uwaterloo.ca/twiki/bin/view/Freebsd/PamRadius?shin=print.patern
The instructions were very helpful.
However, I?m not sure if I?ve mistakenly stumbled onto a fail open
situation in that I?m fairly new to FreeBSD. Namely, while configuring
/etc/pam.conf to validate SSH login credentials via radius against our
existing Active Directory, I mistakenly typed th...
2009 Mar 26
2
[LLVMdev] GSoC 2009 application
...I am having a good background in compilers. My current masters
thesis is aimed at automatic parallel code from c programs target for the
Cell Processor using speculative and runtime parallelization techniques. As
a part of this I am taking a profile driven approach to figure out the
program access paterns to accurately model the same.
I am using LLVM as the underlying compiler infrastructure so am already
familiar to some extent with the LLVM system. I am adding new passes to LLVM
to utilize the profile information for a weighted alias analysis , advanced
loop transformations and codegenration...
2004 Sep 10
1
Re: ACM codec
...ks. All I can tell you
now is about what I did and about my sources. So, considering your
enthusiasm, I suggest you take the code I wrote and continue or use as
reference. If you want this, let me know. If not, then I ask you for same
patience, since I have not much time. It's not important the paternity of
the driver, but the driver done. I just think it should not be published
before tested.
Now, let's talk about your lest comments.
>Which says nothing. The above text applies to renderers and capture
>filters, not to intermediate filters like compressors. Especially all
>standar...
2019 May 31
2
Easy solution for custom firewall rules- is it possible?
Hello All-
I've looked in several places and haven't found an answer to this
question: is it possible to have libvirt add custom rules to iptables
for virtual network interfaces? I took a look at the "Firewall and
Network Filtering in Libvirt" page and it seems overly complicated for
what I want to do.
Given an interface virbr2 and its network 192.168.4.0/24, libvirt
installs
2009 Apr 03
2
[LLVMdev] GSoC 2009 application
...I am having a good background in compilers. My current masters
thesis is aimed at automatic parallel code from c programs target for the
Cell Processor using speculative and runtime parallelization techniques. As
a part of this I am taking a profile driven approach to figure out the
program access paterns to accurately model the same.
Relevant Skills:
I have been using the LLVm system for some time so am somewhat familiar with
the system. I have strong C/C++ skills acquired by working on several
projects including my thesis. Besides my thesis I have previously taken
classes on Compilers, compiler...
2016 Aug 24
9
RFC: FileCheck Enhancements
Hi all,
Some discussions and comments were made in reviews. Much time has already passed since last comment and uploading changed patches. I made small summary report about features here, because there are some doubts about syntax of some features and changes in patches and it'll be great to know more opinions.
1. FileCheck Enhancement - CHECK-WORD (https://reviews.llvm.org/D22353)
I replace
2019 May 31
0
Re: Easy solution for custom firewall rules- is it possible?
Hi,
libvirts nwfilter module can achieve that.
I'm currently working on opt-out patches to disable that functionality
if wished. I also don't use firewalld.
It's both paternalizing and annoying and takes away user flexilibity in
exchange for nothing.
anyways
Check the nwfilter page to write own filters for the beginning:
https://libvirt.org/formatnwfilter.html#nwfwrite
some more info:
https://www.redhat.com/archives/libvir-list/2010-June/msg00762.html
https://ac...