Displaying 20 results from an estimated 31 matches for "showprogress".
Did you mean:
show_progress
2005 Dec 21
1
RE: Prototype: correct useage of onComplete withAjax.PeriodicalUpdater
...l
probably be the first parameter you passed to new PeriodicalUpdater, the
second will be the response.
e.g.
new Ajax.PeriodicalUpdater(''buddies-and-locations'', ''/ajax-url'',
{
insertion: function (element, request){fooBar()},
onLoading: function(request){ showProgress()},
parameters: params,
asynchronous:true,
decay:2,
frequency:20.0
});
-----Original Message-----
From: Nicky Peeters [mailto:nicky.peeters-LPO8gxj9N8aZIoH1IeqzKA@public.gmane.org]
Sent: Wednesday, December 21, 2005 7:13 AM
To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gman...
2006 Jun 12
2
dom id on form_remote_tag
...check for some value changes while the form is
being entered.
The observe_form tag needs a dom id to work on but I can''t see how to
enter an html option for the dom id of the form on the
form_remote_tag.
Any ideas?
Here is the form tag so far...
<%=form_remote_tag :loading=>"showProgress()",
:complete=>"showForm()",:url=>{:action=>:new,
:controller=>"sample_controller"}, :update=>"sampleForm"%>
2005 Dec 21
1
RE: Prototype: correct useage of onCompletewithAjax.PeriodicalUpdater
...to new
> PeriodicalUpdater, the
> second will be the response.
>
> e.g.
>
> new Ajax.PeriodicalUpdater(''buddies-and-locations'', ''/ajax-url'',
> {
> insertion: function (element, request){fooBar()},
> onLoading: function(request){ showProgress()},
> parameters: params,
> asynchronous:true,
> decay:2,
> frequency:20.0
> });
>
> -----Original Message-----
> From: Nicky Peeters [mailto:nicky.peeters-LPO8gxj9N8aZIoH1IeqzKA@public.gmane.org]
> Sent: Wednesday, December 21, 2005 7:13 AM
> To: rails-spino...
2004 Mar 03
1
BUG: SFTP (openssh-3.8p1) upload doubles "Uploading..." comment
...====================================
RCS file: /cvs/src/usr.bin/ssh/sftp-client.c,v
retrieving revision 1.46
diff -u -r1.46 sftp-client.c
--- sftp-client.c 17 Feb 2004 05:39:51 -0000 1.46
+++ sftp-client.c 3 Mar 2004 03:05:36 -0000
@@ -805,13 +805,8 @@
max_req = 1;
progress_counter = 0;
- if (showprogress) {
- if (size)
- start_progress_meter(remote_path, size,
- &progress_counter);
- else
- printf("Fetching %s to %s\n", remote_path, local_path);
- }
+ if (showprogress && size != 0)
+ start_progress_meter(remote_path, size, &progress_counter);
while (num_re...
2005 Dec 21
0
Prototype: correct useage of onComplete with Ajax.PeriodicalUpdater
...5 with Prototype 1.4)
Works:
function fooBar() {
Element.hide(''foobar'');
}
new Ajax.Updater(''buddies-and-locations'', ''/ajax-url'',
{ asynchronous:true,
onComplete: function(request) {fooBar();},
onLoading: function(request) {showProgress();},
parameters: params
});
Will not work when using a onComplete callback in the same manner :
new Ajax.PeriodicalUpdater(''buddies-and-locations'', ''/ajax-url'',
{
onComplete: function (request){fooBar()},
onLoading: function(request){ showProgress(...
2018 Apr 13
0
Fwd: R Timeseries tsoutliers:tso
...am running the following code with very small dataset of about 208
records.
d.dir <- '/Users/darshanpandya/xxxxxx'
FNAME <- 'my_data.csv'
d.input <- fread(file.path(paste0(d.dir,"/zzz/"),FNAME,fsep =
.Platform$file.sep), header = TRUE, stringsAsFactors = FALSE, showProgress
= TRUE) %>% as.data.frame
d.input$dummy_date <- as.Date(d.input$dummy_date, "%Y-%m-%d")
selectedCols <- c("observation","dummy_date")
inputData <- d.input[,selectedCols]
outlier.types <- list("Additive Outliers","Levels Shifts","...
2013 Jul 11
0
[R-pkgs] Major Update to rms package
..., contrasts). The basic bootstrap is now
implemented and tends to work better than the percentile bootstrap in
terms of confidence coverage.
* Change of Surv to Srv
* Added tk/tcl progress bars for bootstrap and other repeated
calculations. This can be turned off by specifying
options(showprogress=FALSE) or options(showprogress=''console'') to use
cat(). Use options(showevery=50) to update the progress bar only every
50 iterations.
* Made all design matrices stored in model fits exclude any
intercepts, with columns of ones added as needed with Predict() etc.
* Dxy...
2002 Feb 06
2
SFTP Status Bar..
...har *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
/* Struct for addargs */
arglist args;
-/* Time a transfer started. */
-static struct timeval start;
-
/* Number of bytes of current file transferred so far. */
volatile off_t statbytes;
@@ -569,7 +549,7 @@
}
if (showprogress) {
totalbytes = stb.st_size;
- progressmeter(-1);
+ updateprogressmeter(0);
}
/* Keep writing after an error so that we stay sync'd up. */
for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
@@ -591,7 +571,7 @@
}
}
if (showprogress)
- progressmeter(1);
+ u...
2009 Oct 04
3
error installing/compiling kernlab
Hi everybody,
I''m using R on a 64-bit Ubuntu 9.04 (Jaunty). I prefer to install R
packages from source, even if they are available in Synaptic. The
problem is that I can''t install/compile kernlab. Everything works fine
until it gets to the lazy loading part:
** preparing package for lazy loading
Creating a new generic function for "terms" in "kernlab"
2005 Feb 17
1
SFTP batch mode patch
...nks,
Jeremy Monin
Sysadmin and open-source developer
diff -ur openssh-3.9p1-orig\sftp.c openssh-3.9p1\sftp.c
--- openssh-3.9p1-orig\sftp.c Sat Jul 17 02:12:08 2004
+++ openssh-3.9p1\sftp.c Thu Oct 14 11:39:40 2004
@@ -1420,6 +1420,7 @@
fatal("%s (%s).", strerror(errno), optarg);
showprogress = 0;
batchmode = 1;
+ addargs(&args, "-obatchmode yes");
break;
case 'P':
sftp_direct = optarg;
diff -ur openssh-3.9p1-orig\sshconnect.c openssh-3.9p1\sshconnect.c
--- openssh-3.9p1-orig\sshconnect.c Mon Jun 21 22:56:02 2004
+++ openssh-3.9p1\sshconnect.c Thu...
2018 Apr 12
2
R Timeseries tsoutliers:tso
...am running the following code with very small dataset of about 208
records.
d.dir <- '/Users/darshanpandya/xxxxxx'
FNAME <- 'my_data.csv'
d.input <- fread(file.path(paste0(d.dir,"/zzz/"),FNAME,fsep =
.Platform$file.sep), header = TRUE, stringsAsFactors = FALSE, showProgress
= TRUE) %>% as.data.frame
d.input$dummy_date <- as.Date(d.input$dummy_date, "%Y-%m-%d")
selectedCols <- c("observation","dummy_date")
inputData <- d.input[,selectedCols]
outlier.types <- list("Additive Outliers","Levels Shifts","...
2002 Jan 30
1
Quick sftp status indicator.
...har *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
/* Struct for addargs */
arglist args;
-/* Time a transfer started. */
-static struct timeval start;
-
/* Number of bytes of current file transferred so far. */
volatile off_t statbytes;
@@ -542,7 +530,9 @@
}
if (showprogress) {
totalbytes = stb.st_size;
- progressmeter(-1);
+ progressmeter(-1, statbytes, totalbytes, curfile);
+ signal(SIGALRM, updateprogressmeter);
+ alarm(PROGRESSTIME);
}
/* Keep writing after an error so that we stay sync'd up. */
for (haderr = i = 0; i < stb.st_size; i +=...
2002 Feb 02
0
Version two of progressbar for scp/sftp
...har *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
/* Struct for addargs */
arglist args;
-/* Time a transfer started. */
-static struct timeval start;
-
/* Number of bytes of current file transferred so far. */
volatile off_t statbytes;
@@ -542,7 +530,7 @@
}
if (showprogress) {
totalbytes = stb.st_size;
- progressmeter(-1);
+ updateprogressmeter(0);
}
/* Keep writing after an error so that we stay sync'd up. */
for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
@@ -564,7 +552,7 @@
}
}
if (showprogress)
- progressmeter(1);
+ u...
2000 Aug 24
0
patch for a few things
...set to non-zero if IPv6 is desired. */
int IPv6 = 0;
/* This is set to non-zero to enable verbose mode. */
int verbose_mode = 0;
/* This is set to non-zero if compression is desired. */
int compress_flag = 0;
! /* This is set to zero if the progressmeter is not desired. */
int showprogress = 1;
/* This is set to non-zero if running in batch mode (that is, password
and passphrase queries are not allowed). */
--- 91,114 ----
/* This is set to non-zero if IPv6 is desired. */
int IPv6 = 0;
+ /* Protocol (1, 2) to pass to ssh. */
+ int protocol = 0;
+
+ /* Show transfer...
2002 Jul 13
0
[PATCH]: scp program improved
...* Copyright (c) 1999 Aaron Campbell. All rights reserved.
*
@@ -119,6 +138,9 @@
/* This is set to non-zero to enable verbose mode. */
int verbose_mode = 0;
+/* This disables resume mode for default */
+int resume_mode = 0;
+
/* This is set to zero if the progressmeter is not desired. */
int showprogress = 1;
@@ -202,6 +224,7 @@
uid_t userid;
int errs, remin, remout;
int pflag, iamremote, iamrecursive, targetshouldbedirectory;
+off_t rate_limit = 0;
#define CMDNEEDS 64
char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
@@ -223,7 +246,10 @@
char *targ;
extern char *optarg;...
2000 Apr 27
0
Patch for supporting "-L" option in scp
...;dfprtvBCc:i:P:q46")) != EOF)
+ while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:qL46")) != EOF)
switch (ch) {
/* User-visible flags. */
case '4':
@@ -295,6 +301,9 @@
case 'q':
showprogress = 0;
break;
+ case 'L':
+ use_non_privileged_port = 1;
+ break;
case '?':
default:
usage();
@@ -931,7 +940,7 @@
usage()
{
(void) fprint...
2003 Nov 07
2
BUG: scp -q isn't quiet
If I scp from/to a server that has a banner using scp -q, it still
shows the banner. If I ssh -q to the same server, the banner is
skipped. scp -o "LogLevel quiet" does the trick, but is excessively
cumbersome.
- Morty
2017 Sep 13
0
Proxy Issues when trying to install package shinyapps
...on R studio but I get the following messages:
> devtools::install_github('rstudio/shinyapps')
Installation failed: Couldn't resolve proxy 'procuratio.canal.acp'
> githubinstall("shinyapps")
Error in curl::curl_download(input, tt, mode = "wb", quiet = !showProgress)
:
Couldn't resolve proxy 'procuratio.canal.acp'
Does anyone know a way to bypass the proxy or make it work so I can install
R shiny packages?
Any help will be greatly appreciated,
Paul
[[alternative HTML version deleted]]
2002 Nov 05
0
[PATCH] Add readonly mode to scp, sftp_server
...lients
to only read files from the server, but not to write them.
Patch is based on OpenSSH 3.4p1
*** scp.c@@\main\1 Tue Oct 1 17:25:16 2002
--- scp.c Wed Oct 2 06:05:14 2002
***************
*** 122,127 ****
--- 122,130 ----
/* This is set to zero if the progressmeter is not desired. */
int showprogress = 1;
+ /* deny client write operations */
+ int readonly = 0;
+
/* This is the program to execute for the secured connection. ("ssh" or
-S) */
char *ssh_program = _PATH_SSH_PROGRAM;
***************
*** 307,312 ****
--- 310,319 ----
exit(errs != 0);
}
if (tflag) {
+ if...
2001 Oct 07
3
socks and misc patch to 2.9.9p2
...h-2.9.9p2.old/scp.c openssh-2.9.9p2/scp.c
--- openssh-2.9.9p2.old/scp.c Wed Sep 19 17:57:56 2001
+++ openssh-2.9.9p2/scp.c Sat Oct 6 17:42:08 2001
@@ -128,7 +128,11 @@
int verbose_mode = 0;
/* This is set to zero if the progressmeter is not desired. */
+#if defined(DISABLE_SCP_STATISTICS)
+int showprogress = 0;
+#else
int showprogress = 1;
+#endif
/* This is the program to execute for the secured connection. ("ssh" or -S) */
char *ssh_program = _PATH_SSH_PROGRAM;
diff -u openssh-2.9.9p2.old/sshconnect.c openssh-2.9.9p2/sshconnect.c
--- openssh-2.9.9p2.old/sshconnect.c Tue Aug 7 15:29:...