Home
last modified time | relevance | path

Searched refs:Indexing (Results 1 – 25 of 3865) sorted by relevance

12345678910>>...155

/dports/shells/elvish/elvish-0.17.0/pkg/parse/
H A Dpprint_test.go16 Compound/Indexing/Primary ExprCtx=CmdExpr Type=Bareword LegacyLambda=false Value="ls"
18 Indexing ExprCtx=NormalExpr
21 Indexing ExprCtx=NormalExpr
44 Compound/Indexing/Primary "ls" 0-2
47 Indexing "$x[0]" 3-8
50 Array/Compound/Indexing/Primary "0" 6-7
52 Indexing "$y[1]" 8-13
55 Array/Compound/Indexing/Primary "1" 11-12
59 Compound/Indexing/Primary "echo" 14-18
61 Compound/Indexing/Primary "done" 19-23
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/lens-5.0.1/src/Control/Lens/Internal/
H A DIndexed.hs29 , Indexing(..)
242 newtype Indexing f a = Indexing { runIndexing :: Int -> (Int, f a) } constructor
245 fmap f (Indexing m) = Indexing $ \i -> case m i of
250 Indexing mf <.> Indexing ma = Indexing $ \i -> case mf i of function
256 pure x = Indexing $ \i -> (i, pure x)
258 Indexing mf <*> Indexing ma = Indexing $ \i -> case mf i of function
264 contramap f (Indexing m) = Indexing $ \i -> case m i of
269 Indexing mx <> Indexing my = Indexing $ \i -> case mx i of function
282 mempty = Indexing $ \i -> (i, mempty)
285 mappend (Indexing mx) (Indexing my) = Indexing $ \i -> case mx i of
[all …]
/dports/security/hs-cryptol/cryptol-2.11.0/_cabal_deps/lens-5.0.1/src/Control/Lens/Internal/
H A DIndexed.hs29 , Indexing(..)
242 newtype Indexing f a = Indexing { runIndexing :: Int -> (Int, f a) } type
245 fmap f (Indexing m) = Indexing $ \i -> case m i of
250 Indexing mf <.> Indexing ma = Indexing $ \i -> case mf i of function
256 pure x = Indexing $ \i -> (i, pure x)
258 Indexing mf <*> Indexing ma = Indexing $ \i -> case mf i of function
264 contramap f (Indexing m) = Indexing $ \i -> case m i of
269 Indexing mx <> Indexing my = Indexing $ \i -> case mx i of function
282 mempty = Indexing $ \i -> (i, mempty)
285 mappend (Indexing mx) (Indexing my) = Indexing $ \i -> case mx i of
[all …]
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/lens-4.19.2/src/Control/Lens/Internal/
H A DIndexed.hs32 , Indexing(..)
248 newtype Indexing f a = Indexing { runIndexing :: Int -> (Int, f a) } constructor
251 fmap f (Indexing m) = Indexing $ \i -> case m i of
256 Indexing mf <.> Indexing ma = Indexing $ \i -> case mf i of function
262 pure x = Indexing $ \i -> (i, pure x)
264 Indexing mf <*> Indexing ma = Indexing $ \i -> case mf i of function
270 contramap f (Indexing m) = Indexing $ \i -> case m i of
275 Indexing mx <> Indexing my = Indexing $ \i -> case mx i of function
288 mempty = Indexing $ \i -> (i, mempty)
291 mappend (Indexing mx) (Indexing my) = Indexing $ \i -> case mx i of
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/lens-4.19.1/src/Control/Lens/Internal/
H A DIndexed.hs32 , Indexing(..)
248 newtype Indexing f a = Indexing { runIndexing :: Int -> (Int, f a) } type
251 fmap f (Indexing m) = Indexing $ \i -> case m i of
256 Indexing mf <.> Indexing ma = Indexing $ \i -> case mf i of function
262 pure x = Indexing $ \i -> (i, pure x)
264 Indexing mf <*> Indexing ma = Indexing $ \i -> case mf i of function
270 contramap f (Indexing m) = Indexing $ \i -> case m i of
275 Indexing mx <> Indexing my = Indexing $ \i -> case mx i of function
288 mempty = Indexing $ \i -> (i, mempty)
291 mappend (Indexing mx) (Indexing my) = Indexing $ \i -> case mx i of
[all …]
/dports/www/hs-DAV/DAV-1.3.4/_cabal_deps/lens-4.19.2/src/Control/Lens/Internal/
H A DIndexed.hs32 , Indexing(..)
248 newtype Indexing f a = Indexing { runIndexing :: Int -> (Int, f a) } function
251 fmap f (Indexing m) = Indexing $ \i -> case m i of
256 Indexing mf <.> Indexing ma = Indexing $ \i -> case mf i of function
262 pure x = Indexing $ \i -> (i, pure x)
264 Indexing mf <*> Indexing ma = Indexing $ \i -> case mf i of function
270 contramap f (Indexing m) = Indexing $ \i -> case m i of
275 Indexing mx <> Indexing my = Indexing $ \i -> case mx i of function
288 mempty = Indexing $ \i -> (i, mempty)
291 mappend (Indexing mx) (Indexing my) = Indexing $ \i -> case mx i of
[all …]
/dports/sysutils/kf5-baloo/baloo-5.89.0/po/en_GB/
H A Dbalooengine5.po68 msgid "Initial Indexing"
69 msgstr "Initial Indexing"
73 msgid "Indexing new files"
74 msgstr "Indexing new files"
78 msgid "Indexing modified files"
79 msgstr "Indexing modified files"
83 msgid "Indexing Extended Attributes"
84 msgstr "Indexing Extended Attributes"
88 msgid "Indexing file content"
89 msgstr "Indexing file content"
/dports/devel/py-dask/dask-2021.11.2/docs/source/
H A Darray-assignment.rst9 * Indexing by integers: ``x[1] = y``
10 * Indexing by slices: ``x[2::-1] = y``
11 * Indexing by a list of integers: ``x[[0, -1, 1]] = y``
12 * Indexing by a 1-d :class:`numpy` array of integers: ``x[np.arange(3)] = y``
13 * Indexing by a 1-d :class:`~dask.array.Array` of integers: ``x[da.arange(3)] = y``, ``x[da.from_ar…
14 * Indexing by a list of booleans: ``x[[False, True, True]] = y``
15 * Indexing by a 1-d :class:`numpy` array of booleans: ``x[np.arange(3) > 0] = y``
19 * Indexing by one broadcastable :class:`~dask.array.Array` of
24 * Indexing with lists in multiple axes: ``x[[1, 2, 3], [3, 1, 2]] = y``
/dports/math/vampire/vampire-4.5.1/
H A DMakefile249 VI_OBJ = Indexing/AcyclicityIndex.o\
250 Indexing/ClauseCodeTree.o\
252 Indexing/CodeTree.o\
254 Indexing/GroundingIndex.o\
255 Indexing/Index.o\
256 Indexing/IndexManager.o\
257 Indexing/LiteralIndex.o\
265 Indexing/TermCodeTree.o\
266 Indexing/TermIndex.o\
267 Indexing/TermSharing.o\
[all …]
/dports/lang/php80/php-8.0.15/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
17 echo "\n*** Indexing - Testing reference assignment with key ***\n";
29 echo "*** Indexing - Testing value assignment no key ***\n";
41 echo "\n*** Indexing - Testing reference assignment no key ***\n";
56 *** Indexing - Testing value assignment with key ***
91 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
152 *** Indexing - Testing reference assignment no key ***
/dports/www/mod_php80/php-8.0.15/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
17 echo "\n*** Indexing - Testing reference assignment with key ***\n";
29 echo "*** Indexing - Testing value assignment no key ***\n";
41 echo "\n*** Indexing - Testing reference assignment no key ***\n";
56 *** Indexing - Testing value assignment with key ***
91 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
152 *** Indexing - Testing reference assignment no key ***
/dports/www/mod_php81/php-8.1.1/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
17 echo "\n*** Indexing - Testing reference assignment with key ***\n";
29 echo "*** Indexing - Testing value assignment no key ***\n";
41 echo "\n*** Indexing - Testing reference assignment no key ***\n";
56 *** Indexing - Testing value assignment with key ***
93 *** Indexing - Testing reference assignment with key ***
125 *** Indexing - Testing value assignment no key ***
158 *** Indexing - Testing reference assignment no key ***
/dports/lang/php81/php-8.1.1/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
17 echo "\n*** Indexing - Testing reference assignment with key ***\n";
29 echo "*** Indexing - Testing value assignment no key ***\n";
41 echo "\n*** Indexing - Testing reference assignment no key ***\n";
56 *** Indexing - Testing value assignment with key ***
93 *** Indexing - Testing reference assignment with key ***
125 *** Indexing - Testing value assignment no key ***
158 *** Indexing - Testing reference assignment no key ***
/dports/lang/php73/php-7.3.33/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
13 echo "\n*** Indexing - Testing reference assignment with key ***\n";
21 echo "*** Indexing - Testing value assignment no key ***\n";
29 echo "\n*** Indexing - Testing reference assignment no key ***\n";
42 *** Indexing - Testing value assignment with key ***
87 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
156 *** Indexing - Testing reference assignment no key ***
/dports/lang/php74/php-7.4.27/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
13 echo "\n*** Indexing - Testing reference assignment with key ***\n";
21 echo "*** Indexing - Testing value assignment no key ***\n";
29 echo "\n*** Indexing - Testing reference assignment no key ***\n";
42 *** Indexing - Testing value assignment with key ***
87 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
156 *** Indexing - Testing reference assignment no key ***
/dports/www/mod_php73/php-7.3.33/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
13 echo "\n*** Indexing - Testing reference assignment with key ***\n";
21 echo "*** Indexing - Testing value assignment no key ***\n";
29 echo "\n*** Indexing - Testing reference assignment no key ***\n";
42 *** Indexing - Testing value assignment with key ***
87 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
156 *** Indexing - Testing reference assignment no key ***
/dports/www/mod_php74/php-7.4.27/Zend/tests/
H A Dindexing_001.phpt2 Indexing - various special cases.
5 echo "*** Indexing - Testing value assignment with key ***\n";
13 echo "\n*** Indexing - Testing reference assignment with key ***\n";
21 echo "*** Indexing - Testing value assignment no key ***\n";
29 echo "\n*** Indexing - Testing reference assignment no key ***\n";
42 *** Indexing - Testing value assignment with key ***
87 *** Indexing - Testing reference assignment with key ***
121 *** Indexing - Testing value assignment no key ***
156 *** Indexing - Testing reference assignment no key ***
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/PeriodicIndexingRecords/
H A DIndex.rst14 You can also use the Indexing Configuration to index single records.
19 the record. In the case below the Indexing Configuration is placed on
26 Indexing configuration for records placed in the same page as the plugin
31 :alt: Indexing configuration for records
33 Indexing configuration for arbitrary records
49 :alt: Indexing configuration for records
51 Indexing configuration for arbitrary records
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/PeriodicIndexingRecords/
H A DIndex.rst14 You can also use the Indexing Configuration to index single records.
19 the record. In the case below the Indexing Configuration is placed on
26 Indexing configuration for records placed in the same page as the plugin
31 :alt: Indexing configuration for records
33 Indexing configuration for arbitrary records
49 :alt: Indexing configuration for records
51 Indexing configuration for arbitrary records
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/PeriodicIndexingRecords/
H A DIndex.rst14 You can also use the Indexing Configuration to index single records.
19 the record. In the case below the Indexing Configuration is placed on
26 Indexing configuration for records placed in the same page as the plugin
31 :alt: Indexing configuration for records
33 Indexing configuration for arbitrary records
49 :alt: Indexing configuration for records
51 Indexing configuration for arbitrary records
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/IndexingExternals/
H A DIndex.rst11 Indexing External websites ("External URL")
14 You can index external websites using Indexing Configurations. They
18 :alt: Indexing configuration for external URL
20 Indexing configuration for an external URL
26 **Location:** You should place the Indexing Configuration on a "Not-
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/IndexingExternals/
H A DIndex.rst11 Indexing External websites ("External URL")
14 You can index external websites using Indexing Configurations. They
18 :alt: Indexing configuration for external URL
20 Indexing configuration for an external URL
26 **Location:** You should place the Indexing Configuration on a "Not-
/dports/sysutils/kf5-baloo/baloo-5.89.0/po/ja/
H A Dbalooengine5.po65 msgid "Initial Indexing"
70 msgid "Indexing new files"
75 msgid "Indexing modified files"
80 msgid "Indexing Extended Attributes"
85 msgid "Indexing file content"
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/indexed_search/Documentation/IndexingConfigurations/IndexingExternals/
H A DIndex.rst11 Indexing External websites ("External URL")
14 You can index external websites using Indexing Configurations. They
18 :alt: Indexing configuration for external URL
20 Indexing configuration for an external URL
26 **Location:** You should place the Indexing Configuration on a "Not-
/dports/sysutils/kf5-baloo/baloo-5.89.0/po/ml/
H A Dbalooengine5.po69 msgid "Initial Indexing"
74 msgid "Indexing new files"
79 msgid "Indexing modified files"
84 msgid "Indexing Extended Attributes"
89 msgid "Indexing file content"

12345678910>>...155