search for: submit

Displaying 20 results from an estimated 15345 matches for "submit".

2013 Apr 05
0
btrfs insane I/O amplification?
...block_dump said, during the problem: [83609.668785] btrfs-transacti(726): WRITE block 78521360 on dm-3 (112 sectors) [83609.668811] btrfs-transacti(726): WRITE block 78259328 on dm-3 (128 sectors) [83609.668814] btrfs-transacti(726): WRITE block 78521472 on dm-3 (128 sectors) [83609.668834] btrfs-submit-1(693): WRITE block 45092536 on dm-3 (1024 sectors) [83609.668839] btrfs-transacti(726): WRITE block 78259456 on dm-3 (128 sectors) [83609.668842] btrfs-transacti(726): WRITE block 78521600 on dm-3 (128 sectors) [83609.668849] btrfs-transacti(726): WRITE block 78259584 on dm-3 (24 sectors) [83609.6...
2023 Mar 22
0
[PATCH v2 1/2] drm/virtio: Refactor job submission code path
On Sun, Mar 19, 2023 at 9:11?AM Dmitry Osipenko <dmitry.osipenko at collabora.com> wrote: > > Move virtio_gpu_execbuffer_ioctl() into separate virtgpu_submit.c file > and refactor the code along the way to ease addition of new features to > the ioctl. > > Signed-off-by: Dmitry Osipenko <dmitry.osipenko at collabora.com> > --- > drivers/gpu/drm/virtio/Makefile | 2 +- > drivers/gpu/drm/virtio/virtgpu_drv.h | 4 +...
2002 Mar 01
3
iptables 1.2.5 and shorewall 1.2.8?
...nux I let it run and patched these: Welcome to Rusty''s Patch-o-matic! Each patch is a new feature: many have minimal impact, some do not. Almost every one has bugs, so I don''t recommend applying them all! ------------------------------------------------------- Already applied: submitted/2.4.4 submitted/conntrack-errormsg submitted/ip6tables-export-symbols submitted/ip6t_mac-fix-ipv6 submitted/ipchains-redirect-fix submitted/ip_nat_irc-srcaddr-fix submitted/ipt_LOG...
2003 Mar 20
6
[Bug 68] Kernel panic
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=68 ------- Additional Comments From laforge@netfilter.org 2003-03-20 10:55 ------- This looks strange. The BUG in slab.c tells us that there is a GFP_ATOMIC missing. This means that we are allocating kernel memory from softirq context with only GFP_KERNEL. If I understand your backtrace correctly, what happens is: - you are
2006 Apr 09
4
submitting forms help
I cant seem to figure this problem out and i was hoping someone could help me out. I have a page with a list of forms. I would like the user to be able to submit each form individually, or submit them all at once, to a different action (bascially, one that will do batch processing of all the forms). Is this possble? Please help. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/att...
2008 Jun 18
1
Form submit listener not catching form.submit();
Event listener for a form being submitted is not catching an A tag with a submit in it. Example JS: $(form).observe(''submit'', function(e) { e.stop(); // Something }); Example HTML: <a href="#" onClick="myForm.submit();">Submit form</a> Any idea how to fix this without...
2005 Apr 10
1
Submitting form using link_to
I''ve got a form with a paginator and I''d like to save the contents of the form whenever the user moves to a different page. Since the form contents aren''t submitted when a link is clicked, I thought I''d just change the action of the form to the URL of the paginator link and then submit the form using form.submit(). The form submits but I keep getting a 404 Not Found error when I click the link. To isolate the problem, I put in the following sub...
2010 Jun 10
2
submit button param is duplicated when a form is submitted a second time
...there any workaround? Thanks! require ''rubygems'' require ''mechanize'' agent = Mechanize.new page = agent.get(''http://google.com/'') google_form = page.form(''f'') google_form.q = ''ruby mechanize'' page = agent.submit(google_form, google_form.buttons.last) pp google_form.request_data page = agent.submit(google_form, google_form.buttons.last) pp google_form.request_data
2017 Dec 30
3
Submitting patches for LLVM -- llvm-commits vs. Phabricator?
Hi, I've recently submitted a patch to llvm-commits (as requested by https://llvm.org/docs/DeveloperPolicy.html#making-and-submitting-a-patch) and the mailing list answered with a notice that my message is held for moderator approval (with the reason: "Post by non-member to a members-only list"). I'm therefor...
2006 Apr 26
2
Problem with auto-submitting AJAX form
Hello, I have a form generated with form_remote_tag that contains a selection list. I would like to auto-submit the form when the user makes a choice in the selection list, so I added an option :onchange => ''this.form.submit()'' to select_tag Now what happens is that when I make a choice, the partial template get''s rendered as expected, but not replacing the target div but th...
2005 Dec 29
2
form_remote, getting data from submit
Hi list, I'm writing a little survey application, and surveys are generated dynamically. I use form_remote_tag and AJAX to submit the form to a method 'submit' in my 'survey' controller. The view generates the form as: <tr> <td>Question 1?</td> <td><input id="resultset_1" name="resultset[1]" size="30" type="text" /></td> </tr&g...
2010 Mar 05
15
Three submits, one controller
I have a ''new'' page with a submit for creating stories. On the ''show'' page the submit allows a user to enter comments. I now want a ''edit'' page for the stories with another submit for updates. I have used the ''create'' and ''update'' methods in the stories_control...
2005 Dec 10
1
submit ajax form through javascript
hi all, my problem: i have a form that is sent through ajax with ajax.updater. the onsubmit function looks like this: new Ajax.Updater( { failure:''command_div'' }, ''/windows/chat_post'', { asynchronous:true, parameters:Form.serialize(this } ); return false; this works fine when I submit the form by pressing the submit bu...
2008 Feb 01
2
proposed patch for fb_request_form_submit
Hi, according to the Facebook docs, you can add a uid to the fb_request_form_submit button which will pre select the user for the form. So you can do: <fb:request-form action="/my_tasks" method="POST" invite="true" type="MyApp" content="wants to invite you to xyz app"> <fb:request-form-submit uid="FRIENDID"...
2006 Mar 14
6
How to provide 2 actions to a form?
Hi, I have a form in rhtml. Now I have 2 buttons indside that form. Clicking on the first button action will be ''create'' & on second button action will be ''delete''. How to do this? Thanx Prash -- Posted via http://www.ruby-forum.com/.
2006 Feb 13
1
hackish error handling
...thod in my controller that recieves shipping information about a customer from my order system and is supposed to return a shipping label back to the user. The problem is that i want to validate that the form is sending me all the required fieds using ActiveRecords validation rules, then I need to submit the address in the order via XML to an external address verification service, use that data to make any changes to the order and then submit the order to the shipper via XML and recieve back their response - interpret it and then display the shipping label to the end user if everything went through...
2008 Nov 03
2
Multiple Submit Buttons
Hello. I have run into a new form that contains multiple submit buttons. Currently my code for working with forms looks just like this example. require ''rubygems'' require ''mechanize'' a = WWW::Mechanize.new { |agent| agent.user_agent_alias = ''Mac Safari'' } a.get(''http://google...
2013 Jul 31
2
[Announcement] Linux Plumbers ACPI/PM, PCI Microconference
...d an ACPI/PM, PCI microconference. The > overview page is here: > > http://wiki.linuxplumbersconf.org/2013:pci_subsystem > > We would like to start receiving volunteers for presenting topics of > interest. There is a lot of activity in these subsystems so please > respond by submitting presentation or discussion proposals that you > would be willing to cover for consideration. You should also feel > free to submit ideas as proposals that others could cover. The > instructions for submitting ideas should be at: > > http://www.linuxplumbersconf.org/2013/submit...
2018 Jan 02
3
Submitting patches for LLVM -- llvm-commits vs. Phabricator?
Hi, > Date: Sat, 30 Dec 2017 09:59:56 -0600 > From: Krzysztof Parzyszek via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> > To: llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > Subject: Re: [llvm-dev] Submitting patches for LLVM -- llvm-commits > vs. Phabricator? > > Hi, > The current practice is to upload a patch to phabricator and add > llvm-commits as a subscriber. This will send an email to the mailing > list. You can (and should) add some reviewers too. > > -Krzysztof...
2013 Jul 31
2
[Announcement] Linux Plumbers ACPI/PM, PCI Microconference
...d an ACPI/PM, PCI microconference. The > overview page is here: > > http://wiki.linuxplumbersconf.org/2013:pci_subsystem > > We would like to start receiving volunteers for presenting topics of > interest. There is a lot of activity in these subsystems so please > respond by submitting presentation or discussion proposals that you > would be willing to cover for consideration. You should also feel > free to submit ideas as proposals that others could cover. The > instructions for submitting ideas should be at: > > http://www.linuxplumbersconf.org/2013/submit...