Search results for

Account Locked

31,833 results found

Post

Replies

Boosts

Views

Activity

Do not allow power off for lock devices
Apple should not allow a locked device to be powerd off I think the find my phone only works if the phone is on This also applies to the watch Apple has great security with in the brand but I see this as a Flaw i.e if my phone was stolen the perpetrator would just turn the phone off then I can't track it with find my phone. But if they can’t turn it off then the phone will stay on and be able to be tracked. Regards George
1
0
364
Nov ’17
Adding GitHub account to Xcode Accounts
I am attempting to add my GitHub account to Xcode. However, when I go to add my account, I get the error Your account or token is incorrect. I've changed my GitHub password multiple times and it no matter what, I still get this error. Is there anything else I can do to get this up and running? Thank you!
2
0
2.7k
Jan ’21
Request for Account Upgrade to Organization Account
I am writing to request an upgrade of my account from a personal account to an organization account. I attempted to reach out a few days ago but have not received any feedback over the past 4-5 days. This matter is quite urgent as my project, which is related to finance, needs to be launched soon. I am concerned that the app might reject it since it is currently linked to a personal account rather than an organization account. I would greatly appreciate your prompt assistance in resolving this issue. Thank you for your attention to this matter.
0
0
115
Aug ’25
What is the icon size for lock screen media player?
My app uses HTML audio to play a live stream onto the iPhone lock screen. However, my app's icon (which is shown instead of album art) is shown under-size and has a grey box surrounding it, as if to suggest the canvas for the icon is larger than what the app's icon is providing.Does anybody know the required icon size for iOS 11 to fill this media player space?
0
0
686
Oct ’17
Local notification not play sound on device lock
I am working on an Alarm app. If we set the native alarm, while the screen is lock , it will play the sound while display alarm too, even kill the Alarm. I achieved to run the sound and show the message after kill the App using Local Notification, but if screen is lock , only notification is appearing and didn't playing any Sound.
0
0
271
Jun ’16
iOS 11 lock screen appears randomly on iPad
I have 39 iPads Air (WIFI) iOS 11.2.6 was reinstalling using iTunes.App on guitded access, display auto-lock - never, do not disturd - on, notifications - neverSometimes the screen is blocked randomly on one of the iPadon iOS 10 there was no problem.this happens after receiving a message from apple find out what's new in iOS 11https://drive.google.com/file/d/1HWJ8oqFH-tLGQdJUcyrDn03oUdT2X8oi/view?usp=sharing iPad logs. screen lock 27.03.2018 at 13:05
1
0
851
Mar ’18
Main thread locks during debugging
One of our apps does most of its work in an NSOperation subclass, and most of the work involves sending hundreds of AppleScripts to InDesign. We only send them on the main thread via:dispatch_sync(dispatch_get_main_queue(), ^{ [self _runAppleScriptWithDict:infoDict];});Since upgrading from an old MacBook Pro running 10.10.x and whatever Xcode it could handle to a fairly new one running 10.13..6 and Xcode 10.1, I've been seeing a lot of problems when debugging, stopping at breakpoints, then either stepping or continuing when the next line involves sending an AppleScript on the main thread. The main thread looks like:#00x00007fff54fefaee in __psynch_rw_wrlock ()#10x0000000100e109a9 in _pthread_rwlock_lock_wait ()#20x0000000100e108f0 in _pthread_rwlock_lock_slow ()#30x00000001005ff39d in enter_stack_in_backtrace_uniquing_table ()#40x00000001005fb92e in gcd_queue_item_enqueue_hook ()#50x0000000100dbe085 in _dispatch_introspection_queue_item_enqueue_hook ()#60x0000000100da5794 in _dispatch_root_queue_push_override
6
0
7.4k
Jan ’19
Any way to implement a lock in Metal Shader Language?
HI - I'm trying to implement a Barnes-Hut N-Body simulation code in Metal. The code requires construction of a tree. The CUDA implementation uses locks to allow insertion of new nodes into the tree. I've tried using an array of atomic ints in a test case, but this doesn't seem to work: kernel void binning_compute_function( device MyArgument *arg1 [[ buffer(0)]], constant float *ranarr [[ buffer(1) ]], device volatile atomic_int *flagArr [[ buffer(2) ]], device int *bins [[buffer(3)]], uint index [[ thread_position_in_grid ]]) { int expected=0; int ibin = (ranarr[index] * arg1->nbins); for (int i = 0; i < 100000000; i++) { // Lock expected = 0; bool test = !atomic_compare_exchange_weak_explicit(&flagArr[ibin],&expected,1,memory_order_relaxed,memory_order_relaxed); if (test) { bins[ibin] += 1; atomic_store_explicit(&flagArr[ibin], 0, memory_order_relaxed); break; } } } Any other suggestions? The alternative is to use the CPU for this, but seems a shame to miss out on the proc
3
0
1.2k
Jul ’22
Mouse driver locks up MacOS 13.7.6
Every week or so, mouse driver locks up. The LED laser goes out and none of the buttons operate. It's a generic 7 button USB mouse with my USB keyboard still active. I do not know what precipitates the lockup and a system diagnostic request (Sft-Alt-Ctl-Cmd .) does not seem to yield anything useful. > ps -ef|grep -i mouse 501 579 1 0 Mon01PM ?? 0:04.42 /System/Library/ExtensionKit/Extensions/MouseExtension.appex/Contents/MacOS/MouseExtension code-block so the mouse extension was running at the time. With a sudo kill -HUP 579 it did not restart. Also, switching to a different mouse did no good. The mouse driver was behaving like it was deadlocked and I didn't know the correct incantation for restarting it. I power cycle reset the box. SO: you have a mouse driver problem it cannot be just me It behaves like a deadlock, but not knowing how to get a mouse driver dump, I cannot tell what lock(s) its waiting for.
4
0
87
Aug ’25