/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/ |
D | async_send_sync.rs | 15 // Send: Yes, Sync: Yes 20 // Send: Yes, Sync: No 27 // Send: No, Sync: No 35 type BoxFutureSync<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + Sync>>; 42 type BoxAsyncRead = std::pin::Pin<Box<dyn tokio::io::AsyncBufRead + Send + Sync>>; 44 type BoxAsyncSeek = std::pin::Pin<Box<dyn tokio::io::AsyncSeek + Send + Sync>>; 46 type BoxAsyncWrite = std::pin::Pin<Box<dyn tokio::io::AsyncWrite + Send + Sync>>; 51 fn require_sync<T: Sync>(_t: &T) {} in require_sync() 70 impl<T: ?Sized + Sync> AmbiguousIfSync<Invalid> for T {} 87 (Send & $(!)?Sync & $(!)?Unpin, $value:expr) => { [all …]
|
/aosp_15_r20/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | AbstractQueuedLongSynchronizerTest.java | 112 final Mutex sync; field in AbstractQueuedLongSynchronizerTest.InterruptibleSyncRunnable 113 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptibleSyncRunnable() argument 115 sync.acquireInterruptibly(); in realRun() 124 final Mutex sync; field in AbstractQueuedLongSynchronizerTest.InterruptedSyncRunnable 125 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptedSyncRunnable() argument 127 sync.acquireInterruptibly(); in realRun() 135 * Spin-waits until sync.isQueued(t) becomes true. 137 void waitForQueuedThread(AbstractQueuedLongSynchronizer sync, in waitForQueuedThread() argument 140 while (!sync.isQueued(t)) { in waitForQueuedThread() 149 * Checks that sync has exactly the given queued threads. [all …]
|
H A D | AbstractQueuedSynchronizerTest.java | 116 final Mutex sync; field in AbstractQueuedSynchronizerTest.InterruptibleSyncRunnable 117 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptibleSyncRunnable() argument 119 sync.acquireInterruptibly(); in realRun() 128 final Mutex sync; field in AbstractQueuedSynchronizerTest.InterruptedSyncRunnable 129 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptedSyncRunnable() argument 131 sync.acquireInterruptibly(); in realRun() 139 * Spin-waits until sync.isQueued(t) becomes true. 141 void waitForQueuedThread(AbstractQueuedSynchronizer sync, Thread t) { in waitForQueuedThread() argument 143 while (!sync.isQueued(t)) { in waitForQueuedThread() 152 * Checks that sync has exactly the given queued threads. [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/ |
H A D | AbstractQueuedSynchronizerTest.java | 151 final Mutex sync; field in AbstractQueuedSynchronizerTest.InterruptibleSyncRunnable 152 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptibleSyncRunnable() argument 154 sync.acquireInterruptibly(); in realRun() 163 final Mutex sync; field in AbstractQueuedSynchronizerTest.InterruptedSyncRunnable 164 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptedSyncRunnable() argument 166 sync.acquireInterruptibly(); in realRun() 174 * Spin-waits until sync.isQueued(t) becomes true. 176 void waitForQueuedThread(AbstractQueuedSynchronizer sync, Thread t) { in waitForQueuedThread() argument 178 while (!sync.isQueued(t)) { in waitForQueuedThread() 187 * Checks that sync has exactly the given queued threads. [all …]
|
H A D | AbstractQueuedLongSynchronizerTest.java | 147 final Mutex sync; field in AbstractQueuedLongSynchronizerTest.InterruptibleSyncRunnable 148 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptibleSyncRunnable() argument 150 sync.acquireInterruptibly(); in realRun() 159 final Mutex sync; field in AbstractQueuedLongSynchronizerTest.InterruptedSyncRunnable 160 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; } in InterruptedSyncRunnable() argument 162 sync.acquireInterruptibly(); in realRun() 170 * Spin-waits until sync.isQueued(t) becomes true. 172 void waitForQueuedThread(AbstractQueuedLongSynchronizer sync, in waitForQueuedThread() argument 175 while (!sync.isQueued(t)) { in waitForQueuedThread() 184 * Checks that sync has exactly the given queued threads. [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/futures/tests/ |
D | auto_traits.rs | 4 //! Assert Send/Sync/Unpin for all public types. 20 type SyncFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Sync>>; 22 type SendSyncFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Send + Sync>>; 39 type SyncStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Sync>>; 41 type SendSyncStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Send + Sync>>; 56 type SyncSink<T = *const (), E = *const ()> = Pin<Box<dyn Sink<T, Error = E> + Sync>>; 75 /// Assert Send/Sync/Unpin for all public types in `futures::channel`. 82 assert_impl!(mpsc::Receiver<()>: Sync); 83 assert_not_impl!(mpsc::Receiver<*const ()>: Sync); 87 assert_impl!(mpsc::SendError: Sync); [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/ |
D | Jamfile.v2 | 386 …[ thread-compile-fail ./sync/conditions/condition_variable/assign_fail.cpp : : condition_variable_… 387 …[ thread-compile-fail ./sync/conditions/condition_variable/copy_fail.cpp : : condition_variable__c… 388 …[ thread-run2-noit ./sync/conditions/condition_variable/default_pass.cpp : condition_variable__def… 389 …[ thread-run2-noit ./sync/conditions/condition_variable/dtor_pass.cpp : condition_variable__dtor_p… 390 …[ thread-run2-noit-pthread ./sync/conditions/condition_variable/native_handle_pass.cpp : condition… 391 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_pass.cpp : condition_variable__wait_p… 392 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_for_pass.cpp : condition_variable__wa… 393 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_for_pred_pass.cpp : condition_variabl… 394 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_until_pass.cpp : condition_variable__… 395 …[ thread-run2-noit ./sync/conditions/condition_variable/wait_until_pred_pass.cpp : condition_varia… [all …]
|
/aosp_15_r20/external/mesa3d/src/vulkan/runtime/ |
H A D | vk_sync.c | 82 struct vk_sync *sync, in vk_sync_init() argument 94 assert(type->size >= sizeof(*sync)); in vk_sync_init() 95 memset(sync, 0, type->size); in vk_sync_init() 96 sync->type = type; in vk_sync_init() 97 sync->flags = flags; in vk_sync_init() 99 return type->init(device, sync, initial_value); in vk_sync_init() 104 struct vk_sync *sync) in vk_sync_finish() argument 106 sync->type->finish(device, sync); in vk_sync_finish() 116 struct vk_sync *sync; in vk_sync_create() local 118 sync = vk_alloc(&device->alloc, type->size, 8, in vk_sync_create() [all …]
|
H A D | vk_sync.h | 39 /** Set if a sync type supports the binary mode of operation 59 /** Set if a sync type supports the timeline mode of operation 80 /** Set if this sync supports GPU waits */ 83 /** Set if a sync type supports multiple GPU waits on one signal state 97 /** Set if a sync type supports vk_sync_wait() and vk_sync_wait_many() */ 100 /** Set if a sync type supports vk_sync_reset() 106 /** Set if a sync type supports vk_sync_signal() */ 111 * vk_sync_wait_many() will support the bit regardless. If the sync type 116 /** Set if a sync type supports the VK_SYNC_WAIT_PENDING bit 123 /** Set if a sync type natively supports wait-before-signal [all …]
|
/aosp_15_r20/external/ltp/runtest/ |
H A D | ltp-aiodio.part1 | 1 #DESCRIPTION:ltp A-sync IO and Direct IO tests 4 AD002 aiocp -b 1k -n 1 -f SYNC 6 AD004 aiocp -b 1k -n 2 -f SYNC 8 AD006 aiocp -b 1k -n 4 -f SYNC 10 AD008 aiocp -b 1k -n 8 -f SYNC 12 AD010 aiocp -b 1k -n 16 -f SYNC 14 AD012 aiocp -b 1k -n 32 -f SYNC 16 AD014 aiocp -b 1k -n 64 -f SYNC 18 AD016 aiocp -b 2k -n 1 -f SYNC 20 AD018 aiocp -b 2k -n 2 -f SYNC [all …]
|
/aosp_15_r20/device/google/contexthub/firmware/os/algos/ |
D | time_sync.c | 21 void time_sync_reset(time_sync_t *sync) { in time_sync_reset() argument 22 sync->n = 0; in time_sync_reset() 23 sync->i = 0; in time_sync_reset() 24 sync->estimate_valid = false; in time_sync_reset() 26 sync->hold_count = 0; in time_sync_reset() 29 bool time_sync_init(time_sync_t *sync) { in time_sync_init() argument 30 time_sync_reset(sync); in time_sync_init() 35 void time_sync_truncate(time_sync_t *sync, size_t window_size) { in time_sync_truncate() argument 37 sync->n = (window_size < sync->n) ? window_size : sync->n; in time_sync_truncate() 38 sync->estimate_valid = false; in time_sync_truncate() [all …]
|
/aosp_15_r20/build/soong/rust/ |
H A D | sanitize_test.go | 15 Sync const 23 case Sync: 24 return "sync" 44 found = Sync 169 checkHasMemtagNote(t, ctx.ModuleForTests("set_memtag_binary_override_default_sync", variant), Sync) 171 checkHasMemtagNote(t, ctx.ModuleForTests("set_memtag_test_no_override", variant), Sync) 172 checkHasMemtagNote(t, ctx.ModuleForTests("set_memtag_test_override_default_async", variant), Sync) 173 …heckHasMemtagNote(t, ctx.ModuleForTests("set_memtag_test_override_default_disable", variant), Sync) 174 checkHasMemtagNote(t, ctx.ModuleForTests("set_memtag_test_override_default_sync", variant), Sync) 186 checkHasMemtagNote(t, ctx.ModuleForTests("set_memtag_set_sync_binary_no_override", variant), Sync) [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_pipe_sync.c | 29 lvp_pipe_sync_validate(ASSERTED struct lvp_pipe_sync *sync) in lvp_pipe_sync_validate() argument 31 if (sync->signaled) in lvp_pipe_sync_validate() 32 assert(sync->fence == NULL); in lvp_pipe_sync_validate() 40 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); in lvp_pipe_sync_init() local 42 mtx_init(&sync->lock, mtx_plain); in lvp_pipe_sync_init() 43 cnd_init(&sync->changed); in lvp_pipe_sync_init() 44 sync->signaled = (initial_value != 0); in lvp_pipe_sync_init() 45 sync->fence = NULL; in lvp_pipe_sync_init() 55 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); in lvp_pipe_sync_finish() local 57 lvp_pipe_sync_validate(sync); in lvp_pipe_sync_finish() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/content/ |
H A D | SyncRequest.java | 28 * Convenience class to construct sync requests. See {@link android.content.SyncRequest.Builder} 34 /** Account to pass to the sync adapter. Can be null. */ 40 /** Bundle containing user info as well as sync settings. */ 43 /** Don't allow this sync request on metered networks. */ 46 * Amount of time before {@link #mSyncRunTimeSecs} from which the sync may optionally be 51 * Specifies a point in the future at which the sync must have been scheduled to run. 60 /** Sync should be run in lieu of other syncs. */ 62 /** Sync sound be ran as an expedited job. */ 67 * @return whether this sync is periodic or one-time. A Sync Request must be 77 * @return whether this sync is expedited. [all …]
|
/aosp_15_r20/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | bindgen_bundled_version_ext.rs | 2928 static __SQLITE3_AGGREGATE_CONTEXT: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::Atomi… 2935 let ptr = __SQLITE3_AGGREGATE_CONTEXT.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_aggregate_context() 2944 static __SQLITE3_BIND_BLOB: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::ne… 2954 let ptr = __SQLITE3_BIND_BLOB.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_blob() 2968 static __SQLITE3_BIND_DOUBLE: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::… 2976 let ptr = __SQLITE3_BIND_DOUBLE.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_double() 2986 static __SQLITE3_BIND_INT: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::new( 2994 let ptr = __SQLITE3_BIND_INT.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_int() 3004 static __SQLITE3_BIND_INT64: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::n… 3012 let ptr = __SQLITE3_BIND_INT64.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_int64() [all …]
|
/aosp_15_r20/external/rust/crates/libsqlite3-sys/bindgen-bindings/ |
D | bindgen_3.14.0_ext.rs | 2494 static __SQLITE3_AGGREGATE_CONTEXT: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::Atomi… 2501 let ptr = __SQLITE3_AGGREGATE_CONTEXT.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_aggregate_context() 2510 static __SQLITE3_BIND_BLOB: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::ne… 2520 let ptr = __SQLITE3_BIND_BLOB.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_blob() 2534 static __SQLITE3_BIND_DOUBLE: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::… 2542 let ptr = __SQLITE3_BIND_DOUBLE.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_double() 2552 static __SQLITE3_BIND_INT: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::new( 2560 let ptr = __SQLITE3_BIND_INT.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_int() 2570 static __SQLITE3_BIND_INT64: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::n… 2578 let ptr = __SQLITE3_BIND_INT64.load(::std::sync::atomic::Ordering::Acquire); in sqlite3_bind_int64() [all …]
|
/aosp_15_r20/packages/apps/Car/Settings/tests/deviceless/src/com/android/car/settings/accounts/ |
D | AccountSyncDetailsPreferenceControllerTest.java | 107 // Adds a sync adapter type that is visible but does not have the right account type. in refreshUi_syncAdapterDoesNotHaveSameAccountType_shouldNotBeShown() 120 // Adds a sync adapter type that has the right account type but is not visible. in refreshUi_syncAdapterIsNotVisible_shouldNotBeShown() 133 // Adds a sync adapter type that has the right account type and is visible. in refreshUi_syncAdapterIsNotSyncable_shouldNotBeShown() 138 // Sets that the sync adapter to not syncable. in refreshUi_syncAdapterIsNotSyncable_shouldNotBeShown() 148 // Adds a sync adapter type that has the right account type and is visible. in refreshUi_syncAdapterDoesNotHaveProviderInfo_shouldNotBeShown() 153 // Sets that the sync adapter to syncable. in refreshUi_syncAdapterDoesNotHaveProviderInfo_shouldNotBeShown() 156 // However, no provider info is set for the sync adapter, so it shouldn't be visible. in refreshUi_syncAdapterDoesNotHaveProviderInfo_shouldNotBeShown() 165 // Adds a sync adapter type that has the right account type and is visible. in refreshUi_providerInfoDoesNotHaveLabel_shouldNotBeShown() 170 // Sets that the sync adapter to syncable. in refreshUi_providerInfoDoesNotHaveLabel_shouldNotBeShown() 172 // Sets provider info for the sync adapter but it does not have a label. in refreshUi_providerInfoDoesNotHaveLabel_shouldNotBeShown() [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/codestarconnections/src/main/resources/codegen-resources/ |
H A D | service-2.json | 61 …specified external Git repository. A repository link allows Git sync to monitor and sync changes t… 80 …sync configuration which allows Amazon Web Services to sync content from a Git repository to updat… 145 … "documentation":"<p>Deletes the sync configuration for a specified repository and connection.</p>" 191 …s details about a repository link. A repository link allows Git sync to monitor and sync changes f… 208 …"documentation":"<p>Returns details about the sync status for a repository. A repository sync uses… 225 …"documentation":"<p>Returns the status of the sync with the Git repository for a specific Amazon W… 242 "documentation":"<p>Returns a list of the most recent sync blockers.</p>" 259 …s details about a sync configuration, including the sync type and resource name. A sync configurat… 317 …"documentation":"<p>Lists the repository sync definitions for repository links in your account.</p… 334 "documentation":"<p>Returns a list of sync configurations for a specified repository.</p>" [all …]
|
/aosp_15_r20/external/lzma/CPP/7zip/UI/GUI/ |
H A D | BenchmarkDialog.cpp | 294 Sync.Init(); in InitSyncNew() 332 Sync.SendExit(); in SendExit_Status() 336 CBenchProgressSync Sync; member in CBenchmarkDialog 533 UInt32 numThreads = Sync.NumThreads; in OnInit() 561 Sync.NumThreads = GetNumberOfThreads(); in OnInit() 579 if (Sync.DictSize == (UInt64)(Int64)-1) in OnInit() 588 Sync.NumThreads, Sync.Level, (UInt64)1 << dicSizeLog, TotalMode))) in OnInit() 590 Sync.DictSize = (UInt64)1 << dicSizeLog; in OnInit() 593 if (Sync.DictSize < kMinDicSize) Sync.DictSize = kMinDicSize; in OnInit() 594 if (Sync.DictSize > kMaxDicSize) Sync.DictSize = kMaxDicSize; in OnInit() [all …]
|
/aosp_15_r20/frameworks/base/media/jni/ |
H A D | android_media_MediaSync.cpp | 124 static sp<JMediaSync> setMediaSync(JNIEnv *env, jobject thiz, const sp<JMediaSync> &sync) { in setMediaSync() argument 126 if (sync != NULL) { in setMediaSync() 127 sync->incStrong(thiz); in setMediaSync() 133 env->SetLongField(thiz, gFields.context, (jlong)sync.get()); in setMediaSync() 174 sp<JMediaSync> sync = getMediaSync(env, thiz); in android_media_MediaSync_native_setSurface() local 175 if (sync == NULL) { in android_media_MediaSync_native_setSurface() 191 status_t err = sync->setSurface(bufferProducer); in android_media_MediaSync_native_setSurface() 207 sp<JMediaSync> sync = getMediaSync(env, thiz); in android_media_MediaSync_native_setAudioTrack() local 208 if (sync == NULL) { in android_media_MediaSync_native_setAudioTrack() 222 status_t err = sync->setAudioTrack(audioTrack); in android_media_MediaSync_native_setAudioTrack() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | race_s390x.s | 157 // Atomic operations for sync/atomic package. 161 TEXT sync∕atomic·LoadInt32(SB), NOSPLIT, $0-12 167 TEXT sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16 173 TEXT sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12 175 JMP sync∕atomic·LoadInt32(SB) 177 TEXT sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16 179 JMP sync∕atomic·LoadInt64(SB) 181 TEXT sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16 183 JMP sync∕atomic·LoadInt64(SB) 185 TEXT sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16 [all …]
|
D | race_amd64.s | 196 // Atomic operations for sync/atomic package. 199 TEXT sync∕atomic·LoadInt32(SB), NOSPLIT|NOFRAME, $0-12 205 TEXT sync∕atomic·LoadInt64(SB), NOSPLIT|NOFRAME, $0-16 211 TEXT sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12 213 JMP sync∕atomic·LoadInt32(SB) 215 TEXT sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16 217 JMP sync∕atomic·LoadInt64(SB) 219 TEXT sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16 221 JMP sync∕atomic·LoadInt64(SB) 223 TEXT sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16 [all …]
|
D | race_arm64.s | 198 // Atomic operations for sync/atomic package. 204 TEXT sync∕atomic·LoadInt32(SB), NOSPLIT, $0-12 210 TEXT sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16 216 TEXT sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12 218 JMP sync∕atomic·LoadInt32(SB) 220 TEXT sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16 222 JMP sync∕atomic·LoadInt64(SB) 224 TEXT sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16 226 JMP sync∕atomic·LoadInt64(SB) 228 TEXT sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16 [all …]
|
/aosp_15_r20/frameworks/native/opengl/specs/ |
H A D | EGL_ANDROID_native_fence_sync.txt | 39 This extension enables the creation of EGL fence sync objects that are 41 using a file descriptor. These EGL fence sync objects have nearly 47 object that behaves similarly to an EGL fence sync object. These native 86 Add the following after the sixth paragraph of Section 3.8.1 (Sync 89 "If <type> is EGL_SYNC_NATIVE_FENCE_ANDROID, an EGL native fence sync 95 The default values for the EGL native fence sync object attributes are as 112 Modify Section 3.8.1 (Sync Objects), added by KHR_fence_sync, starting at 115 "When a fence sync object is created or when an EGL native fence sync 120 with the newly created sync object. 122 After associating the fence command with an EGL native fence sync object, [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/ |
D | func_test.go | 39 in: `foo.Bar[sync/atomic.Uint64]`, 41 sym: "Bar[sync/atomic.Uint64]", 44 in: `example%2ecom.Bar[sync/atomic.Uint64]`, 46 sym: "Bar[sync/atomic.Uint64]", 49 in: `gopkg.in/yaml%2ev3.Bar[sync/atomic.Uint64]`, 51 sym: "Bar[sync/atomic.Uint64]", 55 …in: `foo.Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align6… 57 …sym: "Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align64; s… 60 …: `example%2ecom.Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomi… 62 …sym: "Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align64; s… [all …]
|