search for: expicit

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

Did you mean: explicit
2023 Jul 31
5
Call for testing: OpenSSH 9.4
...ftp(1): adjust ftruncate() logic to handle servers that reorder requests. Previously, if the server reordered requests then the resultant file would be erroneously truncated. * ssh(1): don't incorrectly disable hostname canonicalization when CanonicalizeHostname=yes and ProxyJump was expicitly set to "none". bz3567 * scp(1): when copying local->remote, check that the source file exists before opening an SFTP connection to the server. Based on GHPR#370 Portability ----------- * All: a number of build fixes for various platforms and configuration combination...
1997 Sep 12
2
R-alpha: bug in passing of empty (...)
This is too bad (and an old bug at least since 0.49); it also breaks some code I have been using in S-plus: > tst <- function(...) ls(...) > tst()#--- should really give the same as ls() !! character(0) > ls() [1] "%in%" "As.integer" "Dir" [4] "Dir0" "Fn12"
2005 Aug 16
2
TxFax -> RxFax on same machine hangs
Hi, I noticed a strange behaviour: Faxing using spandsp (TxFax) from my asterisk box to my old, common fax machine at home works fine. Faxing from the same box to my office pc-fax (Hylafax) also worke fine. Receveiving faxes on my asterisk box using spandsp (RxFax) also works fine. It is a PSTN number connected to the digium card of that asterisk box. Then I faxed from my asterisk box (TxFax)
2007 Jul 10
18
Recursive permissions
Does anyone know if it''s possible to do the following: Given the directory structure: /foo/bar /foo/bar/<bunch of stuff> Is it possible to set /foo/bar to, say 555, and all stuff below to 440 or the directory equivalent? Thanks, Trevor
2006 Sep 06
3
url_for , controller routing error
I have an ''account_controller.rb'' in an ''admin'' module I list the accounts with : http://0.0.0.0:3000/admin/accounts/list, and get my table trying to sort it, I use the follwoing sort_link_helper : def sort_link_helper(text, param) key = param key += "_reverse" if @params[:sort] == param options = { :url =>
2011 Sep 27
7
MSI error when reloading iwlagn module
Hi, With a fairly current kernel + xen, I''m seeing this if I rmmod iwlagn and try to reload it: [51230.646678] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: [51230.646685] Copyright(c) 2003-2011 Intel Corporation [51230.646760] xen: registering gsi 17 triggering 0 polarity 1 [51230.646773] xen_map_pirq_gsi: returning irq 17 for gsi 17 [51230.646777] xen: --> pirq=17
2023 Aug 10
1
Announce: OpenSSH 9.4 released
...ftp(1): adjust ftruncate() logic to handle servers that reorder requests. Previously, if the server reordered requests then the resultant file would be erroneously truncated. * ssh(1): don't incorrectly disable hostname canonicalization when CanonicalizeHostname=yes and ProxyJump was expicitly set to "none". bz3567 * scp(1): when copying local->remote, check that the source file exists before opening an SFTP connection to the server. Based on GHPR#370 Portability ----------- * All: a number of build fixes for various platforms and configuration combination...
2023 Aug 09
1
Call for testing: OpenSSH 9.4
...ogic to handle servers that > reorder requests. Previously, if the server reordered requests then > the resultant file would be erroneously truncated. > > * ssh(1): don't incorrectly disable hostname canonicalization when > CanonicalizeHostname=yes and ProxyJump was expicitly set to > "none". bz3567 > > * scp(1): when copying local->remote, check that the source file > exists before opening an SFTP connection to the server. Based on > GHPR#370 > > Portability > ----------- > > * All: a number of build fixes fo...
2017 Dec 18
0
Finding center of mass in a hydrologic time series
Hi Eric, the following works for me. HTH, Eric library(EGRET) StartDate <- "1990-10-01" EndDate <- "2017-09-30" siteNumber <- "10310000" QParameterCd <- "00060" Daily <- readNWISDaily(siteNumber, QParameterCd, StartDate, EndDate) # Define 'center of mass' function com <- function(x) { match(TRUE, cumsum(x/sum(x)) > 0.5) -
2017 Dec 18
2
Finding center of mass in a hydrologic time series
Eric B's response provided just the kind of quick & simple solution I was hoping for (appears as the function com below). However, I once again failed to take advantage of the power of R and have reverted back to using a for loop for the next step of the processing. The example below (which requires the library EGRET for pulling an example dataset) works, but probably can be replaced