Displaying 8 results from an estimated 8 matches for "savedata".
Did you mean:
savedate
2007 May 05
2
Problem with escape
Hello,
I have a little problem with the escape function.
Here is my code:
function saveData()
{
new Ajax.Request("post.php",
{method:"post",
parameters:''message=''+escape(document.getElementById("shoutitmessage").value)
}
);
}
If I have the escape function in my script I can''t post some
characters e.g. ä,ö,ü,ß...
2005 Jul 23
2
ASTCC gives me only the time, but no cost
...ment is $increment";
$carddata->{used} += $cost;
print STDERR "Total used is now $carddata->{used}\n";
&savecdr($cardno, $callerid, $phoneno, $trunk, $res, $answeredtime, $cost,$callstart);
&savedata($carddata);
The result is:
[Jul 23 12:20:29] == Spawn extension (Line-optimize, 901185228376786, 512) exited non-zero on 'Local/901185228376786@Line-optimize-3a9b,2'
res is ANSWER, answered time is 26
Adjusted time is , cost is 603 with 0 fee
Total cost is 0
adjconn is 0
adjcost is 60...
2015 Oct 05
0
[PATCH 2/4] Remove unused linker scripts
...{
- HIDDEN(__bss_start = .);
- *(.bss)
- *(.bss.*)
- *(COMMON)
- HIDDEN(__bss_end = .);
- }
- HIDDEN(__bss_len = ABSOLUTE(__bss_end) - ABSOLUTE(__bss_start));
- HIDDEN(__bss_dwords = (__bss_len + 3) >> 2);
-
- /* Data saved away before bss initialization */
- . = ALIGN(128);
-
- HIDDEN(__savedata_vma = .);
- HIDDEN(__savedata_lma = .); /* Dummy */
- .savedata (NOLOAD) : AT (__savedata_lma) {
- HIDDEN(__savedata_start = .);
- *(.savedata)
- *(.savedata.*)
- HIDDEN(__savedata_end = .);
- }
- HIDDEN(__savedata_len = ABSOLUTE(__savedata_end) - ABSOLUTE(__savedata_start));
- HIDDEN(__saveda...
2010 Feb 03
0
mboost: how to implement cost-sensitive boosting family
...function (y, f, w = 1)
{
ifelse(y==1, 0.001*exp(0.001*y*f)/((1+exp(0.001*y*f))^2), exp(-y*f)/(1+exp(-y*f)) )
}
CSAdaExp <- Family(ngradient = ngradient, loss = loss);
model.blackboost <- blackboost(tr[,1:DIM], tr.y, family=CSAdaExp,
weights=NULL, control=boost_control(mstop=MSTOP,
nu=0.1,savedata=TRUE,save_ensembless=TRUE,trace=TRUE),
tree_controls=ctree_control(teststat = "max",testtype =
"Teststatistic",mincriterion = 0,minsplit = 2000, minbucket =
700,maxdepth = TREEDEPTH));
--------------------------------
regards,
Yuchun Tang, Ph.D.
Principal Engineer, Lead
McAf...
2007 Oct 23
0
AJAX call and data return through JSON in ROR
...which works fine but i want to save that data
perodically(all the data in DIV ''data'') or if user hits a save button
with each data row.
Now one thing i am not sure about that when user hits button ''save
data; for a row,i execute the following
new Ajax.Request(''/saveData'', {method: ''post'',asynchronous:true,
evalScripts:true,onSuccess:DoASNeeded()});
which saves the data but i am not sure how to retrieve the primarky
key of saved record and update it async. to that row. i am not sure
how to retrieve PK of saved record and use it later for...
2008 Jan 11
0
New version of ggplot2: 0.5.7
...ou're using ggplot to draw maps and have thought of other features
that would make your life easier, please let me know.
Bug fixes
* adding data and aesthetics in separate steps should now work
* layers with set parameters will not use mapped aesthetics
* use LazyLoad: false instead of SaveData: true for better future
compatability
* coord_cartesian: fixed bug that prevented you from overriding the
default axis expansion
* coord_equal: now scales correctly if ratio < 1
* geom_abline: fix bug where slope was ignored
* geom_jitter now works correctly with groups and categorical...
2008 Jan 11
0
New version of ggplot2: 0.5.7
...ou're using ggplot to draw maps and have thought of other features
that would make your life easier, please let me know.
Bug fixes
* adding data and aesthetics in separate steps should now work
* layers with set parameters will not use mapped aesthetics
* use LazyLoad: false instead of SaveData: true for better future
compatability
* coord_cartesian: fixed bug that prevented you from overriding the
default axis expansion
* coord_equal: now scales correctly if ratio < 1
* geom_abline: fix bug where slope was ignored
* geom_jitter now works correctly with groups and categorical...
2015 Oct 05
7
[PATCH 0/4] Improve linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com>
These patches basically remove unused linker scripts and port a change that was
made to an unused script.
Those are to be applied on top of the gcc 5 bug fixes as they would conflict
otherwise.
Sylvain Gault (4):
diag/mbr: fix dependency to linker script
Remove unused linker scripts
core: Make symbols defined in linker script HIDDEN