search for: sec14

Displaying 5 results from an estimated 5 matches for "sec14".

Did you mean: sec1
2008 Jun 16
2
[PATCH] tweaks to the kate properties reported by oggzinfo
Hi, Language should be Content-Language to match other uses, and while there I think Category might as well become Content-Category too, though this one doesn't "exist" AFAIK. I'm pretty sure these things come from some standard, but I have no idea where, so if you know, feel free to point my in the right direction. Cheers -------------- next part -------------- A non-text
2015 Jul 29
1
Fedora change that will probably affect RHEL
On Tue, July 28, 2015 19:46, Warren Young wrote: > > iPads can???t be coopted into a botnet. The rules for iPad passwords > must necessarily be different than for CentOS. > http://www.tomsguide.com/us/ios-botnet-hacking,news-19253.html -- *** e-Mail is NOT a SECURE channel *** Do NOT transmit sensitive data via e-Mail James B. Byrne
2005 Mar 10
6
images from database + caching
Is the information in http://wiki.rubyonrails.com/rails/show/HowtoUploadFiles on caching images still the best way on how to cache images that are served from the database? I haven''t added time information to my image table yet, and the images are sent after every single page view (even if it''s been downloaded already). Joe
2009 Dec 17
2
some help regarding combining columns from different files
Dear all, Here is my code which am using to combine 5th column from different data sets. Here is the function to do my job genesymbol.append.file <-NULL gene.column <- NULL readGeneSymbol <- function(files,genesymbol.column=5){ for(i in fnames){ temp <- read.table(fnames,header=T,sep="\t",stringsAsFactors=F,quote="\"")
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...ainly from curl --libcurl on the call used by download.file(method = "curl"). @@ -502,7 +515,13 @@ in_do_curlDownload(SEXP call, SEXP op, SEXP args, SEXP rho) if (!cacheOK) { /* This _is_ the right way to do this: see ?14.9 of http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html */ - slist1 = curl_slist_append(slist1, "Pragma: no-cache"); + struct curl_slist *tmp = + curl_slist_append(headers, "Pragma: no-cache"); + if (!tmp) { + curl_slist_free_all(headers); + error(_("out of memory")); + } + headers = tmp; } CURLM *...