Displaying 20 results from an estimated 109790 matches for "possibl".
Did you mean:
possible
2008 Jun 11
0
[LLVMdev] some warning from VS2005 (requested by gabor)
Hi,
Some random sample of VS warning:
Lot of 64 bits conversions:
AsmPrinter.cpp
..\..\lib\CodeGen\AsmPrinter.cpp(277) : warning C4244: 'initializing' :
conversion from 'uint64_t' to 'unsigned int', possible loss of data
..\..\lib\CodeGen\AsmPrinter.cpp(614) : warning C4244: 'argument' :
conversion from 'uint64_t' to 'int', possible loss of data
..\..\lib\CodeGen\AsmPrinter.cpp(894) : warning C4244: 'initializing' :
conversion from 'uint64_t' to 'unsigned in...
2008 Aug 26
0
Processed: The possibility of attack with the help of symlinks in some Debian
Processing commands for control at bugs.debian.org:
> tags 496359 security
Bug#496359: The possibility of attack with the help of symlinks in some Debian packages
There were no tags set.
Tags added: security
> tags 496360 security
Bug#496360: The possibility of attack with the help of symlinks in some Debian packages
Tags were: confirmed
Tags added: security
> tags 496362 security
2005 Oct 27
3
outer-question
Dear all,
This is a rather lengthy message, but I don't know what I made wrong in
my real example since the simple code works.
I have two variables a, b and a function f for which I would like to
calculate all possible combinations of the values of a and b.
If f is multiplication, I would simply do:
a <- 1:5
b <- 1:5
outer(a,b)
## A bit more complicated is this:
f <- function(a,b,d) {
return(a*b+(sum(d)))
}
additional <- runif(100)
outer(X=a, Y=b, FUN=f, d=additional)
## So far so good. But now m...
2005 Oct 27
3
outer-question
Dear all,
This is a rather lengthy message, but I don't know what I made wrong in
my real example since the simple code works.
I have two variables a, b and a function f for which I would like to
calculate all possible combinations of the values of a and b.
If f is multiplication, I would simply do:
a <- 1:5
b <- 1:5
outer(a,b)
## A bit more complicated is this:
f <- function(a,b,d) {
return(a*b+(sum(d)))
}
additional <- runif(100)
outer(X=a, Y=b, FUN=f, d=additional)
## So far so good. But now m...
2010 Jan 25
3
question on sqldf syntax
trying to structure sql to merge two datasets. structure follows:
dbs.possible.combos (all possible combinations of dates and places)
Date Place
1/1/10 N-01
1/1/10 S-02
1/2/10 N-01
1/2/10 S-02
etc...
dbs.aggregate (the raw data aggregated by date and location)
Date Place Days
1/1/10 N-01 6
1/1/10 S-02 10
1/2/10 S-02 5
Trying to merge so I look-up the values for each possi...
2005 Nov 19
5
help with apply, please
...s" all columns with at least a 1.
None of the rows covers all columns; all three rows clearly covers all
columns, but there are simpler combinations (1st and the 3rd, or 2nd and 3rd)
which also covers all columns.
I solved this problem by creating a second logical matrix which contains all
possible combinations of rows:
tt <- matrix(as.logical(c(1,0,0,0,1,0,0,0,1,1,1,0,1,0,1,0,1,1,1,1,1)), nrow=3)
and then subset the first matrix and check if all columns are covered.
This solution, though, is highly inneficient and I am certain that a
combination of apply or something will do.
########...
2003 Mar 02
0
Entering username/password (DTMF) from Cisco 7960/SIP in Voicemail touchy...
...c' ("Lenny Tropiano" <5555>)
-- Executing VoiceMailMain("SIP/lenny-b19c", "") in new stack
== Parsing '/etc/asterisk/voicemail.conf': Found
NOTICE[17426]: File rtp.c, Line 167 (process_rfc3389): RFC3389 support incomplete. Turn off on client if possible
-- Playing 'vm-login'
-- Playing 'vm-password'
-- No such user '55555' in config file
-- Playing 'vm-incorrect'
WARNING[17426]: File app_voicemail.c, Line 1720 (vm_execmain): Couldn't read username
== Spawn extension (default, 8500, 1) exited n...
2010 Oct 13
1
Missing ACLOCAL_AMFLAGS ?
...file.am.
src/plugins/acl/Makefile.am:11: `module_LTLIBRARIES' is used but `moduledir' is undefined
src/plugins/acl/Makefile.am:14: variable `lib01_acl_plugin_la_SOURCES' is defined but no program or
src/plugins/acl/Makefile.am:14: library has `lib01_acl_plugin_la' as canonical name (possible typo)
src/plugins/acl/Makefile.am:9: variable `lib01_acl_plugin_la_LDFLAGS' is defined but no program or
src/plugins/acl/Makefile.am:9: library has `lib01_acl_plugin_la' as canonical name (possible typo)
src/plugins/autocreate/Makefile.am:9: `module_LTLIBRARIES' is used but `moduledir&...
2016 May 03
3
Reasoning about known bits of the absolute value of a signed integer
I'm trying to reason about how to find certain bit positions of the absolute value of a given integer value. Specifically, I want to know the highest possibly set bit and lowest possibly set bit of the absolute value, in order to find the range between the two.
Note that I'm specifically trying to be as conservative as possible.
This is what I have so far:
If the sign bit of the original integer is a known 0 (known positive) - the highest possibl...
2011 Jun 29
1
Possible new bug in 3.1.5 discovered
...D 0:00 touch /pfs1/test/junk1
Anybody else run into this situation?
Client mount log (/var/log/glusterfs/pfs2.log) below:
[2011-06-29 10:28:07.860519] E [afr-self-heal-metadata.c:522:afr_sh_metadata_fix] 0-pfs-ro1-replicate-6: Unable to self-heal permissions/ownership of '/' (possible split-brain). Please fix the file on all backend volumes
[2011-06-29 10:28:07.860668] E [afr-self-heal-metadata.c:522:afr_sh_metadata_fix] 0-pfs-ro1-replicate-1: Unable to self-heal permissions/ownership of '/' (possible split-brain). Please fix the file on all backend volumes
s/ownership...
2017 Aug 23
4
Getting all possible combinations
Hi again,
I am exploring if R can help me to get all possible combinations of
members in a group.
Let say I have a group with 5 members : A, B, C, D, E
Now I want to generate all possible unique combinations with all
possible lengths from that group e.g.
1st combination : A
2nd combination : B
.....
5th combination : E
6th combination : A, B
7th combinati...
2010 Jul 10
4
Redundant LAN routing possible?
I've been reading that it's possible to set up a system with multiple
NIC to provide redundant internet connectivity such that it will
switch to a secondary connection if the primary ISP fails.
Is it possible in a similar way to setup redundant LAN routing? I read
that it is possible to aggregate/bond multiple NIC to stackable
switc...
2007 Jul 27
4
Looping through all possible combinations of cases
...llo!
I have a regular data frame (DATA) with 10 people and 1 column
('variable'). Its cases are people with names ('a', 'b', 'c', 'd',
'e', 'f', etc.). I would like to write a function that would sum up
the values on 'variable' of all possible combinations of people, i.e.
1. I would like to write a loop - in such a way that it loops through
each possible pair of cases (i.e., ab, ac, ad, etc.) and sums up their
respective values on 'variable'
2. I would like to write a loop - in such a way that it loops through
each possible tr...
2000 Dec 08
7
Some scratches with beta3
Hi,
I have included the oggvorbis encoding and playback stuff in the
Linux-Mandrake distro back in August 2000. At that time I put the "nightly
CVS" version, which worked just fine.
Then on Mon Nov 27 I noticed some RPM's labelled "1.0beta3" on the website
so I upgraded with these ones.
Since then we have had some serious problems in encoding: approx 20% of
the WAV
2018 Jul 20
2
database node / possible SYN flooding on port 3306
Hi folks,
I have here a database node running
# rpm -qa | grep mysql-server
mysql55-mysql-server-5.5.52-1.el6.x86_64
on
# virt-what
vmware
that seems to have a connection problem:
# dmesg |grep SYN |tail -5
possible SYN flooding on port 3306. Sending cookies.
possible SYN flooding on port 3306. Sending cookies.
possible SYN flooding on port 3306. Sending cookies.
possible SYN flooding on port 3306. Sending cookies.
possible SYN flooding on port 3306. Sending cookies.
I adapted already following:
# sysctl -...
2008 Aug 26
0
Processed (with 58 errors): The possibility of attack with the help of symlinks in some Debian
Processing commands for control at bugs.debian.org:
> tags 496359 secuirity
Unknown tag/s: secuirity.
Recognized are: patch wontfix moreinfo unreproducible fixed potato woody sid help security upstream pending sarge sarge-ignore experimental d-i confirmed ipv6 lfs fixed-in-experimental fixed-upstream l10n etch etch-ignore lenny lenny-ignore.
Bug#496359: The possibility of attack with the help
2006 Nov 04
1
Pass through
...e codecs that are not popular and implemented by a
third-party, asterisk has nothing to do with them.
I've made a test with g722 (that asterisk doesn't support), i've set all my
two snom 300 phones to support only g722 and asterisk declined the sip
invitation. That is bad for me. Is it possible that asterisk asks the called
phone not the codecs that asterisk supports but the codecs that the calling
phone supports?
What i want:
phone1->asterisk: hello, i'm calling phone2, codecs possible: g722
asterisk->phone2: hello, you have a call from phone1, codecs possible: g722
phone2-&...
2012 Oct 16
1
Bug#690630: blktap-utils: bashism in /bin/sh script
...important
User: debian-release at lists.debian.org
Usertags: goal-dash
Hello maintainer,
While performing an archive wide checkbashisms (from the 'devscripts'
package) check I've found your package containing a /bin/sh script making
use of a bashism.
checkbashisms' output:
>possible bashism in ./usr/sbin/vhdpartx line 40 (alternative test command
([[ foo ]] should be [ foo ])):
> [[ -z "$lib" ]] && lib=$LIBVHDIO
>
>possible bashism in ./usr/sbin/vhdpartx line 41 (alternative test command
([[ foo ]] should be [ foo ])):
> [[ -z "$vhd&...
2012 Mar 16
1
Upgrade of IDMAP_VERSION from -1 to 2 is not possible with incomplete configuration
...g CentOS 6.2 with samba-3.5.10-114 , and LikewiseOpen 6.1 .
How do I fix these errors ?
Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: [2012/03/16
20:25:43.639871, 0] winbindd/idmap_tdb.c:287(idmap_tdb_open_db)
Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: Upgrade of IDMAP_VERSION
from -1 to 2 is not possible with incomplete configuration
Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: [2012/03/16
20:25:43.654353, 0] winbindd/idmap_tdb.c:287(idmap_tdb_open_db)
Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: Upgrade of IDMAP_VERSION
from -1 to 2 is not possible with incomplete configuration
Mar 16 20:25:43 nzh...
2008 Aug 25
5
Debugging Xen domain with mdb
Hi,
I was just wondering if it is possible to debug a live Xen domain with mdb i.e. use mdb on a running domain?
I know that it is possible to debug a domain with mdb using a crash dump. I couldn''t find anything about using mdb on a live domain though so I thought I''d ask here.
-Padraig
This message posted from open...