Displaying 16 results from an estimated 16 matches for "getcode".
Did you mean:
geocode
2017 Apr 05
2
Deopt operand bundle behavior
Hi!
We have started to use deopt operand bundle to make our native stacktrace deoptimizable and garbage collectable. We stumbled upon an issue and we don't know if it is really an issue on our side or really a problem within LLVM.
For example, for this input:
declare { i8*, i8* } @getCode()
define void @testFunc() {
entry:
%0 = call { i8*, i8* } @getCode()
%1 = extractvalue { i8*, i8* } %0, 1
%2 = bitcast i8* %1 to void ()*
call void %2() [ "deopt"() ]
ret void
}
We get this output machine code for x86_64:
_testFunc: ## @testFunc
.c...
2007 Nov 16
0
example of swf file
Hi!
These are 2 file that swfdec-0.5.3 work fine, but swfdec-0.5.4 no :(
Play the file "getCode.swf", then with the mouse click in blue rectangle and file "getCode2.swf" is loaded Try these! Bye!
PS sorry for my bad english ^^'
---------------------------------
---------------------------------
L'email della prossima generazione? Puoi averla con la nuova Yahoo...
2012 Sep 24
1
Adding textbox to multiple panels in lattice
...y)
# select the desired year, country, and education-scenario from EduDat
Years <- c(2010,2030,2050)
Countries <- c("Pakistan","Bangladesh","Indonesia")
Scenarios <- c("GET")
# the male-column needs to be flipped
iEduDat <- subset(EduDat,match(cc,getcode(Countries,dictionary)) &
match(yr,Years) & match(scen2,Scenarios))
iEduDat$value[iEduDat$sex == "Male"] <- (-1) * iEduDat$value[iEduDat$sex ==
"Male"]
agegrs <- paste(seq(15,100,5),seq(19,104,5),sep="-")
agegrs[length(agegrs)] <- "100+"
lat...
2015 Apr 13
2
Check feed connected, active - IceCast 2.4.x
...e connected.
>
> Thanks, but no I am not scraping/parsing that. I despise the whole
> concept of "scraping" sites like this, there is already one piece of
> software doing this as it is in my arena.
>
> doing a:
>
> urllib.urlopen("http://domain/source").getcode()
>
> just returns a 200 even if the actual source is down, and the source is
> on a fall back. If I were following http expectations I should get 302,
> temp redirection as used widely, or 307 if you stick to the strict
> standard.
>
> Sadly right now the simple check that Ice...
2005 Apr 24
1
R CMD check doesn't stop with checking examples
...html latex example
code.pedigree text html latex example
extend.pedigree text html latex example
generate.pedigree text html latex example
generation text html latex example
getcode.pedigree text html latex example
inbreeding text html latex example chm
is.unknown text html latex example
kinship text html latex example chm
pedigree...
2015 Apr 11
0
Check feed connected, active - IceCast 2.4.x
...s up and running, and the feeds
> connected... obviously not a verification of audio, yet, but at least the
> source is sending data to the IceCast server.
>
> I can check that IceCast is running doing a simple:
>
> response_code = urllib.urlopen("http:/server:8000").getcode()
Two slashes missing.
> If I get a 200, IceCast is up/running.
>
> For feeds what would be the best URL to check and the response?
>
> NOTE: Feeds if THE SOURCE is NOT SENDING, FAIL OVER to a fail over
> mount!!
>
> So taking this caveat into consideration for the a...
2015 Apr 13
0
Check feed connected, active - IceCast 2.4.x
...t's for usage such as
yours. within /admin: stuff ending with .xsl is for non-API, stuff with
no dot in the name or ending in .xml are for API usage.
What you will get is a well formed XML document. Have a look at it!
> doing a:
>
> urllib.urlopen("http://domain/source").getcode()
>
> just returns a 200 even if the actual source is down, and the source is
> on a fall back. If I were following http expectations I should get 302,
> temp redirection as used widely, or 307 if you stick to the strict
> standard.
No. I think you are misunderstanding the stand...
2015 Apr 13
0
Check feed connected, active - IceCast 2.4.x
...hanks, but no I am not scraping/parsing that. I despise the whole
>> concept of "scraping" sites like this, there is already one piece of
>> software doing this as it is in my arena.
>>
>> doing a:
>>
>> urllib.urlopen("http://domain/source").getcode()
>>
>> just returns a 200 even if the actual source is down, and the source is
>> on a fall back. If I were following http expectations I should get 302,
>> temp redirection as used widely, or 307 if you stick to the strict
>> standard.
>>
>> Sadly right n...
2012 Nov 29
2
[LLVMdev] [cfe-dev] UB in TypeLoc casting
Moving to LLVM dev to discuss the possibility of extending the cast
infrastructure to handle this.
On Tue, Nov 20, 2012 at 5:51 PM, John McCall <rjmccall at apple.com> wrote:
> On Nov 18, 2012, at 5:05 PM, David Blaikie <dblaikie at gmail.com> wrote:
>> TypeLoc casting looks bogus.
>>
>> TypeLoc derived types return true from classof when the dynamic type
>>
2012 Nov 30
0
[LLVMdev] [cfe-dev] UB in TypeLoc casting
...ze() && "Invalid virtual align in concrete fragment!");
@@ -456,19 +456,19 @@
}
case MCFragment::FT_Inst: {
- MCInstFragment &IF = cast<MCInstFragment>(F);
+ const MCInstFragment &IF = cast<MCInstFragment>(F);
OW->WriteBytes(StringRef(IF.getCode().begin(), IF.getCode().size()));
break;
}
case MCFragment::FT_LEB: {
- MCLEBFragment &LF = cast<MCLEBFragment>(F);
+ const MCLEBFragment &LF = cast<MCLEBFragment>(F);
OW->WriteBytes(LF.getContents().str());
break;
}
case MCFragment::FT_Or...
2007 Aug 07
0
13 commits - libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_keys.c libswfdec-gtk/swfdec_gtk_keys.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec_as_types.c libswfdec/swfdec.h libswfdec/swfdec_initialize.as
...0
remove leftover comment
diff --git a/libswfdec/swfdec_key_as.c b/libswfdec/swfdec_key_as.c
index 36cddb5..a5523f7 100644
--- a/libswfdec/swfdec_key_as.c
+++ b/libswfdec/swfdec_key_as.c
@@ -26,7 +26,6 @@
#include "swfdec_debug.h"
#include "swfdec_player_internal.h"
-//getCode,isDown,isToggled
SWFDEC_AS_NATIVE (800, 0, swfdec_key_getAscii)
void
swfdec_key_getAscii (SwfdecAsContext *cx, SwfdecAsObject *object,
diff-tree 76286beb6f0bed9dee24fb9517ea5be62bc48ba4 (from 035ecbe5dd6be8dbb7c47577e84de30fa11444a4)
Author: Benjamin Otte <otte at gnome.org>
Date: Mon Au...
2006 Jun 21
3
png() or jpeg() in a php script
Hello,
I've got a problem with a PHP script, in which I call the system function
(to call another processes). The call is :
system("R --slave --vanilla < path/to/source/source.R");
if in this R file, I've got the lines:
pdf(file="/path/to/file/file.pdf")
commands
dev.off()
the pdf file is perfectly created
but if I change the lines to:
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...on.getOperand(i).getExpr());
> +
> + getSectionData()->setHasInstructions(true);
> +
> + // FIXME: Who owns this memory?
> + MCInstFragment *Fragment =
> + new MCInstFragment(Instruction, getSectionData());
> +
> + {
> + raw_svector_ostream VecOS(Fragment->getCode());
> +
> + getAssembler().getEmitter().EncodeInstruction(Instruction, VecOS, Fragment->getFixups());
> +
> + // VecOS's destructor calls flush.
> + }
The nested block here is unnecessary.
> +
> + AddFragment(Fragment);
> }
>
> void WinCOFFStreamer::...
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote:
> This probably needs to be slightly tweaked to work with mainline. I don't see anything objectionable, but I think Daniel needs to review this one.
Updated patch to work with mainline.
http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94
- Michael Spencer
2007 Aug 26
0
Changes to 'refs/tags/0.5.2'
...rgot to add a file...
back to development
bump the libversion
remove assertion
Merge branch 'master' of ssh://company at git.freedesktop.org/git/swfdec/swfdec
update the API for keys once again
remove swfdec_key.h again
implement Key.getAscii(), Key.getCode() and Key.isDown()
compile the init code after changing it
surprise, ASSetNative wasn't implemented
guess if I always forget adding files...
code style fix
remove leftover comment
here be doubles
indent this correctly
add an enum for all the keys...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...["_global.Error.prototype.toString", "prototype", false],
+ ["_global.Key", "_listeners", true],
+ ["_global.Key", "broadcastMessage", true],
+ ["_global.Key", "getAscii", false],
+ ["_global.Key", "getCode", false],
+ ["_global.Key", "isAccessible", false],
+ ["_global.Key", "isDown", false],
+ ["_global.Key", "isToggled", false],
+ ["_global.LoadVars", "prototype", false],
+ ["_global.LoadVars.prototype&qu...