Search results for

smb big sur

11,740 results found

Post

Replies

Boosts

Views

Activity

photoshop
Je viens de télécharger la dernière version du système d'exploitation apple ( El Capitan Bêta 2 ) et depuis je n'arrive plus à utiliser photoshop CC 2015.Mes fichiers RAW s'ouvrent avec Camera Raw et une fois le traitement effectué sur chacune de mes photos le logiciel Photoshop ne répond plus.Je suis obligé de quitter l'application en forçant sa fermeture.Merci d'apporter votre aide.
1
0
145
Aug ’15
What level of integration can third-party filesystems get with the Finder?
I develop a third-party network filesystem for the Mac. I've noticed that there are certain Finder behaviors that we don't (perhaps can't) have that built-in networked filesystems do have. For instance, when a folder from an SMB share is added to the Finder sidebar as a favorite, clicking on that favorite will automatically mount the share if it is not already mounted. There is also a Shared section of the Finder sidebar. Integrating our filesystem into this section would be ideal, but I imagine that is much less likely than the first example.I'm wondering if these behaviors come from particular VFS attributes set by a filesystem or are just special magic that Apple reserves for its own filesystem implementations.
7
0
1.7k
Aug ’15
Reply to Swift, SSL Self Signed certificate IOS8+
OK, lots of points to cover here:I’ve moved your thread to Core OS > Networking as this question is more about networking than it is about Swift.If you’re writing new code you should use NSURLSession rather than NSURLConnection; we’re in the process of deprecating the latter in favour of the former.You should read up on App Transport Security because that’s likely to impact on your product in the very near future.Error -9813 is errSSLNoRootCert, implying that you really do have an HTTPS server trust evaluation problem. Technote 2232 HTTPS Server Trust Evaluation covers that topic in detail.You’re calling NSURLConnection synchronously (using the +sendSynchronousRequest:xxx method). This is a bad idea in general for all sorts of reasons. I strongly recommend that you move to an async API. In fact, if you switch to NSURLSession you’ll find that it has no sync API.With regards your attempted solution, the problem you’re having is that -connection:willSendRequestForAuthenticationChallenge: is an NSURLConnection
Aug ’15
Size a label based on font to exactly two lines
In a UITableViewCell I have three labels vertically aligned. The top and bottom labels are each a single line of text. The middle label I want to display up to two lines of text, but not more, and always be the same height...so even if it's just one line, it still takes up the space of two. How do I know how big to set the height of that middle label to so that it works with the font? I can't just make it 40 (double what a normal label is) because that doesn't account for line spacings and such.
2
0
327
Aug ’15
Decompressing Non-IDR NALs
I am implementing an app that receives an h264 video stream in not-NAL-packaged chunks from a hardware accessory (an abritrarily divided stream of bytes), but it's not working for me. The stream does not contain IDRs, though one is provided by the accessory manufacturer to be loaded at runtime. I have successfully decompressed the IDR by concatenating all the 0x05 (IDR image slice) NALs together and supplying an appropriate CMVideoFormatDescriptionRef generated from the SPS and PPS in the reference IDR.I can extract the NALs received from the byte stream by hunting for 0x00000001 start codes. However, when I try to concatenate all of the following 0x01 (non-IDR video slice) NALs into a CMBlockBuffer into a CMSampleBuffer and decompress that, the decompression nearly always fails (the specific error varies, I recall most of the time with -12911). I am applying the same transformation to the 0x01 NALs as the 0x05 NALs to generate AVCC NALs (strip off the header, package the size as a 4-byte big endian
1
0
1.4k
Aug ’15
Reply to SceneKit collisions are not working in El Capitan beta?
Same build; I usually just copy-drag the project folder, with the Build folder deleted, from my Yosemite machine to my El Capitan one when I want to switch environments. I target 10.10 on both machines. The only differences should be the Xcode and SDK versions.I'll file a bug. Going to Metal on El Capitan is a big change and I expected some problems, but this one is so visible and basic to SceneKit that my immediate thoughts were I can't be the only persone seeing this so I must be doing something wrong in how I create the objects.Thanks for the reply.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to Get rid of Open Directory!
Perhaps I could have said this more clearly: The way that Apple set up Open Directory within OS X Server is very much like the Windows NT domain services. OS X Server can be set up as an Open Directory master, or as a replica. Active Directory domain controllers use multi-master replicatiom, so there can be multiple primaries on the network, each having a read/write copy of the directory database.You are right that the cloud is becoming an integral part of networking, however, there is still a place for locally-hosted servers, so corporate datacenters will still be used by some people.IN much the same way that Apple has moved from its AFP-based file sharing protocols to Microsoft's SMB protocol, OS X Server should move away from Open Directory, and move toward Active Directory. The SAMBA project has built AD comain controller functionality into version 4 of their suite, so if this is possible with open-source software, then Apple may be in a position to do the same thing with their server so
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
UIImage and CoreData
Hi everyone,I have a trouble to fund a tutorial who can help me to save an image to my core data and retrieve it. All tutorial I fund include a tableView, and I use only a viewController.the big idea isthe App user enter some data and a picture from the library of the camera (pickerController)So I already have a code running where I save and retrieve my data see belowRetrieve data codelet appDel:AppDelegate = UIApplication.sharedApplication().delegate as! AppDelegate let context:NSManagedObjectContext = appDel.managedObjectContext! let request = NSFetchRequest (entityName: List) request.returnsObjectsAsFaults = false; request.predicate = NSPredicate (format: keynumber = %@, KeyNumber.text!) var results:NSArray = context.executeFetchRequest(request, error: nil)! if results.count > 0 { for user in results{ var thisUser = user as! List println(The Users username is (thisUser.keynumber)) / AircraftID.text = thisUser.aircraftid etc...save data code let appDel:AppDelegate = UIApplication.sharedApplicati
0
0
292
Aug ’15
Reply to Selectively disable a PCI-E Device?
Heya, Hmmmm,I suppose that would be possible during development, ( of which i have almost finished now anyway) However my goal is produce a tool that users/customers could use when they have systems with multiple cards.Also i'm not big on the idea of duplicating an entire kext, just so that i can disable 1 of 2 or 3 when i need to.But given the lack of responses on here I'm starting to think it's just not possible? 😟Thanks for the reposnse anyway
Topic: App & System Services SubTopic: Drivers Tags:
Aug ’15
Swift 2 and Xcode 7 have a memory leak in "switch" statement
Hi,Doing some tests I have bumped into what could be a bug in Swift 2 and XCode 7 (beta 5). It doesn't happend in Swift 1 and XCode 6.4.It is related with memory not released if I cast NSDictionay as [String:AnyObject] in a switch statemen.By the way, is something that happends in SwiftyJSON utility library. Quite common to access JSON objects.I had something like this: //------------------------------------------------------------------------------------------- let pathName = my_json_data_file.json // Big loop to see how memory grows for var n=0;n<20000;n++ { // Autorelease pool to release objects a soon as possible and avoid confusing the memory leak with that autoreleasepool { do { let jsonData = try NSData(contentsOfFile: pathName, options: NSDataReadingOptions()) let value: AnyObject = try NSJSONSerialization.JSONObjectWithData(jsonData, options: .AllowFragments) // This is the problematic code switch value { case _ as [String : AnyObject]: // Something to do break default: // Somethig...else
3
0
1.1k
Aug ’15