search for: add_data

Displaying 7 results from an estimated 7 matches for "add_data".

Did you mean: addr_data
2008 Oct 26
3
Undefined method f_title
Hi, This is my migration: class CreateSampleForms < ActiveRecord::Migration def self.add_data SampleForm.create(:name => ''Default (Empty)'', :f_type => ''Default (Empty)'', :description => ''Use this template to create a blank form.'') end def self.up create_table :sample_forms do |t| t.string :name, :null => fa...
2010 Mar 09
4
edit existing PDF as template
Hi, I am new to rails. I need to edit an existing pdf file and fill in some data and send it to browser, how to implement this? Is there an example online I can look at it? Thanks! -- Posted via http://www.ruby-forum.com/. -- 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
2012 Oct 18
10
[PATCH 0/10] Add a mini-library for running external commands.
Inspired by libvirt's virCommand* internal mini-library, this adds some internal APIs for running commands. The first patch contains the new APIs. The subsequent patches change various parts of the library over to use it. Rich.
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
..._out_desc_size(cmd); ++ ++ if (dir == DMA_TO_DEVICE) ++ format = cmd->buf_fmt >> 4; ++ else ++ format = cmd->buf_fmt & ((1U << 4) - 1); ++ ++ switch (format) { ++ case SRP_NO_DATA_DESC: ++ break; ++ case SRP_DATA_DESC_DIRECT: ++ md = (struct srp_direct_buf *) ++ (cmd->add_data + offset); ++ err = srp_direct_data(sc, md, dir, rdma_io, dma_map, ext_desc); ++ break; ++ case SRP_DATA_DESC_INDIRECT: ++ id = (struct srp_indirect_buf *) ++ (cmd->add_data + offset); ++ err = srp_indirect_data(sc, cmd, id, dir, rdma_io, dma_map, ++ ext_desc); ++ break; ++ default: +...
2018 Aug 17
0
Wine release 3.14
...put: Fix DIK code mappings on Japanese 106 keyboard. dinput: Correct key name mappings on Japanese 106 keyboard. Alex Henrie (7): quartz: Remove redundant if clause from WAVEParser_InputPin_PreConnect. quartz: Use wine_dbgstr_longlong in WAVEParserImpl_seek. quartz: Rewrite add_data with CoTaskMemRealloc and error handling. shell32: Rename IDI_SHELL_DOCUMENT to IDI_SHELL_FILE. shell32: Add document icon. shell32: Add window icon. shell32: Add 512k and 314k floppy drive icons. Alexandre Julliard (5): winedump: Don't use strncat with source len...
2016 Mar 06
8
[PATCH 0/5] Use less stack.
Various changes/fixes to use smaller stack frames. Rich.
2016 Mar 07
2
[PATCH v2] Use less stack.
...+660,7 @@ loop (struct command *cmd) /* Read the output, buffer it up to the end of the line, then * pass it to the callback. */ - n = read (cmd->outfd, buf, sizeof buf); + n = read (cmd->outfd, buf, BUFSIZ); if (n > 0) { if (cmd->outbuf.add_data) cmd->outbuf.add_data (cmd, buf, n); diff --git a/src/conn-socket.c b/src/conn-socket.c index 05177ca..5b6b80e 100644 --- a/src/conn-socket.c +++ b/src/conn-socket.c @@ -312,7 +312,7 @@ static int handle_log_message (guestfs_h *g, struct connection_socket *conn)...