search for: get_elements

Displaying 10 results from an estimated 10 matches for "get_elements".

Did you mean: get_element
2006 Jul 18
9
Simple Array Issue - HELP
...#39; response = http.request(request) response.value response.body end @links = Array.new http = Net::HTTP.new(''api.del.icio.us'', 443) http.use_ssl = true http.start do |http| xml = get_authenticated(''/v1/posts/recent?count=10'', http) REXML:ocument.new(xml).root.get_elements(''post'') .each do |post| link = post.attributes[''href''] @links = link end end See where I''m saying "@links = link"? I''m trying to get that into an array. Then iterate over the array in the view, but it''s not working. It only...
2019 May 10
2
ALTREP: Design concept of alternative string
Hi Gabriel, Thanks for your explanation, I totally understand that it is almost impossible to change the data structure of STRSXP. However, what I'm proposing is not about changing the internal representation, but rather about how we design and use the ALTREP API. I might do not state the workarounds clearly as English is not my first language. Please let me explain them again in detail.
2019 May 08
2
ALTREP: Design concept of alternative string
Hello from Bioconductor, I'm developing a package to share R objects across clusters using boost library. The concept is similar to mmap package: https://cran.r-project.org/web/packages/mmap/index.html . However, I have a problem when I was trying to write Dataptr_method for the alternative string. Based on my understanding, the return value of the Dataptr_method function should be a vector
2019 May 10
0
[External] Re: ALTREP: Design concept of alternative string
On Fri, 10 May 2019, ??? wrote: > Hi Gabriel, > > Thanks for your explanation, I totally understand that it is almost > impossible to change the data structure of STRSXP. However, what I'm > proposing is not about changing the internal representation, but rather > about how we design and use the ALTREP API. > > I might do not state the workarounds clearly as English is
2019 May 09
0
ALTREP: Design concept of alternative string
Hi Jiefei, The issue here is that while the memory consequences of what you're describing may be true, this is simply how R handles character vector (what you're calling string) values internally. It doesn't actually have anything to do with ALTREP. Standard character vector SEXPs have an array of CHARSXP pointers in their payload (what is returned by DATAPTR) as well. As far as I
2018 Mar 02
0
Wine release 3.3
The Wine development release 3.3 is now available. What's new in this release (see below for details): - Beginnings of Vulkan support. - Direct3D multi-threaded command stream enabled by default. - Multisample textures enabled by default. - Support for game controllers through SDL. - Support for loading CIL-only .Net binaries. - Various bug fixes. The source is available from the
2006 Jul 18
0
del.icio.us links in the layout - HELP
...@descriptions = Array.new @times = Array.new @i = 0 http = Net::HTTP.new(''api.del.icio.us'', 443) http.use_ssl = true http.start do |http| xml = get_authenticated(''/v1/posts/recent?count=10&tag=rpheath'', http) REXML::Document.new(xml).root.get_elements(''post'').each do |post| link = post.attributes[''href''] @links << link desc = post.attributes[''description''] @descriptions << desc time = post.attributes[''time''] @times << tim...
2006 Jul 21
1
What''s wrong with this code?
...path = "/services/rest/?api_key=API_KEY&method=flickr.photos.search&user_id=USER_ID&tags=TAG" http = Net::HTTP.new(''flickr.com'') @photo_ids = Array.new http.start do |http| xml = get_response(path, http) REXML::Document.new(xml).root.get_elements(''photo'').each do |photo| id = photo.attributes[''id''] @photo_ids << id end end #Application.rhtml layout <% for p in @photo_ids %> <%= p %> <% end %> This just doesn''t do anything. It doesn''...
2011 Mar 04
0
Wine release 1.3.15
...ed simple filter parser to support opacity. mshtml: Added IHTMLFormElement::onsubmit implementation. mshtml: Fixed memory leak. mshtml: Added support for canceling default event behavior. mshtml: Added onsubmit and event canceling tests. mshtml: Added IHTMLFormElement::get_elements implementation. mshtml: Added IHTMLLocation::replace implementation. mshtml: Correctly handle NULL BSTR in VARIANT in IDispatchEx implementation. mshtml: Reuse attribute objects. mshtml: Use our IDispatchEx-based attributes implementation instead of nsIDOMAttr. mshtml:...
2009 Jan 30
0
Wine release 1.1.14
The Wine development release 1.1.14 is now available. What's new in this release (see below for details): - Various bug fixes for Internet Explorer 7. - Many crypt32 improvements, including new export wizard. - Better support for windowless Richedit. - Improvements to the print dialog. - Many fixes to the regression tests on Windows. - Various bug fixes. The source is available