Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gobo-eiffel · Gobo Eiffel

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1793 - 1822 of 1822   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1793 Eric Bezault
gobosoft Send Email
Mar 22, 2010
5:40 pm
... I don't think that it is up to system.xace to decide which compiler to use. ... OK, I'll try to add another entry in build.eant to compile explicitly with...
1794 Berend de Boer
berenddeboer Send Email
Apr 27, 2010
3:56 am
Hi All, I might have missed it but are there agent iterators in Gobo in a recent version? Because I looked at DS_TRAVERSABLE and it didn't appear to have it. I...
1795 Eric Bezault
gobosoft Send Email
Apr 27, 2010
11:38 am
... Do you mean features of the form `for_all', `do_all', etc. You will find them in DS_CONTAINER, and in various other classes. ... Gec now supports agents. ...
1796 Berend de Boer
berenddeboer Send Email
Apr 27, 2010
6:19 pm
... Eric> Do you mean features of the form `for_all', `do_all', etc. Eric> You will find them in DS_CONTAINER, and in various other Eric> classes. Ah thanks, I...
1797 thomas beale
twbeale Send Email
Aug 17, 2010
6:31 pm
Hi Eric, we have various parsers in openEHR that follow the standard pattern published in your documentation, i.e. a .y & .l file generating the usual .e...
1798 Eric Bezault
gobosoft Send Email
Aug 17, 2010
6:50 pm
Hi Thomas ... I don't think that there is any reuse facility in .l and .y files. I'm afraid that the only solution is copy/paste. -- Eric Bezault ...
1799 thomas beale
twbeale Send Email
Aug 17, 2010
11:38 pm
I wonder if I should consider using gepp to preprocess the files, and embed #include statements in them. It would mean that the source files would be the...
1800 政昌
chengchangwu Send Email
Sep 27, 2010
7:59 am
Hi Eric, I've a project implemented in SmartEiffel which I've ported to GEC. I'm still hesitant about removing SmartEiffel from my tool chain because GEC...
1801 Eric Bezault
gobosoft Send Email
Sep 27, 2010
8:42 am
... The reason why DbC is not implemented in gec yet is mostly lack of time. Typically, I develop and debug with EiffelStudio and I finalize my program with...
1802 Jocelyn Fiat
djoce_net Send Email
Sep 27, 2010
10:06 am
Hi, Just for curiosity, what kind of issue you get with EiffelStudio? Is it about Garbage Collection? I remember answering you how to disable GC with...
1803 政昌
chengchangwu Send Email
Sep 28, 2010
1:16 pm
Hi Jocelyn, I've tried what you suggested using 'execute_without_collection'. The program still failed due to some memory problem (Too much memory allocated or...
1804 pgcrism Send Email Mar 1, 2012
8:24 am
Hello, Are there any plan for migrating GOBO libraries and tools to a void-safe implementation? Thank you for your feedback, Best regards, Paul G. Crismer...
1805 Eric Bezault
gobosoft Send Email
Mar 1, 2012
4:10 pm
... It's something I plan to work on later this year, probably after the summer. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
1806 pgcrism Send Email Jul 27, 2012
8:54 am
Hello, Using GOBO-xml parser, I get UTF-8 Strings. I need LATIN-1 encoded strings. How can an UTF-8 String converted to LATIN-1 ? Best regards, Paul G. Crismer...
1807 olivier.ligot Send Email Jan 25, 2013
9:40 am
Hi, I'm trying to compile a project using gec but I've got the following error: [GVKFE-3] class ROUTINE (131,9): attribute `closed_operands&#39; in kernel class...
1808 Eric Bezault
gobosoft Send Email
Jan 25, 2013
10:54 am
... In fact we cannot do a sync blindly because sometimes I need to adapt the gec runtime first to make the new version of the kernel classes work. That being...
1809 Eric Bezault
gobosoft Send Email
Jan 25, 2013
10:58 am
... BTW, although I already implemented most of the void-safety validity rules in gec, some of them (and some CAPs) may be supported by EiffelStudio and not...
1810 olivier.ligot Send Email Jan 25, 2013
12:56 pm
... Ok, thanks for the quick response....
1811 olivier.ligot Send Email Jan 25, 2013
12:57 pm
... Ok, good to know....
1812 Eric Bezault
gobosoft Send Email
Jan 27, 2013
7:37 pm
... Fixed. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
1813 olivier.ligot Send Email Feb 7, 2013
3:50 pm
... Now I've got another error: [GVKBS] class PROCEDURE (24,2): built-in routine `call' in class PROCEDURE has not the expected signature 'call (OPEN_ARGS)&#39;. ...
1814 Eric Bezault
gobosoft Send Email
Feb 7, 2013
10:46 pm
... I just fixed the problem in Git. However you will now get other errors due to the fact the version of FreeELKS currently used by gec is not void-safe. May...
1815 olivier.ligot Send Email Feb 8, 2013
10:45 am
... I'm currently building an Eiffel Package Manager (epm) https://github.com/oligot/epm This project allows me to explore new Eiffel possibilites, mainly: *...
1816 olivier.ligot Send Email Apr 21, 2013
12:04 pm
Hi, Just to let you know that I've submitted a patch for the JSON library to support the Gobo Eiffel Compiler: https://github.com/eiffelhub/json/pull/5 This...
1817 olivier.ligot Send Email May 3, 2013
1:42 pm
Hi, Just to let you know that I've found a postcondition violation in {DS_HASH_TABLE}.search. I've opened an issue on Github with a test case on how to...
1818 pgcrism Send Email May 6, 2013
3:10 pm
Hello, Can gec use .ecf files? I have system.xace that mounts a library.xace that references some .ecf. When compiling for gec (with geant), the...
1819 Eric Bezault
gobosoft Send Email
May 6, 2013
6:23 pm
... gec can read ECF files (instead of Xace files) gexace can only read Xace files. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
1820 pgcrism Send Email May 7, 2013
8:07 am
Hello, When gexace generates .ecf (ise) or .xace (gec), include options contain some123/fake432/path567 . Why? Thank you for your help, Best regards, Paul G....
1821 Eric Bezault
gobosoft Send Email
May 7, 2013
10:41 am
... I don't remember the details, but I think that it's because some input files were adding the -I option and some weren't. With this trick, the C compiler...
1822 olivier.ligot Send Email May 21, 2013
9:05 am
Hi, There is an open issue on Github to add Gobo ecf files: https://github.com/gobo-eiffel/gobo/pull/3 Is there a reason why this pull request hasn't been...
Messages 1793 - 1822 of 1822   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help