Displaying 20 results from an estimated 1000 matches similar to: "multiple authentication mechanisms, many problems"
2011 May 04
2
speexenc/speexdec doubles file size
this is not really a development question, but i didn't find another
mailing list to ask it.
any idea why size of wav file doubles when it is encoded to speex and
back to wav:
$ ls -ls testi.wav
40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
$ speexenc --denoise --agc --quality 10 testi.wav testi.spx
Encoding 8000 Hz audio using narrowband mode (mono)
$ ls -ls testi.spx
20
2017 Dec 29
3
Writing text files out of a dataset
Hello,
I am trying to run the following syntax for all cases within the dataframe
"data"
d1 <- data[1,c("material")]
fileConn<-file("TESTI/d1.txt")
writeLines(d1, fileConn)
close(fileConn)
I am trying to use the for function:
for (i in 1:nrow(data)){
d[i] <- data[i,c("material")]
fileConn<-file("TESTI/d[i].txt")
2019 Apr 16
2
Sieve operation "send copy" not working since upgrade from dovecot 2.2.31-1 to 2.3.5.1-1
I hope that someone can help me here.
Software: CentOS 7.6.1810, dovecot-2.3.5.1, dovecot-pigeonhole-2.3.5.1, exim
4.91-1
Example filter:
# rule:[test]
if header :contains "subject" "meow"
{
redirect :copy "ks at ratiokontakt.de";
}
Mail log:
Apr 16 11:29:02 frontend-17 dovecot:
lmtp(testi at mrhoang.de)<25201><QPgZHF6gtVxxYgAARS1pjg>:
2017 Dec 29
0
Writing text files out of a dataset
Hello,
You have to create the vector 'd' outside the loop before using it.
d <- numeric(nrow(data))
Only then comes the loop.
Hope this helps,
Rui Barradas
On 12/29/2017 2:31 PM, Luca Meyer wrote:
> Hello,
>
> I am trying to run the following syntax for all cases within the dataframe
> "data"
>
> d1 <- data[1,c("material")]
>
2008 Jul 17
2
problems with validation on STI
I have the following STI table:
def self.up
create_table :distributions do |t|
t.string :type
t.integer :simulation_id
t.string :dist_name
t.string :desc, :default=> ''fixed''
t.float :param1, :default => 5.0
t.float :param2, :param3
t.timestamps
#fields for RscDist
t.integer :resource_id
#fields for LoadDist
2024 Jan 21
1
Running VMware ESXi network installer via syslinux/menu
On 1/20/2024 1:29 AM, Ralph Ronnquist via Syslinux wrote:
> On Sat, Jan 20, 2024 at 12:21:37AM +0100, marki via Syslinux wrote:
>> Hello,
>>
>> So I'm running syslinux.efi
>> Which loads menu.c32
>> Which is supposed to start ESXi's bootx64.efi/mboot.efi
>>
>> But that gives
>>
>> """
>> Loading mboot.efi... ok
2008 Aug 13
2
Tiny help for tiny function
I just started to write tiny functions and therefore I appologise in advance
if I am asking stupid question.
I wrote a tiny function to give me back from the original matrix, a matrix
showing only the values smaller -0.8 and bigger 0.8.
y<-c(0.1,0.2,0.3,-0.8,-0.4,0.9)
x<-c(0.5,0.3,0.9,-0.9,-0.7,0.3)
XY<-rbind(x,y)
extract.values<-function (x)
{
if(x>=0.8|x<=-0.8)x
2009 Apr 21
2
validates_uniqueness_of
hello all,
i am new to RoR programming and am struck with the functional test whole
checking for uniqeness of carriers. If it is not unique,the the bin
shudn''t be created.Can someone help me in correcting my code.
def test_create_failure_cycle_unique
begin
num_bins = Bin.count
post :create, {:bin => { :carrier => carriers(:A), :cycle =>
cycles(:one), :name =>
2006 Oct 31
2
Bridging Video Calls using Zap
Hi!
For demonstration purposes I try to bridge an incoming video call from a
3G mobile handset to another 3G mobile handset using asterisk as "switch".
On the incoming call leg I see all expected bearer capabilities
(Digital, 64k Transparent, G.7xx 384k video) but on the outgoing call
leg the bearer capability G.7xx 384k video get lost and therefore the
call is dropped from the mobile
2011 Aug 20
1
val.surv
Dear R-users,
I have two questions regarding validation and calibration of Survival regression models.
1. I am trying to calibrate and validate a cox model using val.surv.
here is my code:
f.1<-cph(Surv(time,event)~age, x=T, y=T, data=train)
test1<-test[,"age"]
val.surv(f.1, newdata=data.frame(test1), u=10)
but I get an error message:
Error in val.surv(f.1, newdata
2002 Oct 07
9
FS corruption; HTREE-related?
Over the last two days we've been seeing a fair bit of this:
----
# ls -laR > /dev/null
...
ls: ./server2/b/user/bxyz/392.: Input/output error
----
This is with the latest htree patches applied to 2.4.19, and latest
e2fsprogs-test, on a dual AMD system, with 5x73GB SCSI drives on a
MegaRAID controller. We're using the gcc 2.96 that comes with RH7.3.
esfsck shows "Inodes that
2009 Dec 10
2
Force file read even with checksum error
Hi guys,
I have a pool made with three luns striped.
After some scsi retryable messages, happened during a storage activity, zpool status start to report one checksum error on one file only.
The zpool scrub find it but don''t solve it, and when I try to read the file, I get an I/O error.
Again, when I try to copy the file, I get only some bytes copied, and then stops, I mean this is
2008 Jul 29
8
questions about ZFS Send/Receive
Hi guys,
we are proposing a customer a couple of X4500 (24 Tb) used as NAS
(i.e. NFS server).
Both server will contain the same files and should be accessed by
different clients at the same time (i.e. they should be both active)
So we need to guarantee that both x4500 contain the same files:
We could simply copy the contents on both x4500 , which is an option
because the "new
2024 Jan 20
1
Running VMware ESXi network installer via syslinux/menu
On Sat, Jan 20, 2024 at 12:21:37AM +0100, marki via Syslinux wrote:
> Hello,
>
> So I'm running syslinux.efi
> Which loads menu.c32
> Which is supposed to start ESXi's bootx64.efi/mboot.efi
>
> But that gives
>
> """
> Loading mboot.efi... ok
> Invalid Boot signature 0x2, bailing out
> Booting kernel failed: Bad file number
>
2009 Jan 29
1
Samba 3.2.7 and XP authentication error
List,
Long and confusing message follows...
I'm facing a frustrating problem. XP clients can use resoures on the
samba server by IP-address, but not by name. So, "net view \\servername"
gives "access denied" but "net view \\ipaddress" gives list of shared
resources.
Samba server (3.2.7 sernet rpm) is a member server in W2003 domain.
I emphasise that with
2008 Jun 06
1
STI vs Polymorphism
Hello everyone,
I am racking my brain with a modelling question and can''t wrap my around
the benefits of STI or Polymorphisms.
I am trying to model Questions and Answer behavior but I think I am not
using rails full power here.
I have (in simple terms)
Question
has_one Answer
Answer
belongs_to Question
I also have
Topic
has_many Posts
Post
belongs_to Topic
Now i am
2007 Aug 09
8
[Bug 11918] New: drmMap of framebuffer failed
http://bugs.freedesktop.org/show_bug.cgi?id=11918
Summary: drmMap of framebuffer failed
Product: Mesa
Version: CVS
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Drivers/DRI/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: pmandin at
2011 May 04
0
speexenc/speexdec doubles file size
Juha Heinanen writes:
> any idea why size of wav file doubles when it is encoded to speex and
> back to wav:
>
> $ ls -ls testi.wav
> 40 -rw-r--r-- 1 foo foo 40674 May 4 14:38 testi.wav
>
> $ speexenc --denoise --agc --quality 10 testi.wav testi.spx
> Encoding 8000 Hz audio using narrowband mode (mono)
>
> $ ls -ls testi.spx
> 20 -rw-r--r-- 1 foo foo 16405
2005 Aug 12
8
Java Problems
Hi. This post follows on from:
http://lists.xensource.com/archives/html/xen-devel/2005-04/msg00185.html
And is possibly related to the bug referenced here:
http://bugs.sun.com/bugdatabase/view_bug.do;:YfiG?bug_id=4335360
In summary: Java processes are doing odd things.
1) It appears that number values are mysteriously changing. e.g. if you
look at the Hashtable error there is no way the
2019 Apr 16
0
Sieve operation "send copy" not working since upgrade from dovecot 2.2.31-1 to 2.3.5.1-1
On 16.4.2019 13.34, Kristijan Savic - ratiokontakt GmbH via dovecot wrote:
> I hope that someone can help me here.
>
> Software: CentOS 7.6.1810, dovecot-2.3.5.1, dovecot-pigeonhole-2.3.5.1, exim
> 4.91-1
>
> Example filter:
>
> # rule:[test]
> if header :contains "subject" "meow"
> {
> redirect :copy "ks at ratiokontakt.de";