search for: counterpart

Displaying 20 results from an estimated 987 matches for "counterpart".

2010 May 29
1
NetShareEnum counterpart
Hello, I am searching for a Samba counterpart of the Windows API function NetShareEnum http://msdn.microsoft.com/en-us/library/bb525387%28VS.85%29.aspx - a function that lists the smb resources of a given server. It googled quite a lot and had a quick look on the libsmbclient header but did not find anything that helped. `smbclient -L...
2014 Nov 26
0
Sieve counterpart of IMAP SPECIAL-USE
Hi, It would be useful to allow Sieve scripts to "fileinto" based on SPECIAL-USE flags. But all I've been able to find about it is this: http://www.ietf.org/mail-archive/web/sieve/current/msg05171.html Has there been any progress since? /Peter
2006 Jul 18
0
PHP script timeout RoR counterpart ?
Hello, I''m running Apache + fastcgi and I wonder how to allow a script to run for a moderated period of time (up to 2 or 3 minutes - this is for an intranet app, not a website) At first, I think it should be the -idle-timeout parameter of the FastCgiServer directive in Apache conf Am I right ?? Thanks -- Posted via http://www.ruby-forum.com/.
2013 Feb 23
0
where condition having no association
Rails 3.2.11 My app has a model called Plan, which has has_many self-referential association just like http://railscasts.com/episodes/163-self-referential-association has_many :matches has_many :counterparts, :through => :matches has_many :inverse_matches, :class_name => "Match", :foreign_key => :counterpart_id has_many :inverse_counterparts, :through => :inverse_matches, :source => :plan and in the plans_controller, I would like to find a plan (counterpart) having m...
2018 Mar 18
1
`free` counterpart to `alloca`, or way to lift to function home
I'm unintentionally allocating too much space on the stack by using `alloca` inside a loop. To fix this I will do my `alloca` outside of the loop itself.  I'm wondering if there is a way for this to be automatically done: given alloca a function scope, rather than loop scope. I'm curious also, since this actually allocates each time in the loop, is there a way to say the stack
2005 Jun 24
3
Counterpart for Matlab's 'feval'?
Hi! I've just begun writing a program that searches for the minimum of a function with golden section search. In order to do this in a nice way I need a function that takes a function name and an argument and returns the function value for that argument, i .e just like Matlab's 'feval'. Is there any? Thanks before hand! Best regards, Fredrik Thuring, Codan Insurance A/S
2004 Oct 19
9
News for OS X Users
Sorry things have gone silent on the release front, but I have some good news: I''ve gotten wxruby-swig to build as a OS X framework. This has a couple of ramifications 1) wxruby for the Mac will finally exactly like its Linux and PC counterparts, menu bar and all. 2) Bundling wxruby applications becomes a lot easier. 3) The next binary installer should be able to support darwinports, fink, and all of the other various rubies for Mac OS X. I''m going to work on getting the installer ready. I''m also going to try to back-...
2009 Nov 27
3
Iteration idioms & laziness
...ing what's the idiomatic way to iterate. It seems that for loops are the default given there's no tail-call optimization. I'm curious to know whether there is a way to transform the following toy snippet into something that doesn't eat up gigabytes of memory (like it's for loop counterpart) using laziness: Reduce('+', seq(1,1e6)) Thanks! Best regards, A.S.
2010 Nov 30
3
how to 'delete' an object from an association collection in-memory only
...parent. Is there a way to delete/destroy the member of a collection so that I can play around with the accordingly modified parent in memory, without actually committing the destruction of the collection member to the data store? Based on my read of the docs, there is no ''delete'' counterpart to ''collection.build'' for association members. Thanks for any comment, Lille -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCG...
2008 Mar 26
5
[LLVMdev] Checked arithmetic
...discuss some approaches first. There would appear to be three approaches: 1. Introduce a CC register class into the IR. This seems to be a fairly major overhaul. 2. Introduce a set of scalar and fp computation quasi-instructions that accept the same arguments as their computational counterparts, but produce *only* the condition code. For example: add i32 ... produces result add_cc i32 ... produces condition codes Once this exists, re-combine the instructions in the back end with peepholes. 3. Handle CC as a black magic special case, which at least h...
2009 Oct 18
3
[LLVMdev] strace for whole-program bitcodes
...le. When we want to build a whole-program bc file by a general solution(I meant that we can use such a method for all kinds of build system),we need not only a gold-plugin to do what llvm-ld does,but also some mechanisms,not a simple trick to modify the env variables,to run ar,ld,ranlib's llvm-counterparts when building. A wrapper which can wraps cc1,ld,ar,ranlib may archieve it.. Nan
2005 Dec 19
2
update_attrbutes without saving?
Hello all, Is there a method for updating all the attributes from a hash without saving to the database? (the counterpart of update_attributes but without saving). What I want to do is: person = Person.find(params[:id]) person.update_without_saving(params[:person]) #update the in-memory object. # Process person object ....... person.save I know that when you are creating a new object, you can use Person.new (update...
2003 Dec 04
2
Double quote scp?
...t I need to double quote file names in scp: > scp gaelicWizard:"Desktop/Picture 1.pdf" . > scp: Desktop/Picture: No such file or directory > scp: 1.pdf: No such file or directory Why is this necessary? Wouldn't it be much better to have scp communicate with its server-side counterpart with null-terminated strings, not to have the server interpret the strings separately? Thanx, JP -- Every time you share on a P2P network, God kills a kitten. Please think of the kittens. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: appli...
2006 Sep 16
2
Traffic Control in a bridge
...tc) using a router, ie packets into an interface and based on routing, they goes out to somewhere else. However I have a box with two interfaces, eth0 and eth1 added to a bridge br0 and I would like to perform traffic control via the two interfaces. Is that supposed to work the same as the router counterpart, ie traffic control is transparent to routing and bridging ?
2014 Jul 06
3
mdiskchk and WinPE
On 7/6/2014 01:55, Ady wrote: > > I can see 1 branch in Shao's git repo that might be relevant: > > mdiskchk_win > > [quote] > > mdiskchk.exe will be the Windows counterpart for the DOS version > mdiskchk.com. The purpose is to be able to scan low memory for > instances > of Syslinux' MEMDISK and report these instances' parameters to a > user > or batch file. > > Under Windows, we will use the pmem.sys driver to scan physical > me...
2010 May 07
3
[LLVMdev] MCStreamer interface
...ent isolation > between TargetLoweringObjectFile -> MCStreamer -> MCObjectWriter has > proven somewhat problematic, mostly due to my lack of understanding. > I guess MCSectionXXX was meant to provide communication between them. > Should the same be true of MCSymbol, and their data counterparts? I'm enclosing my patch for reforming MCSectionCOFF to match the implementation strategy of the other two MCSection classes. You may find it useful as a starting point. It seems to be complete and correct, and worked for what I tried with it, but I didn't find time to test it fully (e.g.,...
2020 Jun 25
2
[libcxx-dev] How to include abi and unwind tests in libcxx test suite in standalone mode
I just landed these patches: commit c55051eea5d3cd57abfd9727f519b670517704d9 Author: Louis Dionne <ldionne at apple.com> Date: Thu Jun 25 12:02:43 2020 -0400 [libunwind] Allow specifying custom Lit config files This is the libunwind counterpart of 0c66af970c80. commit 33c9c10d183371edc95fa936705bef56f55ab611 Author: Louis Dionne <ldionne at apple.com> Date: Thu Jun 25 11:46:00 2020 -0400 [libc++abi] Allow specifying custom Lit config files This is the libc++abi counterpart of 0c66af970c80. Louis &...
2015 Jun 12
2
[Off Topic] - need help registering to the smplayer forum
On Sat, Jun 13, 2015 at 10:16:28AM -0600, jd1008 wrote: > That said, I wonder if centos has a counterpart to fedup, > so that I can upgrade to centos 7.5. AFAIK, nothing that's supported. There's the tool available here: http://wiki.centos.org/TipsAndTricks/CentOSUpgradeTool ... but it can leave your system in a broken state. (I'm assuming you mean migrating from CentOS6 to CentOS7....
2009 Jun 01
3
[LLVMdev] [PATH] Fix support for .umul.with.overflow on x86 + fix c binding
Hi, The first patch fixes the implementation of umul.with.overflow on x86 which was throwing a 'Cannot yet select' error. The second patch fixes the definition of LLVMTypeKind in the C binding by syncing it with the c++ counterpart. Please review and commit if it looks ok. thanks Zoltan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090601/149fa968/attachment.html>
2016 Apr 07
2
A few new Pigeonhole features
Hi, A few new Pigeonhole features that enthusiasts can experiment with: - Recently, I implemented support for the "imapsieve" extension in Sieve and its IMAP counterpart (https://tools.ietf.org/html/rfc6785). This is now in the Pigeonhole master branch. This allows running Sieve scripts at IMAP activity, rather than at delivery. There are also facilities for the familiar sieve_before/sieve_after administrator scripts. The documentation is currently only in the...