Re: [swift-corelibs-dev] NSTask and NSFileHandle implementation

2016-04-18 Thread Chris Bailey via swift-corelibs-dev
Hi Dan: The Dispatch sources are mostly complete - unfortunately DISPATCH_SOURCE_TYPE_PROC isn't there and it unlikely to be there in a hurry. It would ideally need the underlying kqueue library to have EVFILT_PROC support, which it doesn't today. Chris From: Dan Stenmark via swift-corel

Re: [swift-corelibs-dev] NSEnergyFormatter

2016-04-18 Thread Vojtěch Šťavík via swift-corelibs-dev
Actually, I have a question. What is the best way to get localized names for units? It seems Mauricio has the same question at https://github.com/apple/swift-corelibs-foundation/pull/320 . Subject: Re: [swift-corelibs-dev] NSEnergyFormatter From: anthony.par...@apple.com Date: Fri, 15 Apr 2016 1

Re: [swift-corelibs-dev] Crypto as part of the core libraries

2016-04-18 Thread Chris Bailey via swift-corelibs-dev
Hi Travis: FYI, Security (crypto/secure transport etc) is an area that some of us from IBM are just starting to look at. We've love to collaborate with you on it. Chris From: Travis Beech via swift-corelibs-dev To: Tony Parker Cc: "swift-corelibs-dev@swift.org" Date: 15/04/20

Re: [swift-corelibs-dev] NSEnergyFormatter

2016-04-18 Thread Philippe Hausler via swift-corelibs-dev
The formatter in this case should probably query ICU4C’s function uplrules_select (and other associated functions). On Darwin energy, length and mass formatters all funnel to one unit formatter that can abstractly handle each of those cases (which might not be a bad idea to have in the swift ver

Re: [swift-corelibs-dev] NSEnergyFormatter

2016-04-18 Thread Philippe Hausler via swift-corelibs-dev
Sorry one slight clarification; the uplrules is only for the pluralization; uameasfmt_getMultipleUnitNames is the other major component. > On Apr 18, 2016, at 9:16 AM, Philippe Hausler via swift-corelibs-dev > wrote: > > The formatter in this case should probably query ICU4C’s function > uplr

Re: [swift-corelibs-dev] NSURLSession & libcurl

2016-04-18 Thread Pushkar N Kulkarni via swift-corelibs-dev
Thanks for your great work on NSURLSession and friends, Daniel!I was wondering if we are only waiting for dispatch to be available on Linux here. In that case, could we have the failing tests (if any) excluded (only on Linux perhaps) and have this merged please? Some of us at IBM would like to work

Re: [swift-corelibs-dev] NSURLSession & libcurl

2016-04-18 Thread Tony Parker via swift-corelibs-dev
I think that’s a fair approach - but does this even compile on Linux without dispatch in place? I get “no such module ‘Dispatch’” errors when compiling. - Tony > On Apr 18, 2016, at 11:24 AM, Pushkar N Kulkarni > wrote: > > Thanks for your great work on NSURLSession and friends, Daniel! > >