検索

phrase: max: clip:
target: order:
Results of 1 - 7 of about 7 for memory (0.015 sec.)
Atomics 13486
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... Atomics Rust pretty blatantly just inherits C11's memory model for atomics. This is not due to this model b ... some of the problems Rust developers face. The C11 memory model is fundamentally about trying to bridge the ... in trouble. Trouble comes from CPUs in the form of memory hierarchies. There is indeed a global shared memor ... ly go through all the anguish of talking to shared memory only when it doesn't actually have that memory in ...
https://man.plustar.jp/rust/nomicon/atomics.html - [similar]
Drop Check 8851
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... n Inspector is dropped, it will try to read free'd memory! } <anon>:12:28: 12:32 error: `days` does not live ... n Inspector is dropped, it will try to read free'd memory! ... <anon>:10:27: 15:2 note: ...but borrowed valu ... n Inspector is dropped, it will try to read free'd memory! <anon>:15 } Implementing Drop lets the Inspector ...
https://man.plustar.jp/rust/nomicon/dropck.html - [similar]
Subtyping and Variance 8542
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... er_str, &mut &*string); } // Oops, printing free'd memory println!("{}", forever_str); } The signature of ov ... y be dropped, and forever_str would point to freed memory when we print it! Therefore &mut should be invaria ...
https://man.plustar.jp/rust/nomicon/subtyping.html - [similar]
print.html 8233
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... er_str, &mut &*string); } // Oops, printing free'd memory println!("{}", forever_str); } The signature of ov ... y be dropped, and forever_str would point to freed memory when we print it! Therefore &mut should be invaria ... n Inspector is dropped, it will try to read free'd memory! } <anon>:12:28: 12:32 error: `days` does not live ... n Inspector is dropped, it will try to read free'd memory! ... <anon>:10:27: 15:2 note: ...but borrowed valu ...
https://man.plustar.jp/rust/nomicon/print.html - [similar]
Send and Sync 8233
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... me types allow you to multiply alias a location in memory while mutating it. Unless these types use synchron ...
https://man.plustar.jp/rust/nomicon/send-and-sync.html - [similar]
Final Code 8160
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... lf.iter {} } } /// Abort the process, we're out of memory! /// /// In practice this is probably dead code on ...
https://man.plustar.jp/rust/nomicon/vec-final.html - [similar]
アロケーティング 8015
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 対話できるようになります。 また、メモリ不足 (out-of-memory, OOM) の状態に対処する方法も必要です。 標準ライブラ ...
https://man.plustar.jp/rust/nomicon/vec-alloc.html - [similar]
PREV 1 NEXT