Displaying 20 results from an estimated 40 matches for "behavour".
Did you mean:
behaviour
2007 Sep 27
5
QueryParser.parse question
...hy QueryParser''s parse method behaves differently
between query ''a'' and ''b''.
See http://pastie.caboo.se/private/4rlwrecyyow3yl6qtf4tq
Could someone please help me understand why that is the case.
p.s. I also found ''i'' produce the same behavour as ''a''
Cheers,
Andy
2016 Jun 16
2
yum timeout ... (CentOS 6.8)
....host-engine.com/6/extras/x86_64/repodata/repomd.xml:
[Errno 12] Timeout on http://centos.den.host-engine.c
om/6/extras/x86_64/repodata/repomd.xml: (28, 'Operation too slow. Less
than 1 bytes/sec transfered the last 30 seconds')
Trying other mirror.
extras
...
how or where can I reset this behavour, to have the really fastest mirros
used?
Thanks in advance,
Walter
2006 Jun 04
2
slanted ends of horizontal lines for certain line widths
...plot a horizontal line, e.g.,
plot(c(1,2),c(1,1),xlim=c(0,3),lwd=2,type="l")
or
plot(c(1,2),c(1,1),xlim=c(0,3),lwd=4,type="l")
then the left end (1st example) or both ends (2nd example) of the lines
are not rectangular but slanted on the graphical display (screen).
That behavour first occurred when I was trying to plot a stepfun, e.g.,
y <- round(rnorm(12),1)
Fn12 <- ecdf(y)
plot(Fn12,verticals= FALSE, do.p = FALSE,lwd=2,col.h="red")
plot(Fn12,verticals= FALSE, do.p = FALSE,lwd=4,col.h="red")
(lwd=3 seems okay)
Bug or feature?
Suggestions? (I d...
2006 Jul 06
3
nating the bridge
...nternet.
I tried a few variants, switching of tx checks on the
ethernet device, disabling connection tracking via NOTRACK
target of iptables etc.
IP forwarding is enabled in the kernel and via echo 1 /proc/...
all no luck. So i ask you is there somewhere a document
detailing a debbuging of such an behavour or something like that?
I looked around for quite a while and tried some howtos, but
nothing could help to get that beast working.
I used the following rules:
iptables -A PREROUTING -t nat -p tcp \
-d $von/32 -j DNAT --dport ! 22 --to-destination $zu
iptables -t nat -A POSTROUTING -d $zu/32 -...
2004 Aug 08
1
Sorting of filenames on samba shares
...command.
In case of the local drive or the mount from w2k to w2k the newly
created directories are listed sorted, like
E:\test>tree /A
E:.
+---a
+---b
+---c
\---z
However, in the case of the samba mount they're sorted in the order of
creation (a,b,z,c).
Is there any way to get the same behavour (sorting alphabetically) from
samba too? My problem is that for instance the output of a tree command
of samba share is rather useless since its not sorted in a way I can
lookup fast ;)
kind regards Philip
2013 Jul 17
1
tab key does not complete the package name or list the packages in apt-get command
i am using debian 6.0.7.
in my other debian machines when i type "apt-get install sam<tab>" it give
me all item start from sam and this is a default behavour. however now for
some reason <tab> key is not working. is there anyone know why.
note: for other commands <tab> key is working fine.
Thanks,
Myk
2023 Oct 02
1
rpc_pipe_open_ncalrpc: connect(/run/samba/ncalrpc/EPMAPPER) failed: No such file or directory
...ited numerous times, each time logging a warning about it
being unable to connect to /run/samba/ncalrpc/EPMAPPER - which
does not exist on a member server.
/run/samba/ncalrpc/np/epmapper socket is being listened by
samba-dcerpc itself. So these are two different sockets.
Instead of observing the behavour and guessing, I'd love to
know how things *should* work.
Thanks,
/mjt
2008 Aug 11
1
Unwanted carriage returns storing dataframes with dbWriteTable
...(carriage return)
appended. If I read back the dataframe with dbReadTable the last column
in the resulting dataframe has also '\r' appended (see protocol below).
Setting or unsetting sql-mode (in the SQL-Server Version 5.0) to or from
'NO_BACKSLASH_ESCAPE' has no effect on this behavour ? How can I avoid
these unwanted '\r'-tail ?
Hansruedi
> df1
a c
a 1 x
b 2 y
c 3 z
d 4 t
> dbWriteTable(con,"df1",df1,row.names=FALSE)
[1] TRUE
> df1=dbReadTable(con,"df1")
> df1
a c
1 1 x\r
2 2 y\r
3 3 z\r
4 4 t\r
>
--
Hansruedi Baetschmann
d...
2006 May 22
0
Please help on chan_h323.
Hello,
Thank you for the job well-done.
I installed the chan_h323 of the asterisk-1.2.7.1 and with lib
pwlib-v1_10_0-src-tar.gz and openh323-v1_18_0-src-tar.gz and I used licensed
g729 from digium.
However, I am having a very funny behavour.
1. If I send a call on its ringing at the called side but the caller didn't
get the ringing tone.
2. if the called picks up the phone, I am getting a crawling voice and the
bandwidth is on the LAN.
Can you tell me what is wrong?
My h323.conf is as below
; The NuFone Network's
; Ope...
2007 Jun 26
2
NFS, nested ZFS filesystems and ownership
Hello,
I''m sure there is a simple solution, but I am unable to figure this one out.
Assuming I have tank/fs, tank/fs/fs1, tank/fs/fs2, and I set sharenfs=on for
tank/fs (child filesystems are inheriting it as well), and I chown
user:group /tank/fs, /tank/fs/fs1 and /tank/fs/fs2, I see:
ls -la /tank/fs
user:group .
user:group fs1
user:group fs2
user:group some_other_file
If I mount
2004 Dec 23
1
PRI unable to request channel
I wonder if anyone has come across this odd behavour with a T1 PRI using
NI2 signalling from a Nortel switch.
Sometimes, when bringing up a PRI trunk, a channel gets into a state
where asterisk can't request a channel, and gets reason 0, but the
channel is not busy. The only thing so far that clears this state is to
make an incoming call to the...
2010 May 17
6
Should an blank string be html_safe?
...t_tag(:p, ''dave'')
#=> <p>dave<\p%;gt;
Eventually I realised the original empty string was not html_safe
message = ''''.html_safe
message << content_tag(:p, ''dave'')
#=> <p>dave</p>
Is this intentional behavour?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.
For more option...
2005 Jun 15
0
World of Warcraft 1.5.1
...;
= "0x10000000". I seem to recall this is an area in which Wine and
Cedega differ quite substantially, unless there's been some more
convergence recently, and I can't find much about what that option
actually does, but does anybody know if there's any way to get the same
behavour in Wine? Even an ugly hack would be better than nothing.
Thanks,
Aneurin Price.
PS. Maybe I should try this on wine-devel?
[1] * Fixed an assertion that was preventing Mac clients from
playing in the Battlegrounds and was causing a memory leak on PCs when
they did.
* Improved error rep...
2016 Jun 16
0
yum timeout ... (CentOS 6.8)
Walter H. wrote:
> Hello,
>
> the last times, when I tried to update,
>
> it get time outs; even when 'yum list'
<snip>
> how or where can I reset this behavour, to have the really fastest mirros
> used?
>
Have you tried yum clean all before reruning?
mark
2016 Jun 16
2
yum timeout ... (CentOS 6.8)
On 16.06.2016 19:22, m.roth at 5-cent.us wrote:
> Walter H. wrote:
>> Hello,
>>
>> the last times, when I tried to update,
>>
>> it get time outs; even when 'yum list'
> <snip>
>> how or where can I reset this behavour, to have the really fastest mirros
>> used?
>>
> Have you tried yum clean all before reruning?
>
>
Yes, but doesn't help ...
the same before ...
by the way, I can't image that there is no mirror in Europa,
and that the "timeout"-mirrors from US are the fastes...
2008 Jul 01
0
using of speex filters without muxer
...er
which receives encoded data and pass it thouht network to other
application.
in this application i have another graph with my own source filter
which is connected to speex decoder.
the problem is in following: decoder filter doesn't send any samples
to audio device.
and there is some strange behavour:
i'm putting first ident packet from encoder (80 bytes) to mediatype to
connect my filter to decoder.
and i don't send this sample to decoder. in this case decoder asks me
for only one more sample (and i send it to it), then nothing happends.
i mean, decoder doesn't asks me for more sam...
2004 Aug 06
0
no luck with streamers
I have seen this behavour with my mixice streaming program too if
the channels are turned down or if the line input is not set for
"record". Using "aumix" or "mixer" can find out how they are set
and can be used to adjust them.
Tim
On Sat, Apr 20, 2002 at 08:02:00AM -0400, Ra?l Guti?rrez Seg...
2005 Jun 08
0
bug in predict.lme?
...e) works as expect. However, when performing a predict on the fitted model I gan an error messag - predict.lme (but not predictlm) seems to expect a 'properly' typed in formula and a cannot extract the formula from the variable. THe code below demonstrates this.
Is this a known or expected behavour of predict.lme or is this a bug?
kind regards,
Arne
(R-2.1.0)
> library(nlme)
...
> mod <- distance ~ age + Sex # example from ?lme
> mod
distance ~ age + Sex
> fm2 <- lme(mod, data = Orthodont, random = ~ 1)
> anova(fm2)
numDF denDF F-value p-value
(Intercept...
2008 Dec 12
0
Is there anyone in charge of package wmtsa ?
...aks (aa3.maxtree) #GET MAXIMUM PEAKS
Notice that in this case the generated tree (Good-Tree-Configuration) has 6 branches. This way the peaks are regularly found. No error is printed out:
> aa3.maxpeak <- wavCWTPeaks (aa3.maxtree)
Any comment on the above weird behavour is welcome. Thank you so much.
Maura
Alice Messenger ;-) chatti anche con gli amici di Windows Live Messenger e tutti i telefonini TIM!
Vai su http://maileservizi.alice.it/alice_messenger/index.html?pmk=footer
-------------- next part --------------
An embedded and charset-unspecified text was...
2005 Feb 11
0
Playing Dialtones
...e 400+450/400,0/200,400+450/400,0/2000
With analogue handsets connected to a zapata interface the standard
dialtone in the off-hook condition is "dial", but if there is a message
waiting then the "stutter" dialtone is sent out when the handset goes
off hook. These emulate behavour that occurs on the PSTN system.
With the PSTN service the "facility" dialtone is output if the user has
a facility set, such as call forward immediate.
I have a routine in my dialplan which allows the user to set up CFIM,
but what I want it for * to output the "facility" dialt...