/third_party/grpc/test/cpp/microbenchmarks/ |
D | callback_unary_ping_pong.h | 42 std::mutex* mu, std::condition_variable* cv) { in SendCallbackUnaryPingPong() argument 47 [state, cli_ctx, request, response, stub_, done, mu, cv](Status s) { in SendCallbackUnaryPingPong() 51 new (cli_ctx) ClientContext(); in SendCallbackUnaryPingPong() 53 done, mu, cv); in SendCallbackUnaryPingPong() 55 std::lock_guard<std::mutex> l(*mu); in SendCallbackUnaryPingPong() 67 std::unique_ptr<Fixture> fixture(new Fixture(&service)); in BM_CallbackUnaryPingPong() 80 std::mutex mu; in BM_CallbackUnaryPingPong() local 86 stub_.get(), &done, &mu, &cv); in BM_CallbackUnaryPingPong() 88 std::unique_lock<std::mutex> l(mu); in BM_CallbackUnaryPingPong()
|
D | callback_streaming_ping_pong.h | 77 std::unique_lock<std::mutex> l(mu); in OnDone() 85 new (cli_ctx_) ClientContext(); in StartNewRpc() 93 std::unique_lock<std::mutex> l(mu); in Await() 116 std::mutex mu; variable 126 std::unique_ptr<Fixture> fixture(new Fixture(&service)); in BM_CallbackBidiStreaming()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | mutex.h | 118 explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); } in MutexLock() argument 132 explicit MutexLockMaybe(Mutex *mu) : in MutexLockMaybe() argument 133 mu_(mu) { if (this->mu_ != nullptr) { this->mu_->Lock(); } } in MutexLockMaybe() 153 result = new T(); in Get()
|
/third_party/grpc/doc/core/ |
D | combiner-explainer.md | 7 mu.lock() 9 mu.unlock() 17 mu.lock() 19 mu.unlock() 21 mutex mu; 29 than one do_stuff at once and they will run under a common `mu`. 34 Instead, get a new property:
|
/third_party/python/Doc/library/ |
D | random.rst | 39 Optionally, a new generator can supply a :meth:`~Random.getrandbits` method --- this 218 To shuffle an immutable sequence and return a new shuffled list, use 236 Returns a new list containing elements from the population while leaving the 327 .. function:: gauss(mu, sigma) 329 Normal distribution, also called the Gaussian distribution. *mu* is the mean, 341 .. function:: lognormvariate(mu, sigma) 344 distribution, you'll get a normal distribution with mean *mu* and standard 345 deviation *sigma*. *mu* can have any value, and *sigma* must be greater than 349 .. function:: normalvariate(mu, sigma) 351 Normal distribution. *mu* is the mean, and *sigma* is the standard deviation. [all …]
|
D | statistics.rst | 385 .. function:: pstdev(data, mu=None) 396 .. function:: pvariance(data, mu=None) 404 If the optional second argument *mu* is given, it is typically the mean of 424 optional second argument *mu* to avoid recalculation: 428 >>> mu = mean(data) 429 >>> pvariance(data, mu) 526 :func:`pvariance` function as the *mu* parameter to get the variance of a 690 .. class:: NormalDist(mu=0.0, sigma=1.0) 692 Returns a new *NormalDist* object where *mu* represents the `arithmetic 731 Makes a normal distribution instance with *mu* and *sigma* parameters [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/ |
D | lv.txt | 348 new{"nevaru"} 353 nl_BE{"flāmu"} 424 se{"ziemeļsāmu"} 440 sma{"dienvidsāmu"} 441 smj{"Luleo sāmu"} 442 smn{"Inari sāmu"} 443 sms{"skoltsāmu"}
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | lv.txt | 351 new{"nevaru"} 356 nl_BE{"flāmu"} 426 se{"ziemeļsāmu"} 442 sma{"dienvidsāmu"} 443 smj{"Luleo sāmu"} 444 smn{"Inari sāmu"} 445 sms{"skoltsāmu"}
|
/third_party/icu/icu4c/source/data/lang/ |
D | lv.txt | 351 new{"nevaru"} 356 nl_BE{"flāmu"} 426 se{"ziemeļsāmu"} 442 sma{"dienvidsāmu"} 443 smj{"Luleo sāmu"} 444 smn{"Inari sāmu"} 445 sms{"skoltsāmu"}
|
/third_party/e2fsprogs/po/ |
D | cs.po | 273 msgstr "Ckoliduje s jiným blokem systému souborů" 393 msgstr "<Iuzel zavaděče systému>" 883 "Velikost systému souborů (podle superbloku) je %b bloků\n" 994 "Superblok žurnálu systému souborů je neznámého typu %N (nepodporováno).\n" 1178 "Do souborového systému přidávám nápovědu pro dirhash.\n" 1379 msgstr "Bitmapa bloků skupiny %g v %b koliduje s jiným blokem systému souborů.\n" 1384 msgstr "Bitmapa iuzlů skupiny %g v %b koliduje s jiným blokem systému souborů.\n" 1389 msgstr "Tabulka iuzlů skupiny %g v %b koliduje s jiným blokem systému souborů.\n" 1419 msgstr "%B (%b) se překrývá s metadaty systému souborů v iuzlu %i. " 1721 msgstr "Iuzel %i má nastaven příznak INDEX_FL na systému souborů bez podpory htree.\n" [all …]
|
/third_party/openGLES/extensions/QCOM/ |
D | QCOM_shading_rate.txt | 40 provides new built-in variables that allow fragment shaders to determine the 101 Modify the definitions of (mu, mv, mw): 104 mu = max | ----- , ----- | 116 mu = max | ---- * sx , ---- * sy | 146 …The contents of Section 13.4.1, Sample Shading, p. 355 is moved to the new Section 13.X.3, "Sample… 148 Add new section 13.X before Section 13.5, Points, p. 355 289 (insert a new paragraph after the first paragraph of the section)
|
/third_party/python/Lib/test/ |
D | test_statistics.py | 1020 new = list(statistics._fail_neg(values)) 1021 self.assertEqual(values, new) 2138 self.assertEqual(self.func(data, mu=0.5), 6.5) 2551 mu, sigma = 10_000, 3.0 2552 X = NormalDist(mu, sigma) 2559 self.assertTrue(mu - sigma*8 <= xbar <= mu + sigma*8) 2865 def __init__(self, mu, sigma, n): argument 2866 super().__init__(mu, sigma) 2876 def __init__(self, mu, sigma): argument 2877 self.mu = mu
|
/third_party/boost/libs/math/doc/overview/ |
D | faq.qbk | 10 … representation like P(X=k|n, p) or ; in a common representation of pdf f(x; [mu][sigma][super 2]). 14 # I'm a user of [@http://support.sas.com/rnd/app/da/new/probabilityfunctions.html New SAS Functions… 37 You may find it convenient to create a new one adding \boost-latest_release; 152 #['How do I see or report bugs and features, and request new functions?] 158 …[@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&…
|
/third_party/tzdata/ |
D | africa | 235 # For lack of better info, assume the new rule is last Thursday in August. 648 # http://economicdevelopment.gov.mu/portal/site/Mainhomepage/menuitem.a42b24128104d9845dabddd154508… 660 # http://www.lexpress.mu/display_article.php?news_id=111216 662 # than previously announced (2008-11-01 to 2009-03-31). The new start 663 # date is 2008-10-26 at 02:00 and the new end date is 2009-03-27 (no time 685 # http://www.gov.mu/portal/site/pmosite/menuitem.4ca0efdee47462e7440a600248a521ca/?content_id=4728c… 702 # http://www.gov.mu/portal/goc/assemblysite/file/bill2708.pdf 710 # http://lexpress.mu/Story/3398~Beebeejaun---Les-objectifs-d-%C3%A9conomie-d-%C3%A9nergie-de-l-heur… 908 # before it was going to end. There is a new decree (2.13.781) for 1278 # https://www.timeanddate.com/news/time/namibia-new-time-zone.html [all …]
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 21 * If you want to draw your new text to the attention of the 47 This article explains the new features in Python 3.8, compared to 3.7. 76 There is new syntax ``:=`` that assigns values to variables as part of a larger 121 There is a new function parameter syntax ``/`` to indicate that some 194 The new :envvar:`PYTHONPYCACHEPREFIX` setting (also available as 218 environment variable, can be set using the new :option:`./configure 234 To embed Python into an application, a new ``--embed`` option must be passed to 296 The :pep:`587` adds a new C API to configure the Python Initialization 337 internal structures. ``PyInterpreterState.config`` becomes the new 460 objects are immutable, a new code object needs to be created, one [all …]
|
D | 3.2.rst | 27 * If you want to draw your new text to the attention of the 51 This article explains the new features in Python 3.2 as compared to 3.1. It 89 A new module for command line parsing, :mod:`argparse`, was introduced to 236 Code for creating and managing concurrency is being collected in a new top-level 247 The primary offering of the new module is a pair of executor classes for 307 "mymodule.unladen10.pyc". And to prevent all of these new files from 311 Aside from the filenames and target directories, the new scheme has a few 330 filename. Instead, use the new functions in the :mod:`imp` module: 338 reflect the new naming convention and target directory. The command-line 339 invocation of *compileall* has new options: ``-i`` for [all …]
|
/third_party/pulseaudio/po/ |
D | cs.po | 380 msgid "Failed to allocate new dl loader." 858 "ALSA woke us up to write new data to the device, but there was actually " 875 "ALSA woke us up to write new data to the device, but there was actually " 892 "ALSA woke us up to read new data from the device, but there was actually " 909 "ALSA woke us up to read new data from the device, but there was actually " 1151 #: src/modules/module-tunnel-sink-new.c:307 1152 #: src/modules/module-tunnel-source-new.c:305 1157 #: src/modules/module-tunnel-sink-new.c:544 1158 #: src/modules/module-tunnel-source-new.c:540 1901 " -s, --server=SERVER Název serveru, ke kterému se má " [all …]
|
/third_party/boost/libs/pool/doc/ |
D | pool.qbk | 49 [template mu[]'''μ'''] [/ � Greek small letter mu] 236 { return new (std::nothrow) char[bytes]; } 598 If you have ever called malloc or new, then you have used dynamic memory allocation. 728 Each memory block, by default, is allocated using `new[]`, 730 It is the use of `new[]` that allows us to guarantee alignment. 735 (specifically, an array of characters) through `operator new[]`. 749 [h5 Predicate 2: Any block of memory allocated as an array of characters through `operator new[]` 760 the difference between the result of the new-expression and 980 [[Store()] [not used] [empty()] [Constructs a new Store]] 1137 [@https://svn.boost.org/trac/boost/query?status=assigned&status=new&status=reopened&component=pool&… [all …]
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a1.rst | 751 issue, but the new parser threw a :exc:`SyntaxError` for valid input due to 783 Fix possible segfault in the new PEG parser when parsing f-string containing 793 Fixed a possible segfault in the new PEG parser when producing error 804 Fix invalid memory read in the new parser when checking newlines in string 814 Fix memory leak in when parsing f-strings in the new parser. Patch by Pablo 834 Allow overriding :data:`sys.platlibdir` via a new :envvar:`PYTHONPLATLIBDIR` 917 Support the "-d" debug flag in the new PEG parser. Patch by Pablo Galindo 1046 with 256 colors, and add the new function 1170 :data:`types.NoneType` have been reintroduced, providing a new set of types 1609 ``recv_into`` instead of ``recv``, thus not creating a new buffer for each [all …]
|
/third_party/gettext/gettext-tools/tests/ |
D | mm-viet.comp.po | 197 msgid "%s: could not create new data object: %s" 431 msgstr "Bạn thật sự muốn xoá bỏ thực thể đã chọn không?" 789 msgid "%s: could not get new mime stream." 1857 "Bạn có chắc muốn thực hiện không?" 2050 msgstr "Không tìm thấy đường dẫn: bạn có muốn gõ nó vậy?" 2074 msgstr "Bạn có muốn sửa đường dẫn đó chứ?" 2276 #. * "Shown mailbox: %s with %d messages, %ld new". 2279 msgid "%ld new" 2280 msgid_plural "%ld new" 2395 "Bạn có muốn gởi thông báo này không?" [all …]
|
D | ChangeLog.0 | 682 * msgcat-6: Update expected output to match new msgcat behaviour. 883 * Makefile.am (TESTS): Add the new tests. 1145 error message of new msgfmt. 1266 * Makefile.in (xgettext-9): Add new test for xgettext. This one 1290 * xg-test8.ok, xg-test8.in.po: Adopt for new implementation of 1330 mm-test2.in2, mm-test2.ok, mu-test1.in, xg-test4.in, xg-test4.ok, 1340 * xg-test2.ok.po: Adapt for new xgettext. 1384 (TESTSRCS, OKFILES): Add files for new tests.
|
/third_party/gstreamer/gstplugins_base/po/ |
D | cs.po | 88 msgstr "Schází prvek „%s“ – zkontrolujte prosím instalaci systému GStreamer." 348 msgstr "Prvek systému GStreamer %s" 595 msgid "Clock lost, selecting a new one\n"
|
/third_party/node/doc/api/ |
D | cli.md | 182 Make built-in language features like `eval` and `new Function` that generate 389 …sweep 130.6 (147.8) -> 130.5 (147.8) MB, 27.4 / 0.0 ms (average mu = 0.126, current mu = 0.034) a… 390 …sweep 130.6 (147.8) -> 130.6 (147.8) MB, 18.8 / 0.0 ms (average mu = 0.088, current mu = 0.031) a…
|
/third_party/boost/libs/accumulators/doc/ |
D | accumulators.qbk | 72 This section describes how to use the Boost.Accumulators framework to create new 457 This section describes how to extend the Accumulators Framework by defining new accumulators, 463 All new accumulators must satisfy the [link 1579 double mu = 1.; 1581 boost::normal_distribution<> mean_sigma(mu,1); 3325 double mu = 1.; 3329 boost::normal_distribution<> mean_sigma_narrow(mu,sigma_narrow); 3341 …acc(sample, weight = std::exp(0.5 * (sample - mu) * (sample - mu) * ( 1./sigma_narrow/sigma_narrow… 3342 …acc_dens(sample, weight = std::exp(0.5 * (sample - mu) * (sample - mu) * ( 1./sigma_narrow/sigma_n… 3343 …acc_cdist(sample, weight = std::exp(0.5 * (sample - mu) * (sample - mu) * ( 1./sigma_narrow/sigma_…
|
/third_party/node/tools/ |
D | lint-md.mjs | 36 …throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequire… 229 throw new Error('missing channels property: ' + model); 233 throw new Error('missing channel labels property: ' + model); 237 throw new Error('channel and label counts mismatch: ' + model); 1273 const codes = new Map(); 1562 const ESCAPES$1 = new Map([ 1602 throw new Error(`Invalid Chalk template style argument: ${chunk} (in style '${name}')`); 1645 throw new Error(`Unknown Chalk style: ${styleName}`); 1670 throw new Error('Found extraneous } in Chalk template literal'); 1685 throw new Error(errMessage); [all …]
|