OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:permits
(Results
426 - 450
of
1053
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/binutils-2.25/libiberty/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/gcc-4.8.3/
COPYING.LIB
79
General Public License therefore
permits
such linking only if the
81
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/gcc-4.8.3/gcc/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/gcc-4.8.3/libiberty/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/gcc-4.8.3/libjava/libltdl/
COPYING.LIB
78
General Public License therefore
permits
such linking only if the
80
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/gcc-4.8.3/libquadmath/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/licenses/mingw-w64-svn-r5861/mingw-w64-headers/direct-x/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/
COPYING.LIB
79
General Public License therefore
permits
such linking only if the
81
Public License
permits
more lax criteria for linking other code with
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/
COPYING.LIB
79
General Public License therefore
permits
such linking only if the
81
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/jfreechart/
NOTICE
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
NOTICE
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
NOTICE
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
NOTICE
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/m2/repository/net/sf/trove4j/trove4j/1.1/
NOTICE
86
General Public License therefore
permits
such linking only if the
88
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/m2/repository/xom/
license.xhtml
92
General Public License therefore
permits
such linking only if the
94
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/common/spantable/
NOTICE
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/linux-x86/swt/about_files/
lgpl-v21.txt
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/prebuilts/tools/linux-x86_64/swt/about_files/
lgpl-v21.txt
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
/toolchain/binutils/binutils-2.25/libiberty/
COPYING.LIB
77
General Public License therefore
permits
such linking only if the
79
Public License
permits
more lax criteria for linking other code with
copying-lib.texi
82
General Public License therefore
permits
such linking only if the
84
Public License
permits
more lax criteria for linking other code with
/tools/external/fat32lib/
NOTICE
33
When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore
permits
such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License
permits
more lax criteria for linking other code with the library.
/external/ImageMagick/ImageMagick/script/
architecture.html
93
<p>Given the varied image formats and image processing requirements, we implemented the ImageMagick <a href="architecture.php#cache">pixel cache</a> to provide convenient sequential or parallel access to any pixel on demand anywhere inside the image region (i.e. <a href="architecture.php#authentic-pixels">authentic pixels</a>) and from any image in a sequence. In addition, the pixel cache
permits
access to pixels outside the boundaries defined by the image (i.e. <a href="architecture.php#virtual-pixels">virtual pixels</a>).</p>
268
<dd>maximum number of open pixel cache files. When this limit is exceeded, any subsequent pixels cached to disk are closed and reopened on demand. This behavior
permits
a large number of images to be accessed simultaneously on disk, but without a speed penalty due to repeated open/close calls.</dd>
341
<p>GetVirtualPixels(), GetAuthenticPixels(), QueueAuthenticPixels(), and SyncAuthenticPixels(), from the MagickCore API, can only deal with one pixel cache area per image at a time. Suppose you want to access the first and last scanline from the same image at the same time? The solution is to use a <var>cache view</var>. A cache view
permits
you to access as many areas simultaneously in the pixel cache as you require. The cache view <a href="../api/cache-view.php">methods</a> are analogous to the previous methods except you must first open a view and close it when you are finished with it. Here is a snippet of MagickCore code that
permits
us to access the first and last pixel row of the image simultaneously:</p>
387
<p>The ImageMagick Q16 version of ImageMagick
permits
you to read and write 16 bit images without scaling but the pixel cache consumes twice as many resources as the Q8 version. If your system has constrained memory or disk resources, consider the Q8 version of ImageMagick. In addition, the Q8 version typically executes faster than the Q16 version.</p>
389
<p>A great majority of image formats and algorithms restrict themselves to a fixed range of pixel values from 0 to some maximum value, for example, the Q16 version of ImageMagick permit intensities from 0 to 65535. High dynamic-range imaging (HDRI), however,
permits
a far greater dynamic range of exposures (i.e. a large difference between light and dark areas) th (…)
[
all
...]
/external/ImageMagick/www/
architecture.html
97
<p>Given the varied image formats and image processing requirements, we implemented the ImageMagick <a href="architecture.html#cache">pixel cache</a> to provide convenient sequential or parallel access to any pixel on demand anywhere inside the image region (i.e. <a href="architecture.html#authentic-pixels">authentic pixels</a>) and from any image in a sequence. In addition, the pixel cache
permits
access to pixels outside the boundaries defined by the image (i.e. <a href="architecture.html#virtual-pixels">virtual pixels</a>).</p>
272
<dd>maximum number of open pixel cache files. When this limit is exceeded, any subsequent pixels cached to disk are closed and reopened on demand. This behavior
permits
a large number of images to be accessed simultaneously on disk, but without a speed penalty due to repeated open/close calls.</dd>
351
<p>GetVirtualPixels(), GetAuthenticPixels(), QueueAuthenticPixels(), and SyncAuthenticPixels(), from the MagickCore API, can only deal with one pixel cache area per image at a time. Suppose you want to access the first and last scanline from the same image at the same time? The solution is to use a <var>cache view</var>. A cache view
permits
you to access as many areas simultaneously in the pixel cache as you require. The cache view <a href="api/cache-view.html">methods</a> are analogous to the previous methods except you must first open a view and close it when you are finished with it. Here is a snippet of MagickCore code that
permits
us to access the first and last pixel row of the image simultaneously:</p>
[
all
...]
/external/avahi/docs/
utilities-avahi1.svg
354
rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/"><cc:
permits
355
rdf:resource="http://web.resource.org/cc/Reproduction" /><cc:
permits
359
rdf:resource="http://web.resource.org/cc/CommercialUse" /><cc:
permits
[
all
...]
utilities-avahi2.svg
360
rdf:about="http://creativecommons.org/licenses/by-nc/2.0/"><cc:
permits
361
rdf:resource="http://web.resource.org/cc/Reproduction" /><cc:
permits
365
rdf:resource="http://web.resource.org/cc/CommercialUse" /><cc:
permits
[
all
...]
Completed in 653 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>