Displaying 4 results from an estimated 4 matches for "current_row".
Did you mean:
current_pos
2007 Sep 29
1
(no subject)
Hello
I am anirudh, I need help to write script to fetch detail like ips,
speedlimit from mysql and add htb rules at the starting of the server. it
is for a small isp i am working for.
can any one help me out!, i had tried but fail to limit speed
--
Anirudh Chowdary
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
2024 Jul 14
2
Reinterpret data without saving it to a file 1st? Check for integer stopping at 1st decimal?
...n, from is.integer() documentation I ran
> is.wholenumber <- function(x, tol = .Machine$double.eps^0.5) abs(x - round
> (x)) < tol
and I'm now trying to have it stop at the 1st decimal content of a column.
Someone advised me to use break and I scripted
> is_integer = TRUE for (current_row in seq_along(data$column)) { if (!
> is.wholenumber(data$column[current_row])) { is_integer = FALSE break; } }
but I'm wondering if there's something better to check if a column is
entirely made of integers.
Thank you kindly for your help
[[alternative HTML version deleted]]
2005 Aug 25
2
Custom Application For Asterisk
...case TDS_DONEPROC_RESULT:
break;
case TDS_DONEINPROC_RESULT:
break;
case TDS_ROWFMT_RESULT:
while ((res=tds_process_row_tokens(tds, &rowtype, &computeid))==TDS_SUCCEED) {
for (i=0; i<tds->res_info->num_cols; i++) {
value = ((tds->res_info->current_row) + (tds->res_info->columns[i]->column_offset));
memset(resulttype, 0, sizeof(resulttype));
strncpy(resulttype, (const char *) value, 3);
memset(myretnumber, 0, sizeof(myretnumber));
strncpy(myretnumber, (const char *) (value+4), strlen((const char *) value)-4);...
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
...op/xentop.c
@@ -23,6 +23,7 @@
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
+#include <stdarg.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>
@@ -266,7 +267,7 @@ static void print(const char *fmt, ...)
if (!batch) {
if((current_row() < lines()-1)) {
va_start(args, fmt);
- vw_printw(stdscr, fmt, args);
+ vwprintw(stdscr, (char *)fmt, args);
va_end(args);
}
} else {
@@ -280,7 +281,7 @@ static void attr_addstr(int attr, const
static void attr_addstr(int attr, const char *str)
{
attron(attr);
- addstr(str...