The redefine tag has no wiki summary.
7
votes
1answer
81 views
Redefining a function in an R package
I tried to modify and redefine a function (xcmsRaw) in R package xcms by first defining a function
my.xcmsRaw <- function(filename, profstep = 1, profmethod = "bin",
profparam ...
0
votes
0answers
3 views
XML chained redefine type
I want to define an XML type that can be extended in successive schema files, so that content can be added at different locations.
The first extension seems to be ok. At the second extension, the XML ...
0
votes
5answers
67 views
How to add or redefine operator in C?
I am very sorry for this strange and novice-like question.
I debug one code some hours and finally found that it uses != operator while my eyes scanning at code reads it as =. I always use <> ...
1
vote
2answers
49 views
Prolog reassigning operators
I'm new to prolog and I'm trying to reassign operators in prolog by changing their precedence. I'm running into 4 errors for the following:
:-op(1000,yf,+). %unary plus%
:-op(1000,yf,-). %unary ...
12
votes
1answer
159 views
C preprocessor redefine conflict dependent on include order
I just had a redefine conflict in the project I'm working on and while tracing down why it's not happening on all plattforms (turned out to be to order of includes), I stumbled upon the following ...
0
votes
1answer
213 views
Java. Restrictions on class redefinition
Java Platform SE 5 API specification for method Instrumentation.redefineClasses(ClassDefinition[]) tells:
The redefinition may change method bodies, the constant pool and
attributes. The ...
1
vote
5answers
148 views
Change the value of an integer in java
I'm starting out programming with java and I'd like to make some games and various other things which require changing variables, especially integers. Let me give you an example.
int Score = 0;
...
0
votes
1answer
423 views
Nagios advanced Configuration - changing contact_groups after defined by hostgroups
is it possible to set an default contact_group in hostsgroup and modify (redefine) this contact_group later in the service. Or by another way.
Background: We use nagios to monitor near 100 Hosts and ...
1
vote
1answer
109 views
Is it possible to redefine subroutines to be localized for a part of the code?
Is it possible to redefine the _function_used_by_exported_function only for the exported_function call in the second_routine?
#!/usr/bin/env perl
use warnings;
use strict;
use Needed::Module ...
0
votes
0answers
68 views
XSD: REdeclare the same ELEMENT with more info (xs:include vs xs:redefine)
I have a xsd file "ex-msg-base.xsd" and after I have to extend it in another xsd file "ex-msg-impl.xsd". I can not modify the "base" file because is a read only file. This is a must.
My issue is ...
1
vote
0answers
133 views
MOXy jaxb binding error for redefine element
Can any one help me ?
In my project, I need to pares some schema files, and need to generate xml files base on these schemas. Now ,I want to user MOXy to generate empty xml files base on these schemas ...
0
votes
2answers
42 views
redefining row numbers (index) [duplicate]
Possible Duplicate:
Change the index number of a dataframe
I did various operations with a dataframe and excluded a number of rows.
As you see in my example the dataframe now starts with ...
1
vote
2answers
518 views
How to redefine the “volume” button on android
I'd like to redefine the "volume" button on an android phone. For example,When I press the increase or decrease, the volume will not be change, but only to print a word.
0
votes
3answers
253 views
Undefine PHP defines?
I'm working on converting an old define()-based language/translation system to a more flexible one (probably JSON-based, but it's still open).
As part of this conversion, I will need to convert from ...
0
votes
1answer
86 views
How to define asymmetric + operator
Why does this not work? I'm trying to define the + operator for int+Date and make it return an int. So I define the operator+ as a member to define Date+int, and I define a non-member function ...
2
votes
5answers
262 views
How to redefine the = in python?
I would to know what Python call when I use the =:
a = b
Where do I look for this information?
I would have the "assignment to variables" with my =
a would have a similar behaviour
l=list()
...
0
votes
3answers
315 views
jquery / javascript Redefine function
Since I started this new webshop for a friend to launch, which still in progress,
I'm using the so called "jQuery fixedScroll"..
Project online: ...
2
votes
1answer
94 views
DOMParser: Can we make it cry less about multiply defined attributes?
"Be liberal in what you accept, and conservative in what you send." -Jon Postel
Right now I'm using the chrome browser, but I've experienced the same in the past with Firefox.
JS code like...
(new ...
3
votes
0answers
83 views
How to copy macro contents to another macro in C [duplicate]
Possible Duplicate:
Can I redefine a c++ macro for a few includes and then define it back?
I have the following:
#include <iostream>
#define A 1 // define a macro
#define B A ...
3
votes
2answers
888 views
How to redefine ^ In Matlab?
How to redefine the exponential function ^ In MATLAB?
x.^y
to
sign(x).*abs(x.^y))
1
vote
1answer
324 views
How to redefine XML Schema type without redefine?
This is a continuation question to my previous question.
I have XML files and XML Schema provided by several different third parties. For some mysterious reasons Oracle requires an Oracle specific ...
5
votes
6answers
634 views
How to reuse and override inherited javascript function
I have a class for mouse events. I'm using dojo b/c I like its OO approach
dojo.declare("MouseObject", null, {
constructor: function(){},
onclick : function(){...},
_onClick : function(){...}
...
0
votes
2answers
950 views
Java 6 redefining currency symbol (via CurrencyNameProvider?)
Recently Sun/Oracle changed currency code for Ukrainian hrivna to incorrect one and I've to fix that in my code.
I find out that Java 6 should allows me to do that at Java level (details are here) ...
2
votes
1answer
416 views
Redefine XMLHTTPRequest in overlay.js in Mozilla Firefox Add-on
I'm building a firefox extension and would like to change the behavior of the XMLHTTPRequest object for every page loaded.
I found following code which should do the trick:
...
2
votes
2answers
577 views
cfset problem with adding to existing variable
I am pulling my hair out working on what would seem to be easy problem. But as a ColdFusion rookie I am just having a hell of a time figuring it out.
<cfoutput query="getSeasonAndRate">
...
0
votes
3answers
4k views
C++ class redefinition error
I am compiling a logging program, but I am receiving this error and cant figure it out for the life of me...
logger.cpp:15: error: redefinition of ‘class Logger’
logger.h:20: error: previous ...
1
vote
1answer
50 views
redefining css overflow?
My main div .container is set to overflow:hidden; to maintain 100% height, it nests all content divs except for my header and footer. However inside is my sidebar which contains things that need to ...
0
votes
2answers
302 views
Redefining free memory function in C
I'm redefining memory functions in C and I wonder if this idea could work as implementation for the free() function:
typedef struct _mem_dictionary
{
void *addr;
size_t size;
...
3
votes
4answers
1k views
How to redefine malloc() in Linux for use in C++ new
I have a mem_malloc() and mem_free() defined for me and I want to use them to replace the malloc() and free() and consequently C++'s new and delete.
I define them as follows:
extern "C" {
extern ...
1
vote
3answers
259 views
Faster to reuse a variable defined in a common scope or redefine it in each inner scope?
C++ specifically, if it matters, but I imagine the answer lies in assembly code somehow.
If we have multiple blocks in a common scope (say, a function) which each use a variable of the same type, is ...
1
vote
2answers
777 views
Redefine / resize C array in Objective C?
I have a C array in Objective C defined as follows:
id keysArray;
Then in an if block, i would like to redefine the array based on a condition:
if (somethingIsTrue){
id keysArray[4][3];
}
else ...
1
vote
5answers
159 views
timed display of div
all i need is some client side code jQuery or JS that will alter the divs style after X seconds
like visibility : hidden; OR max-height : 50px;
or switch the class \ id of the DIV ( preferred )
18
votes
5answers
6k views
How to redefine a Ruby constant without warning?
I'm running some ruby code which evals a .rb file everytime its date changes. In the file, I happen to have constant definitions, like
Tau = 2 * Pi
and of course they make the interpreter display ...
3
votes
3answers
218 views
How can I change the value or a static char* from a function? C++
I am trying to change the value of a "static char *" I define at startup, I do it from inside a function, and when this function returns the var I am trying to re-set the value doesn't retain it.
...
2
votes
2answers
496 views
redefine __and__ operator
Why I can't redefine the __and__ operator?
class Cut(object):
def __init__(self, cut):
self.cut = cut
def __and__(self, other):
return Cut("(" + self.cut + ") && ...
5
votes
4answers
964 views
Python __setattr__ and __getattr__ for global scope?
Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like
f(x) = some_stuff(a,b,c)
and have Python, ...
1
vote
2answers
1k views
Flex - How can I define a function in one component from another?
I'm a complete Flex/Flash noob, running Adobe Flash Builder 4 Beta 2. I have a main component that needs to be able to call several popups, each mostly the same except for one function and a few ...
5
votes
1answer
761 views
XSD: How to redefine the data type of a simpleType eg. from xs:string to xs:integer
I am trying to extend and tailor an external xsd schema (of the fixml standard). I need to change the data type of some of the elements, without touching the original schema, but by redefining it; but ...
9
votes
3answers
2k views
Can I redefine a C++ macro then define it back?
I am using both the JUCE Library and a number of Boost headers in my code. Juce defines "T" as a macro (groan), and Boost often uses "T" in it's template definitions. The result is that if you ...
2
votes
3answers
423 views
How can I redefine 'open' properly in Perl?
Some time ago, I ask a question: How do I redefine built in Perl functions?
And the answers have served me well. I have a package that overrides Perl's 'open' function enabling me to log file access.
...
9
votes
2answers
1k views
How do I redefine built in Perl functions?
I want to do two things:
In production code, I want to redefine the open command to enable me to add automagic file logging. I work on data processing applications/flows and as part of that, it's ...
15
votes
2answers
15k views
How to implement dynamic arrays in Delphi
I originally had an array[1..1000] that was defined as a global variable.
But now I need that to be n, not 1000 and I don't find out n until later.
I know what n is before I fill the array up but I ...
7
votes
10answers
16k views
Redefine Class Methods or Class
Is there any way to redefine a class or some of its methods without using typical inheritance? For example:
class third_party_library {
function buggy_function() {
return 'bad result';
...
