Home
last modified time | relevance | path

Searched full:work (Results 1 – 25 of 9842) sorted by relevance

12345678910>>...394

/third_party/cups/examples/
Dtestfile.txt1 All work and no play makes Johhny a dull boy. All work and no
2 play makes Johhny a dull boy. All work and no play makes Johhny
3 a dull boy. All work and no play makes Johhny a dull boy. All
4 work and no play makes Johhny a dull boy. All work and no play
5 makes Johhny a dull boy. All work and no play makes Johhny a
6 dull boy. All work and no play makes Johhny a dull boy. All
7 work and no play makes Johhny a dull boy. All work and no play
8 makes Johhny a dull boy. All work and no play makes Johhny a
9 dull boy. All work and no play makes Johhny a dull boy. All
10 work and no play makes Johhny a dull boy. All work and no play
[all …]
/third_party/tex-hyphen/
DLICENSE-LPPL1.317 You may use this license for any work of which you hold the copyright
19 suitable if your work is TeX-related (such as a LaTeX package), but
20 it is written in such a way that you can use it even if your work is
27 This license gives conditions under which a work may be distributed
29 that work may be distributed.
32 the freedom to make and distribute modified versions of your work
35 that work. If you do not see how to achieve your goal while
45 `Work'
46 Any work being distributed under this License.
48 `Derived Work'
[all …]
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dworkqueue.h53 * Define a usable work priority.
61 * Define a usable work priority.
70 * Define a usable work priority.
106 * Work structure.
107 * A work is a node in a workqueue.
110 atomic_long_t data; /**< Input parameter of the work handling function. */
111 struct list_head entry; /**< Pointer to a doubly linked list of a work. */
112 work_func_t func; /**< Work handling function. */
113 unsigned int work_status; /**< Work status. */
122 * A delayed_work is a work that is delayed to be mounted to a workqueue.
[all …]
/third_party/typescript/tests/baselines/reference/tsserver/cachingFileSystemInformation/
DwatchDirectories-for-config-file-with-case-insensitive-file-system.js3 //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts]
6 //// [/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts]
22 //// [/Users/someuser/work/applications/frontend/tsconfig.json]
32 Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils
33 …0] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file n…
34 Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/…
35 …dded:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project:…
36 Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : {
38 "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts",
39 "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts"
[all …]
DwatchDirectories-for-config-file-with-case-sensitive-file-system.js3 //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts]
6 //// [/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts]
22 //// [/Users/someuser/work/applications/frontend/tsconfig.json]
32 Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils
33 …0] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file n…
34 Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/…
35 …dded:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project:…
36 Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : {
38 "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts",
39 "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts"
[all …]
/third_party/typescript/tests/baselines/reference/
DtypeFromPropertyAssignment14.symbols3 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
5 === tests/cases/conformance/salsa/work.js ===
7 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
8 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
9 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
12 >Outer.Inner.prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28))
13 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
14 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
15 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
16 >prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28))
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Ddes-internal.c320 u32 work, right, leftt; in desfunc() local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
328 leftt ^= (work << 4); in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
332 leftt ^= (work << 16); in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
335 leftt ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Ddes-internal.c320 u32 work, right, leftt; in desfunc() local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
328 leftt ^= (work << 4); in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
332 leftt ^= (work << 16); in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
335 leftt ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
[all …]
/third_party/openhitls/config/macro_config/
Dhitls_config_check.h26 #error "[HiTLS] The tls-provider must work with crypto-provider"
30 #error "[HiTLS] Integrity check must work with TLS13"
35 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_GCM_SHA256 must work with sha256, gcm, aes"
40 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_256_GCM_SHA384 must work with sha384, gcm, aes"
45 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_CHACHA20_POLY1305_SHA256 must work with sha256, chacha…
51 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_CCM_SHA256 must work with sha256, ccm, aes"
56 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_CCM_8_SHA256 must work with sha256, ccm, aes"
62 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_128_CBC_SHA must work with sha1, cbc, aes…
68 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_256_CBC_SHA must work with sha1, cbc, aes…
74 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_128_CBC_SHA256 must work with sha256, cbc…
[all …]
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
Dlinux_workqueue.c53 * Obtain the first work in a workqueue.
78 INIT_WORK(&(dwork->work), func); in linux_init_delayed_work()
82 dwork->work.work_status = 0; in linux_init_delayed_work()
200 struct work_struct *work = NULL; in RunWorkqueue() local
207 work = worklist_entry(cwq->worklist.next, struct work_struct, entry); in RunWorkqueue()
208 work->work_status |= WORK_STRUCT_RUNNING; in RunWorkqueue()
210 func = work->func; in RunWorkqueue()
212 cwq->current_work = work; in RunWorkqueue()
214 func(work); in RunWorkqueue()
218 if (work->work_status & WORK_STRUCT_RUNNING) { in RunWorkqueue()
[all …]
/third_party/rust/rust/src/etc/third-party/
DCOPYING319 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/third_party/tex-hyphen/webpage/hyphenator_3.1.0/
DCOPYING.txt19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/
DLICENSE19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/third_party/ffmpeg/
DCOPYING.GPLv319 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/third_party/json/LICENSES/
DGPL-3.0-only.txt12 …ral Public License for most of our software; it applies also to any other work released this way b…
38 “The Program” refers to any copyrightable work licensed under this License. Each licensee is addres…
40work means to copy from or adapt all or part of the work in a fashion requiring copyright permissi…
42 A “covered work” means either the unmodified Program or a work based on the Program.
44 To “propagate” a work means to do anything with it that, without permission, would make you directl…
46 To “convey” a work means any kind of propagation that enables other parties to make or receive copi…
48 … there is no warranty for the work (except to the extent that warranties are provided), that licen…
51 …ce code” for a work means the preferred form of the work for making modifications to it. “Object c…
55work include anything, other than the work as a whole, that (a) is included in the normal form of …
57work in object code form means all the source code needed to generate, install, and (for an execut…
[all …]
/third_party/elfutils/
DCOPYING19 any other work released this way by its authors. You can apply it to
80 "The Program" refers to any copyrightable work licensed under this
84 To "modify" a work means to copy from or adapt all or part of the work
86 exact copy. The resulting work is called a "modified version" of the
87 earlier work or a work "based on" the earlier work.
89 A "covered work" means either the unmodified Program or a work based
92 To "propagate" a work means to do anything with it that, without
99 To "convey" a work means any kind of propagation that enables other
106 tells the user that there is no warranty for the work (except to the
108 work under this License, and how to view a copy of this License. If
[all …]
/third_party/rust/crates/cxx/gen/lib/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/rust/rust/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/rust/crates/serde/serde_derive_internals/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/jsframework/
DLICENSE36 "Work" shall mean the work of authorship, whether in Source or
38 copyright notice that is included in or attached to the work
41 "Derivative Works" shall mean any work, whether in Source or Object
42 form, that is based on (or derived from) the Work and for which the
44 represent, as a whole, an original work of authorship. For the purposes
47 the Work and Derivative Works thereof.
49 "Contribution" shall mean any work of authorship, including
50 the original version of the Work and any modifications or additions
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/typescript/
DLICENSE23Work" shall mean the work of authorship, whether in Source or Object form, made available under th…
25work, whether in Source or Object form, that is based on (or derived from) the Work and for which …
27work of authorship, including the original version of the Work and any modifications or additions …
29 …of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31 …ks of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative…
33Work, where such license applies only to those patent claims licensable by such Contributor that a…
35 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof …
37 You must give any other recipients of the Work or Derivative Works a copy of this License; and
41 …t, patent, trademark, and attribution notices from the Source form of the Work, excluding those no…
43Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You…
[all …]
/third_party/rust/crates/syn/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/rust/crates/cxx/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/rust/crates/serde/
DLICENSE-APACHE35 "Work" shall mean the work of authorship, whether in Source or
37 copyright notice that is included in or attached to the work
40 "Derivative Works" shall mean any work, whether in Source or Object
41 form, that is based on (or derived from) the Work and for which the
43 represent, as a whole, an original work of authorship. For the purposes
46 the Work and Derivative Works thereof.
48 "Contribution" shall mean any work of authorship, including
49 the original version of the Work and any modifications or additions
50 to that Work or Derivative Works thereof, that is intentionally
51 submitted to Licensor for inclusion in the Work by the copyright owner
[all …]
/third_party/skia/m133/third_party/etc1/
DLICENSE36 "Work" shall mean the work of authorship, whether in Source or Object
38 notice that is included in or attached to the work (an example is
41 "Derivative Works" shall mean any work, whether in Source or Object
42 form, that is based on (or derived from) the Work and for which the
44 represent, as a whole, an original work of authorship. For the purposes
47 the Work and Derivative Works thereof.
49 "Contribution" shall mean any work of authorship, including the original
50 version of the Work and any modifications or additions to that Work or
52 for inclusion in the Work by the copyright owner or by an individual or
59 and improving the Work, but excluding communication that is conspicuously
[all …]

12345678910>>...394