search for: note1

Displaying 20 results from an estimated 36 matches for "note1".

Did you mean: note
2006 Feb 28
2
AJAX: do render but show element in same click?
I''m a rails newbie. I''ve got a link_to_remote that puts a partial render into a div ("note1", "note2", etc.). As part of the display that comes up, I put in a hide note link (element.toggle). Click that, the div goes away, everything''s great... except now I can''t get it back. How can I call the remote AND make the div show at the same time? I see elemen...
2011 Nov 25
3
Is package gem and provider gem usage in one puppet run possible?
...st run the puppet agent run checks for a functional gem binary on the system. It will not find gem installed and claims gem provider to be unusable. On the second run puppet now finds the gem provider. Is there any known method which will allow us to use gem provider also on the first puppet run? Note1: Using stages will not solve this. Note2: We would not like to execute a puppet restart after ruby1.9.1 package installation. Thank you, Kind regards, Martin -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send...
2006 Feb 28
4
No action from AJAX link_to_remote...
...ize => "28x30", :alt => "Notes", :border => "0"), :update => "note#{project.id}", :url => { :action => :show_note, :id => project.id }) Here''s the resulting JS: <a href="#" onclick="new Ajax.Updater(''note1'', ''/project/show_note/1'', {asynchronous:true, evalScripts:true}); return false;"><img alt="Notes" border="0" height="30" src="/images/notes3.png" width="28" /></a> I don''t think that :show_n...
2015 Apr 06
2
[LLVMdev] inconsistent wording in the LangRef regarding "shl nsw"
...I suspect that the check is supposed to be "IVal->isNotMinSignedValue()" or equivalent.) Should one of the two clauses be removed from the LangRef? I'd prefer keeping (2) and removing (1) unless it inhibits some important optimization, solely because (2) is easier to reason in. Note1: neither clause is stronger than the other -- "shl i8 -1, 7" sign-overflows by (2) but not by (1). Note2: there may be similar issues with nuw; I have not investigated that yet. -- Sanjoy
2020 Feb 14
5
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...tifier with shrinker"), don't add a moodule parameter to configure the > number of pages to deflate on OOM. Can be re-added if really needed. > Also, pay attention that leak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). > > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we > could actually skip sending deflation requests to our hypervisor, > making the OOM path *ver...
2020 Feb 14
5
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...tifier with shrinker"), don't add a moodule parameter to configure the > number of pages to deflate on OOM. Can be re-added if really needed. > Also, pay attention that leak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). > > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we > could actually skip sending deflation requests to our hypervisor, > making the OOM path *ver...
2009 Sep 01
5
Deep nested associations on the same Model
This could be a lot simpler than I think and I''m just missing something obvious! I''m working on a creative collaboration app whereby one user could submit a Story and this can then be forked by another user and worked on seperately. To acheive this I have a has_many association within the same Story model as such: class Story < ActiveRecord::Base has_many
2017 Nov 02
13
[RFC] Enable Partial Inliner by default
...-------- -------- SPEC2006(C/C++) 1.31% (cumulative) SPEC2017(C/C++) 0.25% (cumulative) ---------------------------------------------- Code size ---------------------------------------------- Workload Increase -------- -------- SPEC2006(C/C++) 3.90% (geomean) SPEC2017(C/C++) 1.05% (geomean) NOTE1: Code size increase in SPEC2006 was mainly attributed to benchmark "astar", which increased by 86%. Removing this outlier, we get a more reasonable increase of 0.58%. NOTE2: There is a patch up for review on Phabricator to enhance the partial inliner with the presence of profiling infor...
2020 Feb 06
1
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...tifier with shrinker"), don't add a moodule parameter to configure the > number of pages to deflate on OOM. Can be re-added if really needed. > Also, pay attention that leak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). > > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we > could actually skip sending deflation requests to our hypervisor, > making the OOM path *ver...
2014 Nov 13
1
Slow access from Windows 7 to samba share on CentOS 6.6 after upgrade
Hi all, Did anybody notice a really slow access from Windows 7 (especially from the MS Office suite) when trying to open a Word-doc for example, that sits on a samba share on a computer recently upgraded to CentOS 6.6? It can take up to two-three minutes to open a 20 kB Word-doc... I tested with the latest available LibreOffice for Windows on the same Word-docs, but this one doesn't show
2020 Feb 06
2
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...ak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). Oh. So it was returning a wrong value originally (before 71994620bb25). However what really matters for notifiers is whether the value is 0 - whether we made progress. So it's cosmetic. > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. Quite. However, I went back researching why we dropped the OOM notifier, and found this: https://lore.kernel.org/r/1508500466-21165-2-git-send-email-wei.w.wang at intel.com To quote from there: T...
2020 Feb 06
2
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...ak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). Oh. So it was returning a wrong value originally (before 71994620bb25). However what really matters for notifiers is whether the value is 0 - whether we made progress. So it's cosmetic. > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. Quite. However, I went back researching why we dropped the OOM notifier, and found this: https://lore.kernel.org/r/1508500466-21165-2-git-send-email-wei.w.wang at intel.com To quote from there: T...
2013 Oct 08
0
boot fails with dracut warning
...lt;ffffffff81073ae2>]? do_exit0x25/0x870 [<ffffffff81182885>]? fput_+0x25/0x30 [<ffffffff81073b48>]? do_group_exit+0x58/0xd0 [<ffffffff81073bd7>]? sys_exit_group+0x17/0x20 [<ffffffff8100b072>]? system_call_fastpath+0x16/x1b Panic occurred, switching back to text console *note1*: block device sought is not shown in /dev/fstab. =+=+= block devices defined in centos /etc/fstab; UUID=16c4f70d-0aff-4760-859c-ecf05e1e025f / ext4 \ defaults 1 1 UUID=e13d224f-d9a3-4697-8693-5395a1477050 /hd/sdb/06 ext4 \ defaults 1 2 UU...
2020 Feb 05
12
[PATCH v1 0/3] virtio-balloon: Fixes + switch back to OOM handler
Two fixes for issues I stumbled over while working on patch #3. Switch back to the good ol' OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM as the switch to the shrinker introduce some undesired side effects. Keep the shrinker in place to handle VIRTIO_BALLOON_F_FREE_PAGE_HINT. Lengthy discussion under [1]. I tested with QEMU and "deflate-on-oom=on". Works as expected. Did not test
2020 Feb 05
2
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...otifier with shrinker"), don't add a moodule parameter to configure the > number of pages to deflate on OOM. Can be re-added if really needed. > Also, pay attention that leak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). > > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we > could actually skip sending deflation requests to our hypervisor, > making the OOM path *very...
2020 Feb 05
2
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...otifier with shrinker"), don't add a moodule parameter to configure the > number of pages to deflate on OOM. Can be re-added if really needed. > Also, pay attention that leak_balloon() returns the number of 4k pages - > convert it properly in virtio_balloon_oom_notify(). > > Note1: using the OOM handler is frowned upon, but it really is what we > need for this feature. > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we > could actually skip sending deflation requests to our hypervisor, > making the OOM path *very...
2018 Dec 05
0
fixing debian's hd-media image
...nding on the adequate notation (for your script). Alternatively, the installation of SYSLINUX can instead be performed later on, once/when the device is unmounted, by using one of the alternative official installers for SYSLINUX. This alternative is currently _not_ described in this procedure. Note1: "$target" (or "target") is just one way for me to post the command here. Your real path / script / notation might be slightly different (yet, all variants shall include the subdirectory "boot/syslinux"). Please adapt it accordingly. Note2: the last slash character...
2014 Jul 18
2
Anyone using CentOS 6 on PC104 stacks?
...to the PATA hard drive just fine, but they each hang up while the installed system is trying to get UDEV going. And by "hang up" I mean a) leave the machine setting for hours and it never gets udev started, AND b) the keyboard has gone non-responsive (power switch is the only way out). Note1: each board and drive works fine under CentOS 5.9. Note2: for the purposes of this test all other boards have been removed, it is just the CPU board and an power supply. Granted that does leave the video chip, serial chip, audio chip, usb chip, and memory (which was memtest86 for 50 hours in this c...
2020 Mar 08
0
[PATCH v1 3/3] virtio-balloon: Switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM
...figure the >> > > number of pages to deflate on OOM. Can be re-added if really needed. >> > > Also, pay attention that leak_balloon() returns the number of 4k pages - >> > > convert it properly in virtio_balloon_oom_notify(). >> > > >> > > Note1: using the OOM handler is frowned upon, but it really is what we >> > > need for this feature. >> > > >> > > Note2: without VIRTIO_BALLOON_F_MUST_TELL_HOST (iow, always with QEMU) we >> > > could actually skip sending deflation requests...
2018 Dec 03
2
fixing debian's hd-media image
On Mon, Dec 3, 2018 at 10:02 AM Ady Ady via Syslinux <syslinux at zytor.com> wrote: > > > Now it is just dd, mkfs and copy in the files we need. > > One less thing to worry about keeping versions consistent. > > > > > > I just noticed those 2 files that were added by > > > > syslinux -i boot.img > > > > (right?) > > > >