search for: take2

Displaying 18 results from an estimated 18 matches for "take2".

Did you mean: takes
2020 Sep 08
3
[PATCH] klcc: Remove the need for bash
...) && \ >> chmod a+x $@ >> $(obj)/$(KLIBCCROSS)klcc: $(src)/makeklcc.pl $(src)/klcc.in \ This doesn't work with older versions of make. ?make 4.2.1 seems common now and does not support $(shell command). $ cat Makefile $(info take1: $(shell command -v ls)) $(info take2: $(shell bash -c 'type -p ls')) all: @true $ make-3.81/make make: command: Command not found take1: take2: /bin/ls $ make-4.2.1/make make: command: Command not found take1: take2: /bin/ls $ make-4.3/make take1: /bin/ls take2: /bin/ls https://git.savannah.gnu.org/cgit/make.git/c...
2009 Nov 05
1
Take2: rsync over ssh with --link-dest
Ugh, sorry, fumbled the keys. Here is the proper message. Hi, I'm trying to backup a directory over ssh that is named according to the date, such as "20091104" on the remote side, and compare it to yesterday's backup on the local side, such as "20091103". I'm pretty sure I understand how rsync include/exclude works, and I believe that is the root of the problem.
2020 Jul 25
2
[PATCH] klcc: Remove the need for bash
Currently, in the entire klibc bash is only used to identify the path of the perl binary. It is doing so using the bash built-in 'type' function, which is POSIX compliant according to [0], but the option -c is not. By using `command -v` instead, we achieve the same result, in a POSIX compliant manor [1], potentially removing the unneeded bash dependency. 0
2012 May 12
12
before_save messing up
...er def sign_in(user) cookies.permanent[:_pm] = user.remember_token current_user = user end end The problem is the cookie doesn''t get set to any value at all. It''s always nil. Thanks in advance for any assistance given. [All the code is hosted here: https://github.com/TAKE2/RoR-Tutorial] -- 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/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+...
2020 Sep 08
0
[PATCH] klcc: Remove the need for bash
Greg Thelen dixit: >This doesn't work with older versions of make. ?make 4.2.1 seems common >now and does not support $(shell command). > >$ cat Makefile >$(info take1: $(shell command -v ls)) >$(info take2: $(shell bash -c 'type -p ls')) > >all: > @true > >$ make-3.81/make >make: command: Command not found Eh, what? ? checks with gmake 3.81? indeed. But no, this isn?t correct. You just do this instead: $(info take1: $(shell sh -c 'command -v ls')) This wo...
2008 Jul 10
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
...y >>> >> _______________________________________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -- > http://gbenson.net/ > <ppc-atomics- > take2.patch>_______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2020 Sep 09
2
[PATCH] klcc: Remove the need for bash
...9-2020 22:07, Thorsten Glaser wrote: > Greg Thelen dixit: > >> This doesn't work with older versions of make. ?make 4.2.1 seems common >> now and does not support $(shell command). >> >> $ cat Makefile >> $(info take1: $(shell command -v ls)) >> $(info take2: $(shell bash -c 'type -p ls')) >> >> all: >> @true >> >> $ make-3.81/make >> make: command: Command not found > > Eh, what? well command can be either a shell built-in or an external program, right? but both are posix required [0]? So t...
2008 May 20
4
[PATCH O/4] BIO tracking take2
Hi all, With this series of patches, you can determine the owners of any type of I/Os. I ported the previous version to linux-2.6.26-rc2-mm1. This makes dm-ioband -- I/O bandwidth controller -- be able to control the Block I/O bandwidths even when it accepts delayed write requests. Dm-ioband can find the owner cgroup of each request. It is also possible that OpenVz team and NEC Uchida-san team
2008 May 20
4
[PATCH O/4] BIO tracking take2
Hi all, With this series of patches, you can determine the owners of any type of I/Os. I ported the previous version to linux-2.6.26-rc2-mm1. This makes dm-ioband -- I/O bandwidth controller -- be able to control the Block I/O bandwidths even when it accepts delayed write requests. Dm-ioband can find the owner cgroup of each request. It is also possible that OpenVz team and NEC Uchida-san team
2008 Aug 21
0
[LLVMdev] Implementing llvm.memory.barrier on PowerPC
...entation of > llvm.memory.barrier. > >> Thanks for doing this btw. > > No problem, I need it! ;) > > Cheers, > Gary > > -- > http://gbenson.net/ -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: memory-barrier-take2.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080821/6b36a0ee/attachment.ksh> -------------- next part -------------- > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > ht...
2006 Dec 06
4
data frame subset patch, take 2
Hi Robert, Here is the second iteration of data frame subset patch. It now passes make check on both 2.4.0 and 2.5.0 (svn as of a few days ago). Same speedup as before. Changes: * Introduced two new functions .subassign2 and .subassign that are complimentary to .subset2 and .subset. * Changed x[[j]]<- assignment to x<-.subassign2(x, j, ..) to fix the problem with the previous patch.
2009 Aug 05
11
[Bug 1628] New: /var/run/sshd.pid file collisions...
https://bugzilla.mindrot.org/show_bug.cgi?id=1628 Summary: /var/run/sshd.pid file collisions... Product: Portable OpenSSH Version: 5.2p1 Platform: Other OS/Version: Solaris Status: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: unassigned-bugs at mindrot.org
2007 Dec 10
10
[PATCH] ioemu/qemu vga: save and restore vram buffer
The existing stdvga driver from xen-unstable tools/ioemu/hw/vga* does not save the emulated VGA memory contents. The symptoms include video malfunction after restore, including black screen (which can often be fixed by asking the guest to redraw) but also missing font setup etc. The attached patch fixes this by saving the entire VGA memory buffer, just like the Xen ioemu Cirrus emulator does. I
2008 Aug 21
2
[LLVMdev] Implementing llvm.memory.barrier on PowerPC
Dale Johannesen wrote: > On Aug 19, 2008, at 7:18 AMPDT, Gary Benson wrote: > > I'm trying to implement llvm.memory.barrier on PowerPC. I've > > modelled my patch (attached) on the implementation in X86, but > > when I try and compile my test file (also attached) with llc I > > get the error "Cannot yet select: 0x10fa4ad0: ch = MemBarrier > >
2015 Oct 31
17
[Bug 92761] New: dmesg full of nouveau E[ PIBUS][0000:01:00.0] GPC4: 0x5233e4 0xbadf1301 (0x01024215)
https://bugs.freedesktop.org/show_bug.cgi?id=92761 Bug ID: 92761 Summary: dmesg full of nouveau E[ PIBUS][0000:01:00.0] GPC4: 0x5233e4 0xbadf1301 (0x01024215) Product: xorg Version: unspecified Hardware: Other OS: Linux (All) Status: NEW Severity: normal Priority: medium
2008 Jul 09
2
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Ah, didn't see that, that's what comes of trying to do something at 5pm :) I attached an updated patch which creates a virtual register instead of using R0. How does this look? Cheers, Gary Dan Gohman wrote: > PPCTargetLowering::EmitInstrWithCustomInserter has a reference > to the current MachineFunction for other purposes. Can you use > MachineFunction::getRegInfo instead?
2008 Dec 12
15
[PATCH 00/15] ia64/pv_ops, xen: more paravirtualization. TAKE 3
...ence the working full source is available from http://people.valinux.co.jp/~yamahata/xen-ia64/for_eagl/linux-2.6-ia64-pv-ops.git/ branch: ia64-pv-ops-2008dec12-xen-ia64-optimized-domu For the status of this patch series http://wiki.xensource.com/xenwiki/XenIA64/UpstreamMerge thanks, Changes from take2 - two patches to remove warnings. - rebased to 2.6.28-rc8 Changes from take 1 - refreshed to 2.6.28-rc6 no essential change. Diffstat: arch/ia64/include/asm/native/inst.h | 13 ++ arch/ia64/include/asm/native/patchlist.h | 38 +++++++ arch/ia64/include/asm/native/pvchk_inst.h |...
2008 Dec 12
15
[PATCH 00/15] ia64/pv_ops, xen: more paravirtualization. TAKE 3
...ence the working full source is available from http://people.valinux.co.jp/~yamahata/xen-ia64/for_eagl/linux-2.6-ia64-pv-ops.git/ branch: ia64-pv-ops-2008dec12-xen-ia64-optimized-domu For the status of this patch series http://wiki.xensource.com/xenwiki/XenIA64/UpstreamMerge thanks, Changes from take2 - two patches to remove warnings. - rebased to 2.6.28-rc8 Changes from take 1 - refreshed to 2.6.28-rc6 no essential change. Diffstat: arch/ia64/include/asm/native/inst.h | 13 ++ arch/ia64/include/asm/native/patchlist.h | 38 +++++++ arch/ia64/include/asm/native/pvchk_inst.h |...