Displaying 20 results from an estimated 20 matches for "inq".
Did you mean:
in
2013 Feb 27
1
lattice xyplot point labelling
This is my reproducible example
tv.ms<-structure(list(inq = structure(4:17, .Label = c("D4", "D5", "D6a",
"D6b", "D6c", "D7", "D8", "F4", "F5a", "F5b", "F6a", "F6b", "F6c",
"F6d", "F7a", "F7b", &...
2015 Jan 29
2
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...y POSIX,
and should never be used by user code. It's unlikely to cause issues
with these long type names, but I have certainly seen it cause issues
elsewhere (and using the style encourages others to do it).
> + SAVE_STACK;
> + int N2 = st->nfft >> 1;
> + float32x4_t inq, outq;
> + float32x2_t scale;
> + float *in = (float *)fin;
You're dropping the const qualifier for no reason. Also, vld1q_f32()
takes a const float32_t *, NOT a float *, and they are not compatible on
all compiler versions.
> + float *out;
> + int i;
> + ALLOC(temp...
2011 Jan 12
2
RNetCDF: retrieving variable names and units
Dear List,
does anybody has experience with the RNetCDF package? I manage to open a connection and copy data from a ncdf file but would need a way to automatically retrieve variable names (ideally all of them from one file) and units from the file.
Any ideas?
Jannis
2000 May 07
1
FW: Browsing issues NT WS 4.0 and Samba
...iteable = no
>
> [sun]
> path = /u/data/ld1/sun/sun
> strict sync = yes
> sync always = yes
> force user = profadv
> force group = sun
> writeable = Yes
> force create mode = 0775
> force directory mode = 0775
> # veto files =
> /*ASI*/*AUS*/*ELA*/*ELI*/*INQ*/*NZL*/*TES*/*TRN*/*UK*/*.idx/*.int/*.gnt/ba
> ck/bin/docs/gnts/gzipsrc/ints/io/lib/linked/lost+found/pa/save/sunback/Sun
> Query/unlinked/*.MRG/p/print/worktmp/
>
> [homevcq]
> path = /u/data/home/vcq
> force user = vcq
> force group = sun
> writeable = Yes
> force...
2015 Jan 29
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...er be used by user code. It's unlikely to cause issues with these
> long type names, but I have certainly seen it cause issues elsewhere (and
> using the style encourages others to do it).
>
>> + SAVE_STACK;
>> + int N2 = st->nfft >> 1;
>> + float32x4_t inq, outq;
>> + float32x2_t scale;
>> + float *in = (float *)fin;
>
>
> You're dropping the const qualifier for no reason. Also, vld1q_f32() takes a
> const float32_t *, NOT a float *, and they are not compatible on all
> compiler versions.
>
>> + float *ou...
2000 May 04
0
Browsing issues NT WS 4.0 and Samba
...s
force create mode = 0775
force directory mode = 0775
writeable = no
[sun]
path = /u/data/ld1/sun/sun
strict sync = yes
sync always = yes
force user = profadv
force group = sun
writeable = Yes
force create mode = 0775
force directory mode = 0775
# veto files =
/*ASI*/*AUS*/*ELA*/*ELI*/*INQ*/*NZL*/*TES*/*TRN*/*UK*/*.idx/*.int/*.gnt/back
/bin/docs/gnts/gzipsrc/ints/io/lib/linked/lost+found/pa/save/sunback/SunQuer
y/unlinked/*.MRG/p/print/worktmp/
[homevcq]
path = /u/data/home/vcq
force user = vcq
force group = sun
writeable = Yes
force create mode = 0775
force directory mode = 0...
1998 Aug 26
2
NT timestamps, WINS lookup
On Wed, 26 Aug 1998, Matthew Chapman wrote:
> > Two questions. First, timestamps seem to be getting screwed up when I
> > access files on the company's NT server. Someone (using NT) creates some
> > files. My ls -l output shows them as having screwed up dates (ie, 1935,
> > 2027, etc). 95, 98, and NT users see the dates as normal. When I copy
> > any files
2006 Feb 10
0
Multiple frames in packet
..._new(speex_bits_nbytes(&obj->bits));
//speex_bits_insert_terminator(&obj->bits);
m->size=speex_bits_write(&obj->bits,m->data,m->size);
ms_queue_put(outq,m);
}
And my decode function
void ms_speex_dec_process(MSSpeexDec *obj)
{
....
m=ms_queue_get(inq);
g_return_if_fail(m!=NULL);
speex_bits_reset(&obj->bits);
ms_fifo_get_write_ptr(outf,gran,(void**)&output);
g_return_if_fail(output!=NULL);
if (m->data!=NULL){
speex_bits_read_from(&obj->bits,m->data,m->size);
/* decode */
int...
2006 Jun 15
1
Queues and local channels
I am using AddQueueMember to add a local channel to a queue. My
(simplified) dial plan is
[AddMember]
exten => 789,1,AddQueueMember(SomeQ|Local/456@Agent)
[Queue]
exten => 123,1,Queue(SomeQ|nt|||120)
exten => 123,2,Hangup()
exten => h,1,NoOp(InQ)
[Agent]
exten => 456,1,Dial(SIP/456)
exten => 456,2,Set(SomeVar=SomeValue)
exten => 456,3,Hangup
exten => h,1,NoOp(InAgent)
when a call comes into the Queue, it is passed to the 456 agent. All is
fine and well.
So, what's my problem ? Well, I want to be able to trap the hangup...
2016 May 09
0
CentOS-6.5 - CD/DVD does not sense media
....
wodim --devices
wodim: Overview of accessible drives (1 found) :
--------------------------------------------------------------------
0 dev='/dev/scd0' rwrw-- : 'HL-DT-ST' 'DVD-RAM GH22NS30'
--------------------------------------------------------------------
cdrecord -inq
Device was not specified. Trying to find an appropriate drive...
Detected CD-R drive: /dev/cdrw
Using /dev/cdrom of unknown capabilities
Device type : Removable CD-ROM
Version : 5
Response Format: 2
Capabilities :
Vendor_info : 'HL-DT-ST'
Identification : 'DVD-RAM GH22NS3...
2015 Jan 20
6
[RFC PATCH v1 0/2] Encode optimize using libNE10
Hello opus-dev,
I've been cooking up this patchset to integrate NE10 library into opus.
Current patchset focuses on encode use case mainly effecting performance of
clt_mdct_forward() and opus_fft() (for float only)
Glad to report the following on Encode use case:
(Measured on my Beaglebone Black Cortex-A8 board)
- Performance improvement for encode use case ~= 12.34% (Based on time -p
2004 Mar 17
0
failure notice
...HbEtpusOJ7uIdIfoCiUwIKSjx7bb7MALlH
NDAC28cpA5Ev+2K7NV8BdqYlXu5N1C4dDX4a+hQ68dU2g4M+GnA6V/uOBHBC8Zd3yclK0adQ
L/5GUe7HK4rqDSCCx4KI0zKXQ7kClzbECu9YDDShvD6oP+rqHVS1Tde7KvLy9fJOnxQu013+
w0HK0O/YJ99E9QSmM/gXjElo146rlK+YquTjMDHfScl0571APdz6261Bqu9FrWagZEoSjxqH
aEmoFXoqMt+HSzRXaU8w3Ey1PWqvsULMWxGIElZSKIAjR/inq+ObtRqVDUfpN/mH+XXcVemt
bkRk2/21pF1eApwqWyCeVf58OvaqeQUCOUwMgo6XzbxOq8S9hMdKBq82q/r7WCFgGURggKyr
vnlY4h7idmjfg5N4MRXOiKJRCoObKmIoZvCyUyl4smQRYxykIRBnK9TbZQE9pX4CMixOVear
vKR3YpWI1X+yYn9a5lTgsKxzMRXbIeWg1r/4rQSAS2MRVFD55vSxIP3JVcm1fWRfGoENf4b8
3nYc97wENx9S8Or48yLfOb2E8OgYcidtqDALVB4Nllma13mbGBXUjVSWi...
2005 Apr 26
8
HTB Weird Shaping Question(Bug?). Please Help!
...ried top, it doesn''t LOOK LIKE a
CPU load problem.
Script:
####################################
#!/bin/sh
#ADDRs
ROUTER=192.168.1.1
LEO_LAP_WL=192.168.1.31
LEO_LAP=192.168.1.32
LEO_DES=192.168.1.33
PONY_DES=192.168.1.34
ERIC_DES=192.168.1.35
ERIC_LAP=192.168.1.36
# Interfaces
OUTQ=imq0
INQ=imq1
# Speed Rates
ROOT_OUTRATE=200kbit
ROOT_INRATE=1310kbit
CLASS_OUTRATE=200kbit
CLASS_INRATE=1310kbit
SUBCLASS_OUTRATE=180kbit
SUBCLASS_INRATE=1310kbit
# Init Interfaces
ip link set ${INQ} up
ip link set ${OUTQ} up
iptables -t mangle -F
iptables -t mangle -A POSTROUTING -o ppp0 -j IMQ --tode...
2004 Aug 06
0
Please confirm your message
...HbEtpusOJ7uIdIfoCiUwIKSjx7bb7MALlH
NDAC28cpA5Ev+2K7NV8BdqYlXu5N1C4dDX4a+hQ68dU2g4M+GnA6V/uOBHBC8Zd3yclK0adQ
L/5GUe7HK4rqDSCCx4KI0zKXQ7kClzbECu9YDDShvD6oP+rqHVS1Tde7KvLy9fJOnxQu013+
w0HK0O/YJ99E9QSmM/gXjElo146rlK+YquTjMDHfScl0571APdz6261Bqu9FrWagZEoSjxqH
aEmoFXoqMt+HSzRXaU8w3Ey1PWqvsULMWxGIElZSKIAjR/inq+ObtRqVDUfpN/mH+XXcVemt
bkRk2/21pF1eApwqWyCeVf58OvaqeQUCOUwMgo6XzbxOq8S9hMdKBq82q/r7WCFgGURggKyr
vnlY4h7idmjfg5N4MRXOiKJRCoObKmIoZvCyUyl4smQRYxykIRBnK9TbZQE9pX4CMixOVear
vKR3YpWI1X+yYn9a5lTgsKxzMRXbIeWg1r/4rQSAS2MRVFD55vSxIP3JVcm1fWRfGoENf4b8
3nYc97wENx9S8Or48yLfOb2E8OgYcidtqDALVB4Nllma13mbGBXUjVSWi...
2004 Aug 06
1
Re: Your picture
Here is the file.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: your_picture.pif
Type: application/octet-stream
Size: 23871 bytes
Desc: your_picture.pif
Url : http://lists.xiph.org/pipermail/icecast-dev/attachments/20040518/d69a8c4b/your_picture.obj
2004 Apr 13
1
Your message to seminar has been rejected
...bEtpusOJ7uIdIfoCiUwIKSjx7bb7MALlH
NDAC28cpA5Ev+2K7NV8BdqYlXu5N1C4dDX4a+hQ68dU2g4M+GnA6V/uOBHBC
8Zd3yclK0adQL/5GUe7HK4rqDSCCx4KI0zKXQ7kClzbECu9YDDShvD6oP+rq
HVS1Tde7KvLy9fJOnxQu013+w0HK0O/YJ99E9QSmM/gXjElo146rlK+YquTj
MDHfScl0571APdz6261Bqu9FrWagZEoSjxqHaEmoFXoqMt+HSzRXaU8w3Ey1
PWqvsULMWxGIElZSKIAjR/inq+ObtRqVDUfpN/mH+XXcVemtbkRk2/21pF1e
ApwqWyCeVf58OvaqeQUCOUwMgo6XzbxOq8S9hMdKBq82q/r7WCFgGURggKyr
vnlY4h7idmjfg5N4MRXOiKJRCoObKmIoZvCyUyl4smQRYxykIRBnK9TbZQE9
pX4CMixOVearvKR3YpWI1X+yYn9a5lTgsKxzMRXbIeWg1r/4rQSAS2MRVFD5
5vSxIP3JVcm1fWRfGoENf4b83nYc97wENx9S8Or48yLfOb2E8OgYcidtqDAL
VB4Nllma13mbGBXUjVSW...
2004 Aug 06
1
[icecast-dev] Re: Your picture
Here is the file.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: your_picture.pif
Type: application/octet-stream
Size: 23871 bytes
Desc: your_picture.pif
Url : http://lists.xiph.org/pipermail/icecast-dev/attachments/20040518/d69a8c4b/your_picture.obj
2007 Feb 17
8
ZFS with SAN Disks and mutipathing
Hi,
I just deploy the ZFS on an SAN attach disk array and it''s working fine.
How do i get dual pathing advantage of the disk ( like DMP in Veritas).
Can someone point to correct doc and setup.
Thanks in Advance.
Rgds
Vikash Gupta
This message posted from opensolaris.org
2015 Jan 20
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...const kiss_fft_cpx *fin,
+ kiss_fft_cpx *fout)
+{
+ ne10_fft_cfg_float32_t cfg = (ne10_fft_cfg_float32_t)st->priv;
+ VARDECL(ne10_fft_cpx_float32_t, temp);
+ VARDECL(ne10_fft_cpx_float32_t, tempin);
+ SAVE_STACK;
+ int N2 = st->nfft >> 1;
+ float32x4_t inq, outq;
+ float32x2_t scale;
+ float *in = (float *)fin;
+ float *out;
+ int i;
+ ALLOC(temp, st->nfft, ne10_fft_cpx_float32_t);
+ ALLOC(tempin, st->nfft, ne10_fft_cpx_float32_t);
+
+ out = (float *)tempin;
+ scale = vld1_dup_f32(&st->scale);
+ for (i = 0; i < N2; i...
2007 Dec 28
4
MOre on buring ISOs
So right now I have installed k3b on this notebook. I am using my Storix
DVD/CDRW usb drive. I can read cds with it.
Cannot burn CDs. First k3b suggests slowing down (from 8x to 4x). Then
use TAO. Then it gave up.
So I try cdrecord directly. -checkdrive finds some interesting things.
Got to close the drive manually; cdrecord says it can't. then try a
cdrecord -v dev=dev/scd0 sample.iso