search for: mws

Displaying 20 results from an estimated 27 matches for "mws".

Did you mean: mw
2017 Oct 04
3
moving from mysql to pgsql
...he passwords when using pgsql. The existing and working mysql-based installation looks like this: dovecot-sql.conf.ext: driver = mysql default_pass_scheme = SHA512-CRYPT Users are created like this: INSERT INTO mls_user (idx,domain,password,email) VALUES (1,99,ENCRYPT('Test'),'mws at alpenjodel.de'); This setup is working, which I can verify like this: $ telnet localhost 143 * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE AUTH=PLAIN AUTH=LOGIN AUTH=DIGEST-MD5 AUTH=CRAM-MD5] Dovecot ready. a login mws at alpenjodel.de Test OK Now let...
2017 Oct 04
0
moving from mysql to pgsql
...and working mysql-based installation looks like this: > > dovecot-sql.conf.ext: > > driver = mysql > default_pass_scheme = SHA512-CRYPT > > Users are created like this: > > INSERT INTO mls_user (idx,domain,password,email) > VALUES (1,99,ENCRYPT('Test'),'mws at alpenjodel.de'); > > This setup is working, which I can verify like this: > > $ telnet localhost 143 > * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID > ENABLE IDLE AUTH=PLAIN AUTH=LOGIN AUTH=DIGEST-MD5 > AUTH=CRAM-MD5] Dovecot ready. > > a login...
2007 Aug 08
2
What is <DYN> in dtrace source code?
Dear all, What does <DYN> (or say "dynamic node" that is generated by paser and used by cg in compilation stage) represent? What are the corresponding D lanauge futures of this? Any examples? TIA! Regards, TJ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Dec 30
5
Dtrace locks up on sol
Hi all... I''ve just got my hands on a Solaris 10 box for the first time. I''ve heard wonderous things about dtrace, so the first command I type is dtrace -l which disappointingly does nothing at all. It just hangs, and neither Ctrl-D, Ctrl-C or kill -9 from another shell will do anything to kill it. The box is: SunOS t2000 5.10 Generic_118822-25 sun4v sparc SUNW,Sun-Fire-T200
2011 Mar 04
1
Question in Chi-squared test, can I do it with percentage data?
Hi all, I know Chi-squared test can be done with the frequency data by R function "chisq.test()", but I am not sure if it can be applied to the percentage data ? The example of my data is as follow: ############################################# KSL MHL MWS CLGC LYGC independent (%) 96.22 92.18 68.54 93.80 85.74 ############################################# Thanks Jeff [[alternative HTML version deleted]]
2006 Nov 15
1
dynamic aggregation of many variables
...002)",names(dmx3),perl=T) week2table <- subset(dmx3,select=c(ID,week2)) week3 <- grep("(_PRO_003)",names(dmx3),perl=T) week3table <- subset(dmx3,select=c(ID,week3)) week4 <- grep("(_PRO_004)",names(dmx3),perl=T) week4table <- subset(dmx3,select=c(ID,week4)) mws <- (week1table[,2:117]+week2table[,2:117]+week3table[,2:117]+week4table[,2:117])/4
2005 Oct 11
7
dtrace: failed to initialize dtrace: DTrace device not available on system
I have a number of systems running solaris10 and i see the package and binary for dtrace installed however whenever we try to run anything we get this error dtrace: failed to initialize dtrace: DTrace device not available on system the only system in which i dont have this error is the development server that has the full solaris 10 install while others are minimized, do i need additional
2017 Oct 06
0
moving from mysql to pgsql
mws at alpenjodel.de writes: > 1) select digest('testing123','sha512'); > result: > ?\x4120117b3190ba5e24044732b0b09aa9ed50eb1567705abcbfa78431a4e0a96b1152ed7f4925966b1c82325e186a8100e692e6d2fcb6702572765820d25c7e9e > login fails I think 2 problems here: 1) the encoding...
2006 Oct 31
0
6202015 fmd should only load plug-ins whose filenames end in .so
Author: mws Repository: /hg/zfs-crypto/gate Revision: 350b29b024d8b672585c7a66fcea71985a54f77f Log message: 6202015 fmd should only load plug-ins whose filenames end in .so 6369961 fmd emits identical diagnosis after repair when case was never closed 6385004 mc-amd driver leaks property string on attach 638500...
2006 Oct 31
0
6377640 fmd build can try to re-install .so links as directories
Author: mws Repository: /hg/zfs-crypto/gate Revision: 52dbc0e184b4cf5b07709cf159cadbb66ee552bb Log message: 6377640 fmd build can try to re-install .so links as directories 6390114 fmd asru cache recreation flawed with fix for 6369961 6390205 fmd publishing list.isolated for cases that were never solved 639023...
2008 Nov 04
1
Passing arguments to program started by dtrace?
Hi all, I''m trying to run dtrace -c on a program that takes command-line arguments... is there any way to tell dtrace where its args let off and the target''s begin, or will I have to write a shell script that checks for ''--'' or some such? Thanks, Ryan -- This message posted from opensolaris.org
2008 Mar 21
1
dtrace: failed to grab pid 16537: process is traced
I''m getting an odd behavior while trying to trace a mysql process using the -p flag on a Sun Cluster. This fails # dtrace -n ''pid$target::*mysql_parse*:entry {}'' -p `pgrep -x mysqld` dtrace: failed to grab pid 16537: process is traced Yet this works # dtrace -n ''pid$1::*mysql_parse*:entry {}'' `pgrep -x mysqld` dtrace: description
2006 Jun 03
1
man pages for each providers ?
Hey, Do you guys think that is a good idea to have a manual page for each provider with a complete description of what probes are offered ? Found some already under 7D category: dtrace dtrace (7d) - DTrace dynamic tracing facility fasttrap fasttrap (7d) - DTrace user instruction tracing provider fbt fbt (7d) - DTrace function boundary tracing provider
2010 Sep 24
1
Restore previous Wine installation
Hi guys! I hope you can help me with this problem of mine^^ I recently upgraded Wine 1.2 to 1.3.3 but now i have issues of all kind with some applications (like WoW or MWS) that I didn't have before. So I tried to reinstall 1.2 over 1.3.3 but no way... One important matter is that I had run "./configure --without-freetype" instead of "./configure". Could this be the problem? Anyway, is there a way to run a "System Restore" like Windo...
2008 Aug 19
3
variables in dtrace scripts
Greetings, is there a way to specify probes and other dtrace operations via command line parameters, like " BEGIN { usr_exec=$$1; usr_syscall=$$2; } syscall::usr_syscall:entry /execname == usr_exec && guard++ == 0/ { ... " [this does not work] This would make it possible to create "generic" dtrace scripts. Otherwise, some shellscript with sed-magic would
2007 Oct 08
0
Translators and multiply defined probenames]
...These rules imply that providers that provide Evolving or better Arguments Data stability must guarantee that all probes with identical field names in a field of Evolving or better Name stability have identical argument signatures. -Mike -- Mike Shapiro, Solaris Kernel Development. blogs.sun.com/mws/
2008 Mar 03
4
Modifying macro names generated by dtrace -h
I''d like to prepend TRACE_ to the macro names generated by dtrace -h. For example, change POSTGRESQL_LWLOCK_ACQUIRE(arg0, arg1) to TRACE_POSTGRESQL_LWLOCK_ACQUIRE(arg0, arg1) and still keep postgresql as the provider name. The reason for doing this is to make it clear that the macros are used for (D)tracing. In this particular case, without TRACE_, it appears like the macro is used
2006 Aug 17
7
in-kernel gzip compression
Hello zfs-discuss, Is someone actually working on it? Or any other algorithms? Any dates? -- Best regards, Robert mailto:rmilkowski at task.gda.pl http://milek.blogspot.com
2007 Dec 22
3
Erlang DTrace Provider
DTrace folks, I''m pleased to introduce a potential new DTrace-sponsored project: the Erlang DTrace provider. To be good OpenSolaris citizens, we want to put the formation of this officially sponsored project to a vote -- as outlined in the OpenSolaris Constitution -- so here are the details for the new Project, as prepared by the Project Team: Name : Erlang DTrace Integration
2005 Nov 22
6
DTrace #include problems
Howdy, I am trying to migrate several scripts to use application defined types, and am running into a few issues. When I attempt to run a script with a application defined type, it looks like the DTrace preprocessor is getting angry with me: $ cat view.d #include "httpd.h" :::acceptconnection { this->addr = (conn_rec *)copyin(arg0,sizeof(conn_rec *)); } $ dtrace -C