Displaying 13 results from an estimated 13 matches for "istance".
Did you mean:
instance
2008 Mar 12
4
imap sent-mail folder sometimes dosen't get updated when used by more than a mailer at the same time.
Hi,
I'm collecting users feedback of latest dovecot 1.1.rc3 development release.
Some users are complaining that their sent mails sometimes don't get
written to imap Sent-mail folder.
It seems that all these users were using multiple istances of imap
processes to read their mail
(thunderbird+horde-imp, evolution+horde-imp or multiple thunderbird istances).
No error message is written in dovecot.log, no user feedback in
horde-imp/evolution.
Only thunderbird says it can't update Sent folder.
Has anyone had similar issues?
Diego.
2006 Mar 01
2
Oracle auto_increment ??? & Rails
To make a new istance of an Oracle table with Rails, i need that this
table had a column named ''id''. This ''id'' must be Primary Key &
auto_increment;.
How Can I modify the ''id'' properties to do it Auto_increment in Oracle?
--
Posted via http://www.ruby-forum.c...
2014 Feb 05
2
Issue with startup and file manager
Hello to all, I just power on my laptop and when I login the OS started to
load N istances of File Manager... so my laptop is not usable... how can I
solve?
2010 Dec 17
2
Asterisk Freeze In 1.4 realtime
Has anyone seen the following in 1.4 (1.4.17)
We have istances when the number of sip channels in use multiples up
(eg: we have 40 channels in use, and then it will jump to 80, then 100+
and it will keep going upwards) and in doing this, all the channels
which are in use at that time are simply cut off or frozen.
The only way for us to get everything back to...
2005 Jul 22
1
find confounder in covariates
Hi,
I was wondering if there is a way, or function in R to
find confounders. For istance,
> a = sample( c(1:3), size=10,replace=T)
> X1 = factor( c('A','B','C')[a] )
> X2 = factor( c('Aa','Bb','Cc')[a] )
> Xmat = data.frame(X1,X2,rnorm(10),rnorm(10))
> dimnames(Xmat)[[2]] = c('z1','z2','z3','y&...
2010 Mar 01
3
Success moving Xen LVMs from 32 to 64bit host
...e gzip'ed the resulting .out file and saved it as a backup.
+++Footnote
BTW, there are many recommendations to do the following on the virtual machine:
dd if=/dev/zero bs=1024 count=xxxx of=/partition.out
rm partition.out
By creating the large empty file on each partition *in the guest
istance* (/var, /, /home, etc.), it will improve the image
compression. Space was not much of a concern and we were worried
about blowing out a production system, so we opted not to do this.
+++Footnote
Once the backing LVM was created, we created the LV on the replacement server:
lvcreate -l xxx -n xm_c...
2006 Feb 20
0
custom_require.rb:21:in `require__'': no such file to load --
...: no such file to load -- initializer (LoadError)
from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:21:in
`require''
from /var/www/myapp/public/../config/boot.rb:16
from /var/www/myapp/public/../config/environment.rb:10
from /var/www/myapp/public/dispatch.fcgi:21
I can find an istance of initialize.rb in my system at this address:
/usr/lib/ruby/gems/1.8/gems/rails-1.0.0/lib/
I have the feeling I must set some PATH ... but I dunno where :-|
Advice ?
Simone
--
Posted via http://www.ruby-forum.com/.
2019 Sep 06
1
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...fs->tag, fs2->tag) == 0)
> > > + duplicate = true;
> > > + }
> > > +
> > > + if (!duplicate)
> > > + list_add_tail(&fs->list, &virtio_fs_instances);
> >
> >
> > This is O(N^2) as it's presumably called for each istance.
> > Doesn't scale - please switch to a tree or such.
>
> This is O(N) and not O(N^2) right? Addition of device is O(N), search
> during mount is O(N).
>
> This is not a frequent event at all and number of virtiofs instances
> per guest are expected to be fairly small...
2001 Apr 16
2
Dump utility?
Is there any dump utility that exists for vorbis streams?
What I am intersted in is something that will do a break down like:
How many bits are used for encoding _each_ codebooks, how many bits are
used for the residue, how much is used for the lpc coefficints. A
selective dump of the codebooks themselves would be nice too of course.
I'm wondering if anyone has such a little dump utility.
2019 Sep 05
0
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...tances, list) {
> > + if (strcmp(fs->tag, fs2->tag) == 0)
> > + duplicate = true;
> > + }
> > +
> > + if (!duplicate)
> > + list_add_tail(&fs->list, &virtio_fs_instances);
>
>
> This is O(N^2) as it's presumably called for each istance.
> Doesn't scale - please switch to a tree or such.
This is O(N) and not O(N^2) right? Addition of device is O(N), search
during mount is O(N).
This is not a frequent event at all and number of virtiofs instances
per guest are expected to be fairly small (say less than 10). So I
really do...
2019 Sep 03
4
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...+ list_for_each_entry(fs2, &virtio_fs_instances, list) {
> + if (strcmp(fs->tag, fs2->tag) == 0)
> + duplicate = true;
> + }
> +
> + if (!duplicate)
> + list_add_tail(&fs->list, &virtio_fs_instances);
This is O(N^2) as it's presumably called for each istance.
Doesn't scale - please switch to a tree or such.
> +
> + mutex_unlock(&virtio_fs_mutex);
> +
> + if (duplicate)
> + return -EEXIST;
> + return 0;
> +}
> +
> +/* Return the virtio_fs with a given tag, or NULL */
> +static struct virtio_fs *virtio_fs_find_inst...
2019 Sep 03
4
[PATCH v4 15/16] virtio-fs: add virtiofs filesystem
...+ list_for_each_entry(fs2, &virtio_fs_instances, list) {
> + if (strcmp(fs->tag, fs2->tag) == 0)
> + duplicate = true;
> + }
> +
> + if (!duplicate)
> + list_add_tail(&fs->list, &virtio_fs_instances);
This is O(N^2) as it's presumably called for each istance.
Doesn't scale - please switch to a tree or such.
> +
> + mutex_unlock(&virtio_fs_mutex);
> +
> + if (duplicate)
> + return -EEXIST;
> + return 0;
> +}
> +
> +/* Return the virtio_fs with a given tag, or NULL */
> +static struct virtio_fs *virtio_fs_find_inst...
2006 Oct 17
2
Calculate NAs from known data: how to?
Hi
In a dataset I have length and age for cod. The age, however, is ony
given for 40-100% of the fish. What I need to do is to fill inn the NAs
in a correct way, so that age has a value for each length. This is to be
done for each sample seperately (there are 324 samples), meaning the NAs
for sampleno 1 shall be calculated from the known values from sampleno 1.
As for example length 55 cm