Home
last modified time | relevance | path

Searched +refs:deserialize +refs:bulk +refs:binding +refs:at (Results 1 – 25 of 110) sorted by relevance

12345

/dports/lang/racket-minimal/racket-8.3/src/expander/compile/
H A Dserialize.rkt13 "../syntax/bulk-binding.rkt"
699 (define (deserialize mpis inspector bulk-binding-registry function
727 (define (deserialize-data mpis inspector bulk-binding-registry data)
730 (deserialize mpis inspector bulk-binding-registry
770 [(#:bulk-binding-registry) (values bulk-binding-registry (add1 pos))]
855 [(#:bulk-binding-at)
856 (decode* (deserialize-bulk-binding-at scopes bulk))]
873 [(#:bulk-binding)
874 …(decode* (deserialize-bulk-binding prefix excepts mpi provide-phase-level phase-shift bulk-binding
877 [(#:bulk-binding+provides)
[all …]
/dports/lang/racket/racket-8.3/src/expander/compile/
H A Dserialize.rkt13 "../syntax/bulk-binding.rkt"
699 (define (deserialize mpis inspector bulk-binding-registry function
727 (define (deserialize-data mpis inspector bulk-binding-registry data)
730 (deserialize mpis inspector bulk-binding-registry
770 [(#:bulk-binding-registry) (values bulk-binding-registry (add1 pos))]
855 [(#:bulk-binding-at)
856 (decode* (deserialize-bulk-binding-at scopes bulk))]
873 [(#:bulk-binding)
874 …(decode* (deserialize-bulk-binding prefix excepts mpi provide-phase-level phase-shift bulk-binding
877 [(#:bulk-binding+provides)
[all …]
/dports/lang/racket/racket-8.3/src/expander/syntax/
H A Dbinding-table.rkt41 deserialize-table-with-bulk-bindings
42 deserialize-bulk-binding-at)
56 (define (deserialize-table-with-bulk-bindings syms bulk-bindings)
61 (struct bulk-binding-at (scopes ; scope set
66 (ser-push! 'tag '#:bulk-binding-at)
67 (ser-push! (bulk-binding-at-scopes bba))
68 (ser-push! (bulk-binding-at-bulk bba)))
77 (define (deserialize-bulk-binding-at scopes bulk)
78 (bulk-binding-at scopes bulk))
347 (struct-copy bulk-binding-at bba
[all …]
H A Dscope.rkt40 add-bulk-binding-in-scopes!
50 deserialize-scope
73 scope-set-at-fallback))
123 (define deserialize-scope
127 (scope (new-deserialize-scope-id!) kind empty-binding-table)]))
206 (reach sc bulk-shifts)))))
236 (lambda (s bulk-shifts reach)
267 (lambda (sms bulk-shifts reach)
564 ;; implemented at the "binding.rkt" layer,
881 (define (add-bulk-binding-in-scopes! scopes bulk-binding
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/syntax/
H A Dbinding-table.rkt41 deserialize-table-with-bulk-bindings
42 deserialize-bulk-binding-at)
56 (define (deserialize-table-with-bulk-bindings syms bulk-bindings)
61 (struct bulk-binding-at (scopes ; scope set
66 (ser-push! 'tag '#:bulk-binding-at)
67 (ser-push! (bulk-binding-at-scopes bba))
68 (ser-push! (bulk-binding-at-bulk bba)))
77 (define (deserialize-bulk-binding-at scopes bulk)
78 (bulk-binding-at scopes bulk))
347 (struct-copy bulk-binding-at bba
[all …]
H A Dscope.rkt40 add-bulk-binding-in-scopes!
50 deserialize-scope
73 scope-set-at-fallback))
123 (define deserialize-scope
127 (scope (new-deserialize-scope-id!) kind empty-binding-table)]))
206 (reach sc bulk-shifts)))))
236 (lambda (s bulk-shifts reach)
267 (lambda (sms bulk-shifts reach)
564 ;; implemented at the "binding.rkt" layer,
881 (define (add-bulk-binding-in-scopes! scopes bulk-binding
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/compiler-lib/compiler/
H A Ddecompile.rkt260 (decompile-deserialize '.mpi-vector '.inspector '.bulk-binding-registry
279 (deserialize .mpi-vector .inspector .bulk-binding-registry
285 (decompile-deserialize '.mpi-vector '.inspector '.bulk-binding-registry
521 (define (decompile-deserialize mpis inspector bulk-binding-registry
614 [(#:bulk-binding-registry) (values bulk-binding-registry (add1 pos))]
690 (decode* (deserialize-table-with-bulk-bindings syms bulk-bindings))]
691 [(#:bulk-binding-at)
692 (decode* (deserialize-bulk-binding-at scopes bulk))]
696 (decode* (deserialize-full-module-binding
709 [(#:bulk-binding)
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/racket-doc/scribblings/reference/
H A Dstx-serialize.scrbl31 the serialized syntax object can rely on @deftech{bulk
32 bindings}, which are shared binding tables provided by
35 the syntax object's serialized form, and no bulk bindings will
36 be needed from the namespace at deserialization. Otherwise,
37 bulk bindings will be used only for modules declared in
38 @racket[provides-namespace] (i.e., the deserialize-time
45 @tech{module path index} to which binding information in
54 binding that is relative to the serialize-time module's
56 deserialize time. If @racket[base-module-path-index] is
57 @racket[#f], then no shifting is supported at deserialize time,
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/eval/
H A Dmodule.rkt152 #:force-bulk-binding-callback
153 (lambda (bulk-binding-registry)
154 ;; Avoids a leak of some namespace's bulk-binding registry into the
156 ;; a namespace's bulk-binding registry to get saved by the module's
158 … (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry))
160 (lambda (data-box ns phase-shift self bulk-binding-registry insp)
263 phase-shift original-self self bulk-binding-registry insp
266 (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry))
274 #:bulk-binding-registry bulk-binding-registry
311 (define (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry)
[all …]
H A Dtop.rkt87 (list deserialize-instance
92 #:bulk-binding-registry (namespace-bulk-binding-registry ns)
123 (define phase-ns (namespace->namespace-at-phase ns (phase+ phase phase-shift)))
134 #:bulk-binding-registry (namespace-bulk-binding-registry ns)
171 (define ns-1 (namespace->namespace-at-phase phase-ns (sub1 phase)))
/dports/lang/racket/racket-8.3/src/expander/eval/
H A Dmodule.rkt152 #:force-bulk-binding-callback
153 (lambda (bulk-binding-registry)
154 ;; Avoids a leak of some namespace's bulk-binding registry into the
156 ;; a namespace's bulk-binding registry to get saved by the module's
158 … (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry))
160 (lambda (data-box ns phase-shift self bulk-binding-registry insp)
263 phase-shift original-self self bulk-binding-registry insp
266 (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry))
274 #:bulk-binding-registry bulk-binding-registry
311 (define (force-syntax-deserialize syntax-literals-data-instance bulk-binding-registry)
[all …]
H A Dtop.rkt87 (list deserialize-instance
92 #:bulk-binding-registry (namespace-bulk-binding-registry ns)
123 (define phase-ns (namespace->namespace-at-phase ns (phase+ phase phase-shift)))
134 #:bulk-binding-registry (namespace-bulk-binding-registry ns)
171 (define ns-1 (namespace->namespace-at-phase phase-ns (sub1 phase)))
/dports/lang/racket-minimal/racket-8.3/src/bc/src/
H A Dstartup.inc7142 "(struct:bulk-binding-at bulk-binding-at2.1 bulk-binding-at? bulk-binding-at-scopes bulk-binding-at
7147 " 'bulk-binding-at"
7173 "(define-values(deserialize-bulk-binding-at)(lambda(scopes_0 bulk_0)(begin(bulk-binding-at2.1 scope…
7526 "(bulk-binding-at-bulk bba_0)"
7739 "(bulk-binding-at-bulk"
7852 "(bulk-binding-at-bulk bba_0)"
10859 "(bulk-binding-at-bulk"
12115 "(deserialize-bulk-binding)"
16722 "(bulk-binding-at-bulk"
23413 "(values(deserialize-bulk-binding-at scopes_0 bulk_0) next-pos_1))))"
[all …]
/dports/lang/racket/racket-8.3/src/bc/src/
H A Dstartup.inc7142 "(struct:bulk-binding-at bulk-binding-at2.1 bulk-binding-at? bulk-binding-at-scopes bulk-binding-at
7147 " 'bulk-binding-at"
7173 "(define-values(deserialize-bulk-binding-at)(lambda(scopes_0 bulk_0)(begin(bulk-binding-at2.1 scope…
7526 "(bulk-binding-at-bulk bba_0)"
7739 "(bulk-binding-at-bulk"
7852 "(bulk-binding-at-bulk bba_0)"
10859 "(bulk-binding-at-bulk"
12115 "(deserialize-bulk-binding)"
16722 "(bulk-binding-at-bulk"
23413 "(values(deserialize-bulk-binding-at scopes_0 bulk_0) next-pos_1))))"
[all …]
/dports/devel/hpx/hpx-1.2.1/docs/sphinx/releases/
H A Dwhats_new_0_9_0.rst5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
45 more than one future at a time.
110 time required to serialize and deserialize the data.
150 * :hpx-issue:`236` - Allow binding :cpp:class:`hpx::util::function` to actions
191 * :hpx-issue:`377` - ShenEOS interpolate bulk and interpolate_one_bulk are
195 * :hpx-issue:`387` - Doxygen should look only at list of specified files
/dports/net/libwebsockets/libwebsockets-v4.2.2/lib/secure-streams/
H A DREADME.md73 Since connections at socket level are already established, new connections are
261 corresponding streamtype metadata value at runtime. Eg, if the
416 data intended for the client held at the proxy, to the onward ss wsi
446 bulk content that requires high throughput. For IP packets,
706 fetches its real policy from warmcat.com at startup using the built-in
711 This is intended for modifying policies at runtime for testing, eg, to
791 deserialize the proxied SS API activity. The proxy clients define
793 the compiler commandline... this causes the lws_ss_ apis to be replaced at
809 However when configured at cmake with
854 The application is told to make all connections via the socks5 proxy at
[all …]
/dports/japanese/seaside/
H A DSeaside-JPatched080908-sq39.changes2994 (usefull for bulk recategorization). See AutomaticMethodCategorizerTest for examples.
12434 ^self at: anObject ifAbsent: [self error: 'binding not found']! !
12527 #PATH binding: ('/usr/local/bin:', (#PATH binding)).
12663 #PATH binding: ('/usr/local/bin:', (#PATH binding)).
46962 | binding |
56339 binding
82858 binding
85057 binding
145262 | binding |
145267 binding
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/
H A DNEWS379 at beginning or end of line
690 …* AddBand() support BLOCKXSIZE and BLOCKYSIZE options; serialize/deserialize block size as attribu…
2195 …* Implement RFC 73: Integration of PROJ6 for WKT2, late binding capabilities, time-support and uni…
3079 * Fix bulk copy for multiple layers (#619)
4752 * Fix bulk insert with table names containing spaces (#6527)
5530 * Implement MSSQL bulk insert (#4792)
6251 * enable bulk load on newly created layers
7434 * Geoloc: add GDALTransformGeolocations() and SWIG binding
9013 * Try to reuse INSERT statement to speed up bulk loading.
10630 * support blob column binding
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/
H A DNEWS379 at beginning or end of line
690 …* AddBand() support BLOCKXSIZE and BLOCKYSIZE options; serialize/deserialize block size as attribu…
2195 …* Implement RFC 73: Integration of PROJ6 for WKT2, late binding capabilities, time-support and uni…
3079 * Fix bulk copy for multiple layers (#619)
4752 * Fix bulk insert with table names containing spaces (#6527)
5530 * Implement MSSQL bulk insert (#4792)
6251 * enable bulk load on newly created layers
7434 * Geoloc: add GDALTransformGeolocations() and SWIG binding
9013 * Try to reuse INSERT statement to speed up bulk loading.
10630 * support blob column binding
[all …]
/dports/graphics/gdal/gdal-3.3.3/
H A DNEWS379 at beginning or end of line
690 …* AddBand() support BLOCKXSIZE and BLOCKYSIZE options; serialize/deserialize block size as attribu…
2195 …* Implement RFC 73: Integration of PROJ6 for WKT2, late binding capabilities, time-support and uni…
3079 * Fix bulk copy for multiple layers (#619)
4752 * Fix bulk insert with table names containing spaces (#6527)
5530 * Implement MSSQL bulk insert (#4792)
6251 * enable bulk load on newly created layers
7434 * Geoloc: add GDALTransformGeolocations() and SWIG binding
9013 * Try to reuse INSERT statement to speed up bulk loading.
10630 * support blob column binding
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/devtools/client/debugger/test/mochitest/examples/ember/quickstart/dist/assets/
H A Dvendor.map1binding-syntax.js","ember-template-compiler/plugins/transform-old-class-binding-syntax.js","ember-…
/dports/www/firefox/firefox-99.0/devtools/client/debugger/test/mochitest/examples/ember/quickstart/dist/assets/
H A Dvendor.map1binding-syntax.js","ember-template-compiler/plugins/transform-old-class-binding-syntax.js","ember-…
/dports/www/firefox-esr/firefox-91.8.0/devtools/client/debugger/test/mochitest/examples/ember/quickstart/dist/assets/
H A Dvendor.map1binding-syntax.js","ember-template-compiler/plugins/transform-old-class-binding-syntax.js","ember-…
/dports/mail/thunderbird/thunderbird-91.8.0/devtools/client/debugger/test/mochitest/examples/ember/quickstart/dist/assets/
H A Dvendor.map1binding-syntax.js","ember-template-compiler/plugins/transform-old-class-binding-syntax.js","ember-…
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-1.9.34994 binding. fixes
6993 * misc/ruby-mode.el (ruby-mode-map): remove deprecated binding.
9462 * string.c (rb_str_inspect): append for each chars instead of bulk
13743 teaching Psych to deserialize DateTime objects. [Bug #1390]
15062 binding that is created from C level. [ruby-dev:41322]
15280 of binding. [ruby-dev:38767] [ruby-core:28307]
25677 * proc.c ({proc,binding,method}_data_type): typed.
28590 * lib/pathname.rb (Pathname#sub): set $~ in block.binding.
47040 * ext/tk/sample/tktextio.rb: add binding for 'Ctrl-u' at console mode.
56769 * proc.c: support Proc#binding.
[all …]

12345