similar to: DIF means?

Displaying 20 results from an estimated 900 matches similar to: "DIF means?"

2007 May 17
1
dtrace & MPI program
Hi all: Can dtrace trouble-shoot the MPI porgrams (HPC programs)? Does there exist an extension on dtrace to debug MPI program? If exist, then where can I find the how-to documentations? Thanks in advance? Regards TJ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Dec 14
23
Using DTrace to monitor productions systems
Hi, we are developing and operating an very critical application in the financial sector. Now our customer wants us to report performance data (roundtrip times of the messages routed). My idea is using dtrace to measure the times with the pid provider catching the timestamps on entry of the in and out functions of the processes. Now my questions ;-): 1) Is this an appropriate method to monitor
2002 Oct 29
3
FW: (no subject)
Jesus how do u post something, it always comes back :( -----Original Message----- From: Rend, Jon (Jon) % [mailto:rend@agere.com] Sent: Tuesday, October 29, 2002 8:05 AM To: 'samba@lists.samba.org' Subject: [Samba] (no subject) On friday we changed our smb.conf file to test the security model that uses DOMAIN authenticacion. It worked fine testing two seperate usernames from Multiple
2001 Oct 30
2
"last" providing incorrect information on Solaris 8
I'm seeing a problem using OpenSSH v2.9.9p2 on solaris and the usage of the "last" command. The "last <username>" usage is displaying the sessions as still being logged on the server when it's really not. The "last" by itself shows correct information about the session. Sometimes using the "last <username>" syntax the session shows
2010 Mar 26
7
seed data
Hi I am using seed_fu to seed initial data to tables (http://github.com/mbleigh/seed-fu) . And in db/fixtures/state.rb I have values like (I am filling only two data for simplicity) State.seed_many(:name, :abbr,:fips,:country_id, [ { :name => "Alberta", :abbr => ''AB'',:fips => ''01'', :country_id => 2 }, { :name =>
2004 Feb 20
4
GridEngine-OpenSSH integration
Hi, GridEngine (http://gridengine.sunsource.net, aka. SGE) is an opensource batch system for clusters. They have an integration with SSH: http://gridengine.sunsource.net/project/gridengine/howto/qrsh_ssh.html The idea is that instead of using a modified rsh/rshd, they wanted to OpenSSH. However, in order to provide full job control, they need to add a few hooks in OpenSSH. Question: - Is it OK
2006 Aug 03
1
Markdown and the hCal microformat
Hi, I've got a suggestion for adding something to Markdown's syntax. I'm new to the list, so I don't know if this is likely to be received well - I'm aware that it's not all that common (yet) to want to do something like this, and I don't know where everyone here stands on if or how to make markup more meaningful. I'd like to generate some microformated
2010 Aug 17
2
[Form] Method POST & PUT problem
Hello, I have a form that should be a POST method, but Rails insist to put a hidden field "_method" that has the value "put" does anyone knows why? Thanks, David Sousa Controller: ------------------------------- def new @user = @current_user end ------------------------------------------- View: ------------------------------------- <% semantic_form_for @user,
2007 Mar 12
9
X2200-M2
After the interesting revelations about the X2100 and it''s hot-swap abilities, what are the abilities of the X2200-M2''s disk subsystem, and is ZFS going to tickle any wierdness out of them? -brian -- "The reason I don''t use Gnome: every single other window manager I know of is very powerfully extensible, where you can switch actions to different mouse buttons.
2007 Apr 13
2
How to dtrace which process is writting a veritas volume?
Hi all, How to dtrace a who is writing a veritas volume? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.opensolaris.org/pipermail/zfs-discuss/attachments/20070412/dfd8c254/attachment.html>
2016 Apr 13
2
formula argument evaluation
I suppose it would work, although "=>" is rather a descriptive symbol and less a function. But choosing between quoting: "A + B => C" and a regular function: A + B %=>% C probably quoting is the most straightforward, as the result of the foo() function has to be a string anyways (which is parsed by other functions). On Tue, Apr 12, 2016 at 6:20 PM, Richard M.
2006 Oct 24
15
How to emit associative array after ^C
Boy am I a dummy. I want to simply dump out unfreed allocations when I terminate the script. What''s the secret sauce? #!/usr/sbin/dtrace -s pid$1::MyAlloc:return { bufs[arg1] = walltimestamp; } pid$1::MyFree:entry /bufs[arg0]/ { bufs[arg0] = 0; } This message posted from opensolaris.org
2008 Feb 13
3
Syntax for extensions
Hello, I need to to slightly extend the markdown syntax. (place an image (img tag) in text which URL has not yet been determined). Therefore I want to define something like $[Alt text](img.jpg) which would be replaced by my pre-processor with ![Alt text](/path/to/img.jpg) and then sent to markdown. Is there any special syntax that should be used for such 3rd party extensions? How would you do
2023 Dec 07
2
Are DIF files for releases available
I have a semi working 32-bit build of Samba 4.11.0 for Windows based on a patched Cygwin 2.5.2 build. I wondered if anyone knows where a set of DIF files to move it from release 4.11.0 to the latest stable release of 4.19.x (or through each intervening release to that point) could be obtained. I would like to apply changes incrementally to this build to avoid breaking the current work I have in
2008 Jan 17
1
Under DTrace USDT and PID, kernel''s microstat accounting doesn''t work in this situation, doesn''t it?
Does anyone has any ideas about this problem? 2008/1/15, ?? TaoJie <eulertao at gmail.com>: > > Hi all: > > I''m working on revealing system performance now. > My testing program is an infinite loop. Inside the loop, it will do some > mathematical opertaions and call function callee(), then go to the next > loop. > I install a alarm(30) in the program. It
2009 Jan 14
3
Casting lists to data.frames, analog to SAS
I have a specific question and a general question. Specific Question: I want to do an analysis on a data frame by 2 or more class variables (i.e., use 2 or more columns in a dataframe to do statistical classing). Coming from SAS, I'm used to being able to take a data set and have the output of the analysis in a dataset for further manipulation. I have a data set with vote totals, with one
2023 Dec 07
1
Are DIF files for releases available
07.12.2023 22:22, David Bean via samba ?????: > I have a semi working 32-bit build of Samba 4.11.0 for Windows based on a patched Cygwin 2.5.2 build. I wondered if anyone knows where a set of DIF files to move it from release 4.11.0 to the latest stable release of 4.19.x (or through each intervening release to that point) could be obtained. I would like to apply changes incrementally to this
2016 Apr 13
0
formula argument evaluation
%=>% would have precendence ('order of operations') problems also. A + B %=>% C is equivalent to A + ( B %=>% C) and I don't think that is what you want. as.list(quote(A + B %=>% C)) shows the first branch in the parse tree. The following function, str.language, shows the entire parse tree, as in > str.language(quote(A + B %=>% C)) `quote(A + B %=>%
2011 Jan 14
1
Help on a Display function
> I wanted to simulate the Matlab DISPLAY function for some time now. After seeing a recent proposal by Gabor Grothendieck I came up with the following solution, display <- function(...) { my_names <- lapply(substitute(placeholderFunction(...))[-1], deparse) for (my in my_names) cat(my, "=", eval(parse(text=my)), "\n", sep=" ") } that works about as
2007 Mar 06
2
acronym tag
Hello, is there an acronym method in php markdown extra ? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://six.pairlist.net/pipermail/markdown-discuss/attachments/20070306/e146240b/attachment.html