NetNameResolver strikes back 11177 => 1852 1853 :(

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

NetNameResolver strikes back 11177 => 1852 1853 :(

Stéphane Ducasse
bag := Bag new.
(MCHttpRepository
        location: 'http://www.squeaksource.org/pharo'
        user: '' password: '') allFileNames do:[:fname|
                (fname endsWith: '.mcz') ifTrue:[
                        bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
bag sortedCounts.

-> NetNameResolver primitive failed.

Stef

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] NetNameResolver strikes back 11177 => 1852 1853 :(

Levente Uzonyi-2
Try this:

bag := Bag new.
(MCHttpRepository
         location: 'http://www.squeaksource.com/Pharo'
         user: '' password: '') allFileNames do:[:fname|
                 (fname endsWith: '.mcz') ifTrue:[
                         bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
bag sortedCounts.


Levente

On Sat, 23 Jan 2010, Stéphane Ducasse wrote:

> bag := Bag new.
> (MCHttpRepository
> location: 'http://www.squeaksource.org/pharo'
> user: '' password: '') allFileNames do:[:fname|
> (fname endsWith: '.mcz') ifTrue:[
> bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
> bag sortedCounts.
>
> -> NetNameResolver primitive failed.
>
> Stef
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] NetNameResolver strikes back 11177 => 1852 1853 :(

Stéphane Ducasse
thanks
I still have the impression that all the access to netnameresolver are not using the old access...

Stef

On Jan 23, 2010, at 9:40 AM, Levente Uzonyi wrote:

> Try this:
>
> bag := Bag new.
> (MCHttpRepository
>        location: 'http://www.squeaksource.com/Pharo'
>        user: '' password: '') allFileNames do:[:fname|
>                (fname endsWith: '.mcz') ifTrue:[
>                        bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
> bag sortedCounts.
>
>
> Levente
>
> On Sat, 23 Jan 2010, Stéphane Ducasse wrote:
>
>> bag := Bag new.
>> (MCHttpRepository
>> location: 'http://www.squeaksource.org/pharo'
>> user: '' password: '') allFileNames do:[:fname|
>> (fname endsWith: '.mcz') ifTrue:[
>> bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
>> bag sortedCounts.
>>
>> -> NetNameResolver primitive failed.
>>
>> Stef
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] NetNameResolver strikes back 11177 => 1852 1853 :(

Stéphane Ducasse
In reply to this post by Levente Uzonyi-2
BTW this kind of statistic are plain bad. It also depends if there were some conflicts and the packages had to be be republished. also all the scriptloader crap we push to manage the system are counter. I also think that people
like alain levente (even if not directly) nicolas or henrik .... did a great job at improving the system

{(953->'stephane_ducasse'). (871->'StephaneDucasse'). (508->'MarcusDenker'). (424->'marcus_denker'). (352->'stephane'). (233->'sd'). (205->'marcus'). (175->'adrian_lienhard'). (160->'delaunay'). (114->'al'). (106->'AdrianLienhard'). (66->'md'). (26->'JorgeRessia'). (24->'MikeRoberts'). (23->'DamienCassou'). (22->'AlexandreBergel'). (20->'NorbertHartl'). (17->'michael_rueger'). (12->'dc'). (10->'AlainPlantec'). (9->'nice'). (9->'lr'). (9->'stephaneducasse'). (8->'alain'). (8->'Marcus_Denker'). (7->'gvc'). (6->'ar'). (6->'on'). (6->'MiscFixes'). (6->'cyrille_delaunay'). (5->'d'). (5->'damiencassou'). (4->'tween'). (3->'john_mcintosh'). (3->'SergeStinckwich'). (3->'Lukas_Renggli'). (3->'HenrikSperreJohansen'). (2->'cwp'). (2->'DavidRoethlisberger'). (1->'lukas_renggli'). (1->'lukas'). (1->'ab'). (1->'cmm'). (1->'cd'). (1->'TorstenBergmann'). (1->'zz'). (1->'adrianLienhard'). (1->'ms'). (1->'damien'). (1->'gk'). (1->'tg'). (1->'MarcusDenker_'). (1->'dew'). (1->'mm'). (1->'damien_pollet'). (1->'GwenaelCasaccio'). (1->'mike'). (1->'hpt')}

stef

On Jan 23, 2010, at 9:40 AM, Levente Uzonyi wrote:

> Try this:
>
> bag := Bag new.
> (MCHttpRepository
>        location: 'http://www.squeaksource.com/Pharo'
>        user: '' password: '') allFileNames do:[:fname|
>                (fname endsWith: '.mcz') ifTrue:[
>                        bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
> bag sortedCounts.
>
>
> Levente
>
> On Sat, 23 Jan 2010, Stéphane Ducasse wrote:
>
>> bag := Bag new.
>> (MCHttpRepository
>> location: 'http://www.squeaksource.org/pharo'
>> user: '' password: '') allFileNames do:[:fname|
>> (fname endsWith: '.mcz') ifTrue:[
>> bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
>> bag sortedCounts.
>>
>> -> NetNameResolver primitive failed.
>>
>> Stef
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] NetNameResolver strikes back 11177 => 1852 1853 :(

Schwab,Wilhelm K
In reply to this post by Stéphane Ducasse
Stef,

I am convinced that not all accesses to ipv6 primitives are protected by #useOldNetwork.  See the NetNameResolver thread from July 2009.

Bill



-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Stéphane Ducasse
Sent: Saturday, January 23, 2010 4:49 AM
To: [hidden email]
Subject: Re: [Pharo-project] NetNameResolver strikes back 11177 => 1852 1853 :(

thanks
I still have the impression that all the access to netnameresolver are not using the old access...

Stef

On Jan 23, 2010, at 9:40 AM, Levente Uzonyi wrote:

> Try this:
>
> bag := Bag new.
> (MCHttpRepository
>        location: 'http://www.squeaksource.com/Pharo'
>        user: '' password: '') allFileNames do:[:fname|
>                (fname endsWith: '.mcz') ifTrue:[
>                        bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
> bag sortedCounts.
>
>
> Levente
>
> On Sat, 23 Jan 2010, Stéphane Ducasse wrote:
>
>> bag := Bag new.
>> (MCHttpRepository
>> location: 'http://www.squeaksource.org/pharo'
>> user: '' password: '') allFileNames do:[:fname|
>> (fname endsWith: '.mcz') ifTrue:[
>> bag add: ((fname copyAfterLast: $-) copyUpTo: $.)]].
>> bag sortedCounts.
>>
>> -> NetNameResolver primitive failed.
>>
>> Stef
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project