search for: 2f

Displaying 20 results from an estimated 1517 matches for "2f".

Did you mean: 2af
2019 Nov 30
0
[PATCH nbdkit 2/3] filters: stats: Measure time per operation
...ops, cache_bytes, cache_usecs; static inline double calc_mibps (uint64_t bytes, int64_t usecs) @@ -79,23 +79,23 @@ print_stats (int64_t usecs) fprintf (fp, "elapsed time: %.3f s\n", usecs / USEC); if (pread_ops > 0) - fprintf (fp, "read: %" PRIu64 " ops, %.2f GiB, %.2f MiB/s\n", - pread_ops, pread_bytes / GiB, calc_mibps (pread_bytes, usecs)); + fprintf (fp, "read: %" PRIu64 " ops, %.2f GiB, %.3f s, %.2f MiB/s\n", + pread_ops, pread_bytes / GiB, pread_usecs / USEC, calc_mibps (pread_bytes, pread_usecs)...
2019 Nov 30
5
[PATCH nbdkit 0/3] filters: stats: More useful, more friendly
- Use more friendly output with GiB and MiB/s. - Measure time per operation, providing finer grain stats - Add missing stats for flush I hope that these changes will help to understand and imporve virt-v2v performance. Nir Soffer (3): filters: stats: Show size in GiB, rate in MiB/s filters: stats: Measure time per operation filters: stats: Add flush stats filters/stats/stats.c | 117
2018 Mar 12
2
trashcan on dist. repl. volume with geo-replication
...1818, 0) [2018-03-12 13:37:14.835535] E [master(/brick1/mvol1):784:log_failures] _GMaster: ENTRY FAILED??? data=({'uid': 0, 'gfid': 'c38f75e3-194a-4d22-9094-50ac8f8756e7', 'gid': 0, 'mode': 16877, 'entry': '.gfid/5531bd64-ac50-462b-943e-c0bf1c52f52c/Oracle_VM_VirtualBox_Extension', 'op': 'MKDIR'}, 2, {'gfid_mismatch': False, 'dst': False}) [2018-03-12 13:37:14.835911] E [syncdutils(/brick1/mvol1):299:log_raise_exception] <top>: The above directory failed to sync. Please fix it to proceed further....
2015 Nov 23
3
COFF::IMAGE_REL_AMD64_REL32 relocation overflow when compiling for x86_64
...er information there is for me to gather, could > somebody please help me resolve this? > > > > Many thanks in advance! > > -- > Joshua Gerrard > JUCE Software Developer > > *ROLI’s **award-winning* > <https://na01.safelinks.protection.outlook.com/?url=http%3a%2f%2fwww.telegraph.co.uk%2fluxury%2fdesign%2f31520%2fthe-seaboard-grand-piano-wins-designs-of-the-year-2014-award.html&data=01%7c01%7candya%40microsoft.com%7cdea4217b5ead441afcf508d2f3fc3084%7c72f988bf86f141af91ab2d7cd011db47%7c1&sdata=Ykf6luCK%2f2N%2bWIfoJ2xCjeUPQcAvUo70IsWas%2boRido%3d>*...
2023 Jun 07
1
[External] Re: ctrl -c while executing --progress --size-only --partial results in unhidden but incomplete file
...ial does.? It keeps the partial file.? If it kept the > temporary file with the random file name that would just be a useless > orphaned file. > > On 6/7/23 15:02, Lacey, Nathan via rsync wrote: >> This is a clone from https://usg02.safelinks.protection.office365.us/?url=https%3A%2F%2Fgithub.com%2FWayneD%2Frsync%2Fissues%2F484&data=05%7C01%7Cnathan.lacey%40afs.com%7C10b90a1b4f9d4615db4808db678d21e3%7Ca01f407a85cb4a1698bbf28e6384bd28%7C0%7C0%7C638217628080125247%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sd...
2017 Jun 23
2
suggestion to fix packageDescription() for Windows users
...?readr? in publications use: > #' > #' Hadley Wickham, Jim Hester and Romain Francois (2017). > readr: Read > #' Rectangular Text Data. R package version 1.1.1. > #' https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2FCRAN.R-project.org%2Fpackage%3Dreadr&data=02%7C01%7Cnsosnov%40microsoft.com%7Ccf07101e770643227da008d4ba31aa85%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C636338169899157582&sdata=SnbAtaLB%2BUtjGEZkTXwTqnaJtiF3jQXUDbzD3E5EWRM%3D&reserved=0 > <https://na01.safelinks.prot...
2019 Apr 02
2
CMake support for Opus proposal (in addition to Autotools)
...ers, Jean-Marc On 04/02/2019 01:39 AM, Marcus Asteborg wrote: > Hi, > > > Here is a proposal for adding CMake in addition of Autotools. > > > See the attached patch for changes or the pull request here: > https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fxiph%2Fopus%2Fpull%2F100&amp;data=02%7C01%7C%7C47f897fd8d6e42c8336c08d6b739d457%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636897856328827874&amp;sdata=ulSL9eGKj8cVt6VPufmkod061Ii56r%2FAsFXvOjyWu44%3D&amp;reserved=0 > <https://nam01.safelinks.protection.outlook.co...
2019 Nov 30
0
[PATCH nbdkit 1/3] filters: stats: Show size in GiB, rate in MiB/s
...d time: %.3f s\n", usecs / USEC); if (pread_ops > 0) - fprintf (fp, "read: %" PRIu64 " ops, %" PRIu64 " bytes, %g bits/s\n", - pread_ops, pread_bytes, calc_bps (pread_bytes, usecs)); + fprintf (fp, "read: %" PRIu64 " ops, %.2f GiB, %.2f MiB/s\n", + pread_ops, pread_bytes / GiB, calc_mibps (pread_bytes, usecs)); if (pwrite_ops > 0) - fprintf (fp, "write: %" PRIu64 " ops, %" PRIu64 " bytes, %g bits/s\n", - pwrite_ops, pwrite_bytes, calc_bps (pwrite_bytes,...
2017 Jun 26
0
Model studies in one analysis using treatment as a five level moderator in a meta-regression
...; > Aita| Complications| IMN| 1| 16| 0,0625| > > Dremstrop| Complications| IMN| 17| 44| 0,3863636| > > Wong| Complications| PC| 1| 30| 0,0333333| > > Kumaravel| Complications| PC| 4| 25| 0,16| > > > Dataset on my dropbox: > https://urlsand.esvalabs.com/?u=https%3A%2F%2Fwww.dropbox.com%2Fs%2Fj1urqzr99bt76ip%2FBasics%2520excel%2520file%2520complication%2520and%2520reoperation%2520rate.xlsx%3Fdl%3D0&e=541e9c83&h=065e9ef9&f=y > > Basics excel file complication and reoperation > rate.xlsx<https://urlsand.esvalabs.com/?u=https%3A%2F%2Fwww.dr...
2018 Mar 13
0
trashcan on dist. repl. volume with geo-replication
...018-03-12 13:37:14.835535] E [master(/brick1/mvol1):784:log_failures] > _GMaster: ENTRY FAILED data=({'uid': 0, 'gfid': > 'c38f75e3-194a-4d22-9094-50ac8f8756e7', 'gid': 0, 'mode': 16877, 'entry': > '.gfid/5531bd64-ac50-462b-943e-c0bf1c52f52c/Oracle_VM_VirtualBox_Extension', > 'op': 'MKDIR'}, 2, {'gfid_mismatch': False, 'dst': False}) > [2018-03-12 13:37:14.835911] E [syncdutils(/brick1/mvol1):299:log_raise_exception] > <top>: The above directory failed to sync. Please fix it to proc...
2020 Apr 14
1
Opus CMake build support for Apple frameworks
...ok.com<mailto:xnorpx at outlook.com>> wrote: Hi Simon, CMake 3.14 add support for crosscompiling iOS, tvOS and watchOS https://cmake.org/cmake/help/v3.14/manual/cmake-toolchains.7.html#cross-compiling-for-ios-tvos-or-watchos<https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcmake.org%2Fcmake%2Fhelp%2Fv3.14%2Fmanual%2Fcmake-toolchains.7.html%23cross-compiling-for-ios-tvos-or-watchos&data=02%7C01%7C%7C31d2ce47ca2441fc84a108d7e053f83f%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637224523564086078&sdata=0Bw0x9ZDBfsROuP4Dil7Fb4MPs29DQiV2Y%2F7V1j6zwE%3D&reser...
2007 May 30
0
[PATCH] Exceed maximum number of ioemu''s NIC for VNIF.
Hi All, We tested the PV driver on HVM domain. When ten vif was defined in configuration file for VNIF, the HVM domain was not able to be created. ---------------------------------------------------------- # grep vif RHEL5GA_test.conf vif = [ ''mac=02:17:42:2f:01:11, bridge=xenbr0'', ''mac=02:17:42:2f:03:11, bridge=xenbr2'', ''mac=02:17:42:2f:01:12, bridge=xenbr0'', ''mac=02:17:42:2f:03:12, bridge=xenbr2'', ''mac=02:17:42:2f:01:13, bridge=xenbr0'',...
2012 Jun 24
0
nouveau _BIOS method
...02b0: 08 54 52 54 49 0a 03 08 50 44 42 52 0a 4d 08 44 .TRTI...PDBR.M.D 02c0: 50 50 42 0c 00 80 d9 fe 08 44 50 50 4c 0b 00 80 PPB......DPPL... 02d0: 5b 80 47 4e 56 53 00 0c 18 fe f3 aa 0b a6 01 5b [.GNVS.........[ 02e0: 81 40 3b 47 4e 56 53 10 4f 53 59 53 10 53 4d 49 .@;GNVS.OSYS.SMI 02f0: 46 08 50 52 4d 30 08 50 52 4d 31 08 53 43 49 46 F.PRM0.PRM1.SCIF 0300: 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 4b 46 08 .PRM2.PRM3.LCKF. 0310: 50 52 4d 34 08 50 52 4d 35 08 50 38 30 44 20 4c PRM4.PRM5.P80D L 0320: 49 44 53 08 50 57 52 53 08 44 42 47 53 08 54 48 IDS.PWRS.DBGS.TH 0330: 4...
2015 Oct 19
2
[cfe-dev] Orc Windows C++
...imedyldcoff.cpp, line 57 + 0x14 byte(s) >> >> 0x00007FF65EA1B411 (0x00000079E68EF338 0x00000079E68EF708 0x00000079E6A4AC40 0xCCCCCCCCCCCCCCCC), llvm::RuntimeDyld::loadObject() + 0x221 bytes(s), c:\llvm\llvm\lib\executionengine\runtimedyld\runtime >> >> dyld.cpp, line 928 + 0x2F byte(s) >> >> 0x00007FF65E6781A9 (0x00007FF65FB9AB70 0x00000079E6A45150 0x00007FF65F177408 0xCCCCCCCCCCCCCCCC), executeInput() + 0x419 bytes(s), c:\llvm\llvm\tools\llvm-rtdyld\llvm-rtdyld.cpp, line 365 + 0x1D byte( >> >> s) >> >> 0x00007FF65E67A885 (0x00007FF6000...
2017 Jun 24
0
suggestion to fix packageDescription() for Windows users
...?readr? in publications use: > #' > #' Hadley Wickham, Jim Hester and Romain Francois (2017). > readr: Read > #' Rectangular Text Data. R package version 1.1.1. > #' https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2FCRAN.R-project.org%2Fpackage%3Dreadr&data=02%7C01%7Cnsosnov%40microsoft.com%7Ccf07101e770643227da008d4ba31aa85%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C636338169899157582&sdata=SnbAtaLB%2BUtjGEZkTXwTqnaJtiF3jQXUDbzD3E5EWRM%3D&reserved=0 > <https://na01.safelinks.prot...
2018 Jan 19
2
geo-replication command rsync returned with 3
...changeloghistory change detection mode [2018-01-19 14:23:23.58454] I [master(/brick1/mvol1):367:__init__] _GMaster: using 'rsync' as the sync engine [2018-01-19 14:23:25.123959] I [master(/brick1/mvol1):1249:register] _GMaster: xsync temp directory: /var/lib/misc/glusterfsd/mvol1/ssh%3A%2F%2Froot%4082.199.131.135%3Agluster%3A%2F%2F127.0.0.1%3Asvol1/0a6056eb995956f1dc84f32256dae472/xsync [2018-01-19 14:23:25.124351] I [resource(/brick1/mvol1):1528:service_loop] GLUSTER: Register time: 1516371805 [2018-01-19 14:23:25.127505] I [master(/brick1/mvol1):510:crawlwrap] _GMaster: primary...
2017 Nov 22
3
Tibble o data.table?
..., son cada vez más los paquetes que se quieren hacer compatibles con este esquema "tidyverse" ("tidytext", "tidyquant", hasta el mismo "sparklyr"). Gracias, Carlos Ortega www.qualityexcellence.es<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.qualityexcellence.es&data=02%7C01%7Cj.para.fernandez%40hotmail.com%7C6c89c3a810f24aebef8408d531ec3e03%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636469813071210024&sdata=7xIo1ziqT0P2%2FjCSbXT%2Fsl4WqKElhFhTUOqcny7riR0%3D&reserved=0><https://nam04.safelinks.protection.outlo...
2017 Jun 26
1
Model studies in one analysis using treatment as a five level moderator in a meta-regression
...| 16| 0,0625| >> >> Dremstrop| Complications| IMN| 17| 44| 0,3863636| >> >> Wong| Complications| PC| 1| 30| 0,0333333| >> >> Kumaravel| Complications| PC| 4| 25| 0,16| >> >> >> Dataset on my dropbox: https://urlsand.esvalabs.com/?u=https%3A%2F%2Fwww.dropbox.com%2Fs%2Fj1urqzr99bt76ip%2FBasics%2520excel%2520file%2520complication%2520and%2520reoperation%2520rate.xlsx%3Fdl%3D0&e=541e9c83&h=065e9ef9&f=y >> >> Basics excel file complication and reoperation rate.xlsx<https://urlsand.esvalabs.com/?u=https%3A%2F%2Fwww....
2019 Apr 02
2
CMake support for Opus proposal (in addition to Autotools)
...2/2019 01:39 AM, Marcus Asteborg wrote: >> Hi, >> >> >> Here is a proposal for adding CMake in addition of Autotools. >> >> >> See the attached patch for changes or the pull request here: >> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fxiph%2Fopus%2Fpull%2F100&amp;data=02%7C01%7C%7C83448751302e4bd85a8908d6b79a58ab%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636898270884177946&amp;sdata=Ed139jcES0woXrPabecRjGq7vGrnvpZJkRBQ8ty86Ys%3D&amp;reserved=0 >> <https://eur01.safelinks.protection.outlook....
2001 Mar 16
0
Some Users Work - Some don't (fwd)
...dump_data(2926) [030] 72 75 65 2E 20 20 45 6E 74 65 72 20 61 20 76 61 rue. En ter a va [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [040] 6C 75 65 20 69 6E 20 74 68 69 73 20 66 69 65 6C lue in t his fiel [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [050] 64 2E 0D 0A 30 33 2F 31 33 2F 32 30 30 31 20 34 d...03/1 3/2001 4 [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [060] 3A 34 38 3A 32 36 20 50 4D 20 52 52 20 44 42 43 :48:26 P M RR DBC [2001/03/16 03:38:06, 10] lib/util.c:dump_data(2926) [070] 6C 6F 73 65 41 6C 6C 20 45 72 72 6F 72 20 37 35 loseAll Err...