search for: unclosable

Displaying 20 results from an estimated 78 matches for "unclosable".

Did you mean: uncloseable
2010 Dec 25
4
[ win32utils-Bugs-28801 ] unclosed handle in Process.setpriority/getpriority
Bugs item #28801, was opened at 2010-12-25 11:02 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=411&aid=28801&group_id=85 Category: win32-process Group: Code Status: Open Resolution: None Priority: 3 Submitted By: Rafa? Michalski (royaltm) Assigned to: Nobody (None) Summary: unclosed handle in Process.setpriority/getpriority Initial Comment: Using
2005 Aug 14
1
parse():ing a unclosed string
When parse():ing R code from *file* with a unclosed string, that is, a string that has an open quoation mark, but not a ending one, the string seems to be closed automagically. Is this a "bug"? Example: > code <- "x <- '123"; > parse(text=code) # Gives an error as expected Error in parse(file, n, text, prompt) : parse error >
2020 Jan 24
3
R package builder silently continues after unclosed brace
If you start a function in one file but don't close it, the package will still build if you manage to close it in a later file. Like so: a.R b.R c.R a.R: function_a <- function(){ print("this is function_a") } b.R: function_b <- function(){ print("unclosed function_b") # no closing } c.R: function_c <- function(){ print("function_c will be part of
2020 Jan 25
0
R package builder silently continues after unclosed brace
R CMD build does not actually run any R code, it just puts the files together into a .tar.gz archive. R CMD INSTALL will run the R code, and fail. Gabor On Sat, Jan 25, 2020 at 4:59 PM Andy Manka <andy.manka at gmail.com> wrote: > > > If you start a function in one file but don't close it, the package > will still build if you manage to close it in a later file. Like so:
2018 Mar 05
2
Unclosed parenthesis in grep.Rd
Lines 129-131: \code{grep(value = FALSE)} returns a vector of the indices of the elements of \code{x} that yielded a match (or not, for \code{invert = TRUE}. This will be an integer vector unless the input There should be a closing parenthesis after \code{invert = TRUE}
2001 Mar 17
0
OpenSSH_2.5.1p2 hang on log out due to unclosed file handles in forked process
OpenSSH folks, We're run into a problem with OpenSSH_2.5.1p2 servers that we didn't see before, and I can't reproduce with OpenSSH_2.3.0p1 servers. (OpenSSH_2.3.0p1 seems to work correctly) We're seeing this bug on Solaris 2.7 and on Linux 2.2.15 machines. Basically, if you log into a machine, fork a process that leaves stdout, stderr, or stdin open, and try to log out of that
2011 Aug 18
0
[PATCH 3/3] Btrfs: fix unclosed transaction handle in btrfs_cont_expand()
The function - btrfs_cont_expand() forgot to close the transaction handle before it jump out the while loop. Fix it. Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> --- fs/btrfs/inode.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 634dd797..ee57b40 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3510,15
2013 Mar 04
0
[PATCH 2/2] Btrfs: fix unclosed transaction handler when the async transaction commitment fails
If the async transaction commitment failed, we need close the current transaction handler, or the current transaction will be blocked to commit because of this orphan handler. We fix the problem by doing sync transaction commitment, that is to invoke btrfs_commit_transaction(). Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> --- fs/btrfs/ioctl.c | 4 ++++ 1 files changed, 4
2018 Mar 05
1
Unclosed parenthesis in grep.Rd
There are probably more unmatched parentheses around: detect <- function(file) { text <- paste(readLines(file), collapse = "") nchar(gsub("[^(]", "", text)) != nchar(gsub("[^)]", "", text)) } docs <- list.files("r-source-trunk/src/library", pattern = "\\.Rd$", full.names =
2011 Aug 03
2
Malformed CSV Error
Hello, I am getting error :- #<CSV::MalformedCSVError: Unclosed quoted field on line 1892.>. I have following code :- -------------------------------------------------- @parsed_file = CSV.open("#{RAILS_ROOT}/private/sales_report_files/#{@file_folder}/#{@sub_file_folder}/#{@file_name.filename}",''r'',:col_sep =>?\t) @parsed_file.each_with_index do |row, index|
2006 Apr 10
2
X-HTMLifying Code
This falls into the category of "wonder if anyone''s done this"? The site I''m working on now has affiliate sponsors who provide link HTML. Almost all of it violates some W3C spec for XHTML, the primary offenders being capitalized tag names and unclosed tags like IMG. They also include ampersands as query-string separators, which also offends the W3C Validator. Has
2009 Jun 17
12
FasterCVS and Rails
Hello all, I''m trying to import some csv data (that has latin characters) using faster csv but I keep getting a MalformedCSVError: "Unclosed quoted field on line 1." "/ruby/lib/ruby/gems/1.8/gems/fastercsv-1.2.3/lib/faster_csv.rb:1592:in `shift''" I''ve tested the same code outside of the Rails application an it works fine. Can anyone help me? Here is
2024 Apr 08
2
Exceptional slowness with read.csv
I solved the mystery, but not the problem. The problem is that there's an unclosed quote somewhere in those 5 additional records I'm trying to access. So read.csv is reading million-character fields. It's slow at that. That mystery solved. However, the the problem persists: how to fix what is obvious to the naked eye - a quote not adjacent to a comma - but that read.csv can't
2006 Oct 06
0
DBI, RMySQL, RSQLite updated
Hello all, Just uploaded to CRAN updates for RSQLite, RMySQL, and DBI. The primary svn repository for these packages is now hosted by the Gentleman Lab in Seattle and our group is working with David James to help with maintenance. Details on the updates are below. RMySQL_0.5-9.tar.gz * Fixed unclosed textConnections RSQLite_0.4-4.tar.gz * Upgraded to SQLite 3.3.7 * Default when
2006 Oct 06
0
DBI, RMySQL, RSQLite updated
Hello all, Just uploaded to CRAN updates for RSQLite, RMySQL, and DBI. The primary svn repository for these packages is now hosted by the Gentleman Lab in Seattle and our group is working with David James to help with maintenance. Details on the updates are below. RMySQL_0.5-9.tar.gz * Fixed unclosed textConnections RSQLite_0.4-4.tar.gz * Upgraded to SQLite 3.3.7 * Default when
2008 Mar 21
2
Editplus bug?
As this is my first post here, I'd like to thank you all for your hard work on Wine. It's great having CS2 working so well. I just installed Editplus in wine and have noticed an issue int he syntax highlighting. An opening quote changes the text color and closing it ends the syntax highlight. However opening a quote and hitting return also ends the syntax highlighting even if the quote
2014 Jan 16
0
Processed: user debian-qa@lists.debian.org, found 728743 in 331.20-1, tagging 728743, tagging 735576 ...
...at lists.debian.org Setting user to debian-qa at lists.debian.org (was anbe at debian.org). > found 728743 331.20-1 Bug #728743 [libgl1-nvidia-glx] corrupts the signal block mask (SigBlk) breaking unrelated Bug #733816 [libgl1-nvidia-glx] khotkeys launches actions with SIGHUP blocked, leading to unclosable xterms Marked as found in versions nvidia-graphics-drivers/331.20-1. Marked as found in versions nvidia-graphics-drivers/331.20-1. > tags 728743 + fixed-upstream Bug #728743 [libgl1-nvidia-glx] corrupts the signal block mask (SigBlk) breaking unrelated Bug #733816 [libgl1-nvidia-glx] khotkeys la...
2009 Nov 16
1
puppetd 0.24.7-r1 has lots of close_wait connections
Hi folks I know that has, to some degree, been run over the past year in different ways, but, I may have yet another instance of an issue on this. The puppetmaster system and the puppet system are both running 0.24.7-r1, on a gentoo system. Other puppet systems are running 0.24.4. The puppet system (not the puppetmaster system) that is running 0.24.7-r1 is showing multiple close_wait
2007 Dec 26
7
Which is faster: searching in a file or in a database
Hello, I have ten CVS file with about 20000 rows in each. If I want to search in these files for example get every row that has the word "apple" i a column, which is faster: If I read all these ten files into the database and then making search in the database or If I search directly in the files for this inforamtion? Thank you! Please motivate your answer and include a code to make
2008 Jan 06
1
How do I blank or overwrite DVD-RW disks in CentOS 5?
I'm trying to use DVD-RW ("minus RW") disks in my LG GSA-4040B drive. I can write a new disk just fine, but can't find any way to blank or re-use a disk. When I run xcdroast and click on the "Blank CD/DVD+-RW" button, I get "Error while blanking." Here is last part of the dialog: Using generic SCSI-3/mmc DVD-R(W) driver (mmc_mdvd) Driver flags