Example query:
{
"cmd": "query",
"multi": true,
"locator": {
"app": "Safari",
"role": "AXStaticText",
"match": {},Example query:
{
"cmd": "query",
"multi": true,
"locator": {
"app": "Safari",
"role": "AXStaticText",
"match": {},| function crc32(value: string): number { | |
| return 0xd0d0deadbeef; | |
| } | |
| type SerializedMetric = Array<number> | number; | |
| interface Metric<T> { | |
| add(value: T): void; | |
| flush(): SerializedMetric; | |
| } |
| import time | |
| import zlib | |
| from threading import Lock, Thread | |
| class Metric(object): | |
| def add(self, value): | |
| raise NotImplementedError() | |
| def flush(self): |
| Stuff here |
These become tabbed automatically
Foo.bar()[Foo bar]| Some stuff here | |
| ```yaml,alert | |
| title: Foo | |
| body: Bar | |
| ``` | |
| Bla bla |
| [package] | |
| name = "debscraper" | |
| version = "0.1.0" | |
| authors = ["Armin Ronacher <[email protected]>"] | |
| edition = "2018" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| url = "2.1.0" |
| diff --git a/src/service/objects/mod.rs b/src/service/objects/mod.rs | |
| index d6dcdd6..1c79c67 100644 | |
| --- a/src/service/objects/mod.rs | |
| +++ b/src/service/objects/mod.rs | |
| @@ -313,6 +313,7 @@ pub struct ObjectsActor { | |
| meta_cache: Arc<Cacher<FetchFileMetaRequest>>, | |
| data_cache: Arc<Cacher<FetchFileDataRequest>>, | |
| download_thread: RemoteThread, | |
| + cache_pool: ThreadPool, | |
| } |
| import re | |
| import os | |
| import io | |
| import json | |
| import lzma | |
| import email | |
| import pickle | |
| import hashlib | |
| import tarfile | |
| import binascii |
| pub fn copy_with_progress<R: ?Sized, W: ?Sized>( | |
| progress: &ProgressBar, | |
| reader: &mut R, | |
| writer: &mut W, | |
| ) -> io::Result<u64> | |
| where | |
| R: Read, | |
| W: Write, | |
| { | |
| let mut buf = [0; 262144]; |