Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1046 - 1075 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1046
... Not yet. I also noticed recently (after a discussion with Franck I think) that these options were missing in the corresponding geant task. I'll try to...
Eric Bezault
gobosoft
Offline Send Email
Jan 2, 2004
3:02 pm
1047
Bonjour/Hello ... This message in french is to announce the creation of a French Group for Eiffel users. The group's home page is at...
Jocelyn FIAT
djoce_net
Offline Send Email
Jan 24, 2004
9:43 am
1048
The MS linker link.exe needs some environment variables set to work properly. MS provides a batch file called vcvars32.bat to accomplish this. I can get geant...
Brian Heilig
heiligb
Offline Send Email
Jan 27, 2004
4:00 pm
1049
... I guess that this is because vcvars32.bat is executed in its own shell. This shell is exited at the end of the execution of vcvars32.bat. ... From geant I...
Eric Bezault
gobosoft
Offline Send Email
Jan 27, 2004
4:32 pm
1050
... In some OSes (e.g., Windows 2000) it can be done by <exec executable="vcvars32 && geant target_that_calls_linker" if="${GOBO_CC}=msc"/> Alexander Kogtenkov...
Alexander Kogtenkov
kogtenkov
Offline Send Email
Jan 27, 2004
5:07 pm
1051
... On others (e.e. Linux) it can be archived by issuing <exec executable="source vcvars32; geant target_that_calls_linker" if="${GOBO_CC}=msc"/> Now, of...
Andreas Leitner
weisznet
Offline Send Email
Jan 27, 2004
6:15 pm
1052
... I just wrote a windows batch file: @echo off CALL vcvars32.bat getest.exe RD Testgen /S /Q DEL *.exe DEL *.ace Thanks for your help, Brian ...
Heilig, Brian
heiligb
Offline Send Email
Jan 27, 2004
7:28 pm
1053
Guys, I want to inherit from a class that I am testing so that I may have access to some of the internals. However the class that I am inheriting has a...
Brian Heilig
heiligb
Offline Send Email
Jan 27, 2004
8:52 pm
1054
________________________________________________________________________ Date: Tue, 27 Jan 2004 15:53:36 -0000 From: "Brian Heilig" <Brian.Heilig@...> ...
Greg Compestine
gmc444
Offline Send Email
Jan 27, 2004
9:51 pm
1055
... First, I don't think that it is a good idea to test a class by inheriting from it. But if you want to do that, then let see the next problem. The solution ...
Eric Bezault
gobosoft
Offline Send Email
Jan 28, 2004
12:42 am
1056
... I just took your advice and changed the test to a client-supplier relationship. Perhaps this isn't as useful as I thought it would be. Thanks! Brian...
Brian Heilig
heiligb
Offline Send Email
Jan 28, 2004
3:36 pm
1057
... I have added the following routine to TS_TEST_CASE and it will be committed to CVS in the coming days: feature -- Initialization initialize is --...
Eric Bezault
gobosoft
Offline Send Email
Jan 29, 2004
3:45 pm
1058
... I was thinking about the following names: generate (default: true) -> -g compile (default: true) -> -c execute (default: true) -> -e However 'compile' and...
Eric Bezault
gobosoft
Offline Send Email
Jan 29, 2004
4:11 pm
1059
... Hash: SHA1 ... I like these best. - -- Live long and prosper, Berend de Boer (PGP public key: http://www.pobox.com/~berend/berend-public-key.txt) ... ...
Berend de Boer
berenddeboer
Online Now Send Email
Jan 29, 2004
5:27 pm
1060
... Another alternative could be: no_generation (default: false) no_compilation (default: false) no execution (default: false) or: generation (default: true) ...
Eric Bezault
gobosoft
Offline Send Email
Jan 29, 2004
5:48 pm
1061
... Negatives are hard to read. ... At least this avoids clashes with the existing format. The possible alternatives could also be: 1. Add an attribute...
Alexander Kogtenkov
kogtenkov
Offline Send Email
Jan 29, 2004
6:54 pm
1062
... Personally I don't like multiple value attributes. ... Yes. You can generate once and for all and then compile several times with different compilation ...
Eric Bezault
gobosoft
Offline Send Email
Jan 29, 2004
7:53 pm
1063
... Also: do_generate, do_compile, do_execute which is reasonably gramatically correct and clear....
Franck Arnaud
nenieorg
Offline Send Email
Jan 29, 2004
10:43 pm
1064
... This solution has now been implemented in CVS. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
gobosoft
Offline Send Email
Jan 30, 2004
1:55 pm
1065
... The semantic value should be in `last_<class_name>_value'. For example: STRING -> last_string_value FOO -> last_foo_value You said that TOKEN is generic....
Eric Bezault
gobosoft
Offline Send Email
Feb 1, 2004
3:24 pm
1066
Hi Today I've installed gobo-3.3 with smarteiffel-1.1 on a solaris server. To do so : - I expanded the archive - I built one by one each executable in every...
LEMAITRE Guillaume
guillaume.lemaitre33@...
Send Email
Feb 4, 2004
6:07 pm
1067
... The access mode on the file does not matter when it comes to deleting it, it's the access mode of the containing directory that matters (because deleting a...
Franck Arnaud
nenieorg
Offline Send Email
Feb 4, 2004
6:36 pm
1068
... The bootstrap process is only useful when getting the source code from CVS. If you installed from the package gobo33.tar.gz then you don't need to run the...
Eric Bezault
gobosoft
Offline Send Email
Feb 4, 2004
8:10 pm
1069
... ok, thanks for the information ... ok :) I thought I read it. It seems my english is not as good as I thought :) BTW, thank you eric for the support...
LEMAITRE Guillaume
guillaume.lemaitre33@...
Send Email
Feb 5, 2004
3:17 am
1070
Dear gobo, The way DS_HASH_TABLE functions is confusing to me. If I call `put' and the key is equal (or =, depending on the key equality tester) the item will...
Brian Heilig
heiligb
Offline Send Email
Feb 5, 2004
11:30 pm
1071
... Objects of type MY_OBJ are not hashed! See the type: class DS_HASH_TABLE [G, K -> HASHABLE] It is K that is hashable. A table is a dictionary that for each...
Franck Arnaud
nenieorg
Offline Send Email
Feb 6, 2004
12:37 am
1072
... I should have been more precise. I should have said "If I try to enter two objects of type MY_OBJ that map to the same key..." Let's start with the basic...
Brian Heilig
heiligb
Offline Send Email
Feb 6, 2004
2:56 am
1073
... This is _not_ what DS_HASH_TABLE is about! DS_HASH_TABLE is a simple dictionary that gives you an item associated with a key, which is hashable for quick...
Franck Arnaud
nenieorg
Offline Send Email
Feb 6, 2004
5:32 am
1074
In addition to Franck's answer, I'd like to add this: ... No, this is not the answer. If you want a set, you should use a descendant of DS_SET, not of...
Eric Bezault
gobosoft
Offline Send Email
Feb 6, 2004
9:09 am
1075
... If it were possible to insert two differents objects with equal keys, what would `item' return? As Franck already pointed out, if you really want to insert...
Eric Bezault
gobosoft
Offline Send Email
Feb 6, 2004
5:42 pm
Messages 1046 - 1075 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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