Home
last modified time | relevance | path

Searched +full:real +full:- +full:world (Results 1 – 25 of 1119) sorted by relevance

12345678910>>...45

/aosp_15_r20/external/okio/okio-testing-support/src/commonMain/kotlin/okio/
H A DAbstractFileSystemTest.kt8 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>()
35 /** This test assumes that okio-files/ is the current working directory when executed. */ in <lambda>()
45 val base: Path = temporaryDirectory / "${this::class.simpleName}-${randomToken(16)}" in <lambda>()
80 cwdString.endsWith("${slash}okio-parent-okio-nodefilesystem-test") || in <lambda>()
97 fileSystem.canonicalize(base / "no-such-file") in <lambda>()
104 fileSystem.canonicalize("no-such-file".toPath()) in <lambda>()
113 fileSystem.createDirectory(base / "real-directory") in <lambda>()
115 val expected = base / "real-directory" / "real-file.txt" in <lambda>()
118 fileSystem.createSymlink(base / "symlink-directory", base / "real-directory") in <lambda>()
120 val canonicalPath = fileSystem.canonicalize(base / "symlink-directory" / "real-file.txt") in <lambda>()
[all …]
/aosp_15_r20/external/python/cpython2/Demo/metaclasses/
Dmeta-vladimir.txt4 Cc: python-[email protected]
9 > building-on-examples-tends-to-prevent-abstract-thrashing-ly y'rs - tim
13 the meta-class concept is likely to be difficult to digest by others.
24 affordable even for them :-)
80 classes! -- don't bug me on this now). Thus, we can compose property
91 attr2 = "World" # additional attr2
104 properties are called superclasses (in Python, we call them also --
114 --------
119 --------
121 2. Meta-classes
[all …]
/aosp_15_r20/external/guava/.github/ISSUE_TEMPLATE/
H A Dfeature_enhancement_request.yaml5 - type: markdown
12 a full-time Guava team member. [Feedback](https://stackoverflow.com/a/4543114) from our
13 users indicates that they really appreciate Guava's high power-to-weight ratio. It's
17 - type: textarea
26 - type: textarea
32 - type: textarea
38 - type: textarea
47 - type: textarea
54 - type: textarea
61 - type: markdown
[all …]
H A Dfeature_addition_request.yaml5 - type: markdown
12 a full-time Guava team member. [Feedback](https://stackoverflow.com/a/4543114) from our
13 users indicates that they really appreciate Guava's high power-to-weight ratio. It's
19 ubiquity](https://github.com/google/guava/wiki/PhilosophyExplained#utility-times-ubiquity).
39 - type: textarea
45 - type: textarea
51 - type: textarea
57 - type: markdown
68 - type: textarea
81 - type: markdown
[all …]
/aosp_15_r20/external/kotlinx.coroutines/docs/topics/
H A Dcoroutines-basics.md1 <!--- TEST_NAME BasicsGuideTest -->
13 Coroutines can be thought of as light-weight threads, but there is a number
14 of important differences that make their real-life usage very different from threads.
24 delay(1000L) // non-blocking delay for 1 second (default time unit is ms)
25 println("World!") // print after delay
31 {kotlin-runnable="true" kotlin-min-compiler-version="1.3"}
33 > You can get the full code [here](../../kotlinx-coroutines-core/jvm/test/guide/example-basic-01.kt…
41 World!
44 <!--- TEST -->
55 [runBlocking] is also a coroutine builder that bridges the non-coroutine world of a regular `fun ma…
[all …]
/aosp_15_r20/external/libwebsockets/minimal-examples/api-tests/api-test-fts/
H A Dthe-picture-of-dorian-gray.txt5 re-use it under the terms of the Project Gutenberg License included
69 of the subject-matter of the artist, but the morality of art consists
99 perfume of the pink-flowering thorn.
101 From the corner of the divan of Persian saddle-bags on which he was
103 Wotton could just catch the gleam of the honey-sweet and honey-coloured
107 tussore-silk curtains that were stretched in front of the huge window,
109 those pallid, jade-faced painters of Tokyo who, through the medium of
118 full-length portrait of a young man of extraordinary personal beauty,
145 from his heavy, opium-tainted cigarette. "Not send it anywhere? My
147 are! You do anything in the world to gain a reputation. As soon as
[all …]
/aosp_15_r20/external/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/
H A Dthe-picture-of-dorian-gray.txt5 re-use it under the terms of the Project Gutenberg License included
69 of the subject-matter of the artist, but the morality of art consists
99 perfume of the pink-flowering thorn.
101 From the corner of the divan of Persian saddle-bags on which he was
103 Wotton could just catch the gleam of the honey-sweet and honey-coloured
107 tussore-silk curtains that were stretched in front of the huge window,
109 those pallid, jade-faced painters of Tokyo who, through the medium of
118 full-length portrait of a young man of extraordinary personal beauty,
145 from his heavy, opium-tainted cigarette. "Not send it anywhere? My
147 are! You do anything in the world to gain a reputation. As soon as
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/scope/
Ddynamic_tests.cpp2 Copyright (c) 2001-2007 Joel de Guzman
18 my_dynamic() : num(init<0>(this)), message(init<1>(this)), real(init<2>(this)) {} in my_dynamic()
22 member3 real; member
31 // (double, real)
46 (clos.real = clos.num / 56.5)(); in main()
47 (clos.message = "Hello " + std::string("World "))(); in main()
53 (clos.real = clos.num * 1e30)(); in main()
56 boost::phoenix::vector3<int, std::string, double> init = {-1, "Direct Init ", 3.14}; in main()
59 (std::cout << clos.message << clos.num << ", " << clos.real << '\n')(); in main()
60 BOOST_TEST(clos.num() == -1); in main()
[all …]
/aosp_15_r20/external/grpc-grpc-java/examples/
H A DREADME.md4 The examples require `grpc-java` to already be built. You are strongly encouraged
14 - [Hello world](src/main/java/io/grpc/examples/helloworld)
16 - [Route guide](src/main/java/io/grpc/examples/routeguide)
18 - [Metadata](src/main/java/io/grpc/examples/header)
20 - [Error handling](src/main/java/io/grpc/examples/errorhandling)
22 - [Compression](src/main/java/io/grpc/examples/experimental)
24 - [Flow control](src/main/java/io/grpc/examples/manualflowcontrol)
26 - [Wait For Ready](src/main/java/io/grpc/examples/waitforready)
28 - [Json serialization](src/main/java/io/grpc/examples/advanced)
30 - <details>
[all …]
/aosp_15_r20/bionic/docs/
H A Dnative_allocator.md6 [SQL Allocation Trace Benchmark](#sql-allocation-trace-benchmark),
7 [Memory Replay Benchmarks](#memory-replay-benchmarks) and
8 [Performance Trace Benchmarks](#performance-trace-benchmarks) should be run.
25 Android supports a few non-standard functions and mallopt controls that
60 When set to non-zero, `mallopt(M_DECAY_TIME, 1)`, an allocator can delay the
91 tests are primarily verifying Android extensions and non-standard behavior
92 of allocation routines such as what happens when a non-power of two alignment
97 adb shell /data/nativetest64/bionic-unit-tests/bionic-unit-tests --gtest_filter="malloc*"
98 adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests --gtest_filter="malloc*"
125 If there are multiple devices connected to the system, use `-s <SERIAL>`
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/types/
Dmod.rs12 //! numbers in SQLite are stored as `INTEGER` (`i64`) or `REAL` (`f64`).
21 //! * `REAL` to integer: always returns an
24 //! * `REAL` to float: casts using `as` operator. Never fails.
28 //! types, so if you store an `i64` in a column with type `REAL` it will be
29 //! stored as an `INTEGER`, not a `REAL`.
33 //! `"%Y-%m-%dT%H:%M:%S.%fZ"`, to store time values as strings. These values
50 fn column_result(value: ValueRef) -> FromSqlResult<Self> {
60 fn to_sql(&self) -> Result<ToSqlOutput> {
104 /// fn insert_null(conn: &Connection) -> Result<usize> {
117 /// 64-bit signed integer
[all …]
/aosp_15_r20/external/skia/platform_tools/libraries/include/
H A Darcore_c_api.h8 * http://www.apache.org/licenses/LICENSE-2.0
23 /// High-Level concepts of ARCore
29 /// - Value types are owned by application. They are created and destroyed using
33 /// - Reference types are owned by ARCore. A reference is acquired by one of the
41 /// - Long-lived objects. These objects persist across frames, possibly for the
46 /// - Transient large data. These objects are usually acquired per-frame and are
52 /// to long-lived objects. This means that the references held by a list are not
53 /// released until either the list is destroyed, or is re-populated by another
57 /// Anchors, which are long-lived objects.
63 /// transformation from object's local coordinate space to the <b>world
[all …]
/aosp_15_r20/external/llvm/docs/HistoricalNotes/
H A D2001-04-16-DynamicCompilation.txt26 the real world, because using such optimization tunes that application
27 to one particular usage pattern, whereas real programs (as opposed to
40 processor may be compiled quite sub-optimally for the current
43 For these reasons, LLVM has been designed from the beginning as a long-term
49 increase in effective system performance for real world environments.
/aosp_15_r20/external/webrtc/rtc_base/
H A Dssl_adapter_unittest.cc4 * Use of this source code is governed by a BSD-style license
38 rtc::Socket* socket = rtc::Thread::Current()->socketserver()->CreateSocket( in CreateSocket()
41 socket->Bind(address); in CreateSocket()
57 // TODO(benwright) - Move to using INSTANTIATE_TEST_SUITE_P instead of using
67 ssl_adapter_->SetMode(ssl_mode_); in SSLAdapterTestDummyClient()
70 // Note: We do this only because we don't have a real certificate. in SSLAdapterTestDummyClient()
72 ssl_adapter_->SetIgnoreBadCert(true); in SSLAdapterTestDummyClient()
74 ssl_adapter_->SignalReadEvent.connect( in SSLAdapterTestDummyClient()
76 ssl_adapter_->SignalCloseEvent.connect( in SSLAdapterTestDummyClient()
81 ssl_adapter_->SetIgnoreBadCert(ignore_bad_cert); in SetIgnoreBadCert()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/oorandom/
DREADME.md16 bump. It will give you `u32` or `u64`, and signed or floating-point
31 * `rand` -- `oorandom` is simpler and has zero choices you need to
33 * `getrandom` -- They solve different problems; `getrandom` gives you
37 * `randomize` -- `randomize` used to be more complicated, but
40 * `rand_pcg` and `rand_core` -- Yes you can take `rand` apart into its
42 all-in-one solution, still deal with the lack of stability in
45 * `nanorand` -- `nanorand` uses the
46 [WyRand](https://github.com/wangyi-fudan/wyhash) PRNG algorithm,
86 data from the real world, you might as well just use any ol' random numbers,
94 pull the tome down, flip it open to a presumably-random page, and
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.2/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0.1/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0-rc1/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.1/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/mockftpserver/tags/2.0.2/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]
/aosp_15_r20/external/elfutils/tests/
H A Drun-readelf-str.sh18 . $srcdir/test-subr.sh
20 # See tests/testfile-dwarf-45.source
21 testfiles testfile-splitdwarf-4 testfile-splitdwarf-5
22 testfiles testfile-hello4.dwo testfile-hello5.dwo
23 testfiles testfile-world4.dwo testfile-world5.dwo
25 # DWARF4 GNU DebugFission No real table header.
27 …e ${abs_top_builddir}/src/readelf --dwarf-skeleton testfile-splitdwarf-4 --debug-dump=str testfile
29 testfile-hello4.dwo:
42 … 20180515 (experimental) -mtune=generic -march=x86-64 -gdwarf-4 -gsplit-dwarf -gno-as-loc-support
56 … 20180515 (experimental) -mtune=generic -march=x86-64 -gdwarf-4 -gsplit-dwarf -gno-as-loc-support
[all …]
/aosp_15_r20/external/mockftpserver/MockFtpServer/src/site/apt/
H A Dfakeftpserver-filesystems.apt1 --------------------------------------------------
3 --------------------------------------------------
17 …simulating a real file system. You are also free to implement your own <<<FileSystem>>> implementa…
20 …not depend on the <real> operating systems or file systems on which <<FakeFtpServer>> is running. …
21 …you can configure and run a <<FakeFtpServer>> with a <<<WindowsFakeFileSystem>>> on top of a <real>
22 …Unix system, or run a <<FakeFtpServer>> with a <<<UnixFakeFileSystem>>> on top of a <real> Windows…
33 * Filenames are case-insensitive
47 * Filenames are case-sensitive
56 manage the files and directories in memory, simulating a real file system.
65 filesystem-specific manner. This property is initialized by concrete subclasses.
[all …]

12345678910>>...45