Home
last modified time | relevance | path

Searched refs:vmod (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/dports/www/varnish-modules/varnish-modules-0.18.0/
H A DCHANGES.rst12 * [vmod-var] Add set_backend() and get_backend()
18 * [vmod-vsthrottle] Add an optional block parameter to
37 * [vmod-bodyaccess] New vmod that enables simple matching and hashing
39 * [vmod-xkey] Some documentation improvements
53 * Improved documentation and examples for vmod-saintmode, vmod-cookie,
54 vmod-xkey, vmod-var, vmod-softpurge, vmod-header, vmod-tcp and
55 vmod-vsthrottle
58 * [vmod-vsthrottle] Fix OS X build issue (#37)
59 * [vmod-saintmode] Add new log records for when vmod-saintmode marks a
74 * Example for vmod-saintmode has been improved. (Issue #16)
[all …]
H A DAUTHORS5 This file summarises the original vmod authors.
10 vmod-header was originally written by Kristian Lyngstøl.
11 vmod-cookie, vmod-softpurge and vmod-tcp were written by Lasse Karstensen.
12 vmod-vsthrottle and vmod-saintmode were written by Dag Haavi Finstad.
13 vmod-xkey was originally written by Martin Blix Grydeland.
/dports/www/varnish6/varnish-cache-varnish-6.6.2/vmod/
H A Dflint.sh7 for vmod in vmod_*.vcc ; do
8 vmod="${vmod%.vcc}"
10 echo "${vmod}"
12 vmod="${vmod#vmod_}"
13 FLOPS="-I../bin/varnishd vcc_${vmod}_if.c vmod_${vmod}*.c" \
H A Dvmod_cookie.vcc65 Delete ``cookiename`` from internal vmod storage if it exists.
77 Delete all cookies from internal vmod storage that are in the
92 Delete all cookies from internal vmod storage that matches the
106 Delete all cookies from internal vmod storage that is not in the
120 Delete all cookies from internal vmod storage that does not match
141 In that case the header vmod should be used.
153 Get the value of ``cookiename``, as stored in internal vmod storage. If
166 Get the value of the first cookie in internal vmod storage that matches
180 Get a Cookie string value with all cookies in internal vmod storage. Does
193 Check if ``cookiename`` is set in the internal vmod storage.
[all …]
/dports/www/varnish6/varnish-cache-varnish-6.6.2/bin/varnishtest/tests/
H A Dm00008.vtc1 varnishtest "VCL compiler vmod coverage / vmod loading"
5 varnish v1 -errvcl {Symbol 'debug' has wrong type (sub), expected vmod:} {
33 import std from "${topbuild}/vmod/.libs/";
37 -cliok "param.set vmod_path /nowhere:${topbuild}/vmod/.libs/"
48 import std from "${topbuild}/vmod/.libs/";
53 import std from "${topbuild}/vmod/.libs/libvmod_debug.so";
H A Dm00047.vtc46 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
47 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
48 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
49 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
54 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
55 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
56 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
57 expect * = VCL_Error {^vmod unix error: not listening on a Unix domain socket$}
61 varnish v1 -errvcl {vmod unix failure: may not be called in vcl_init or vcl_fini} {
71 varnish v1 -errvcl {vmod unix failure: may not be called in vcl_init or vcl_fini} {
[all …]
H A Dm00001.vtc1 varnishtest "Test std vmod"
59 varnish v1 -cliok "debug.vmod"
67 varnish v1 -cliok "debug.vmod"
69 varnish v1 -errvcl {Symbol 'std' type (vmod) can not be used in expression.} {
78 varnish v1 -cliok "debug.vmod"
H A Dm00003.vtc12 varnishd -pvmod_path=${topbuild}/vmod/.libs \
16 varnish v1 -arg "-pvmod_path=${topbuild}/vmod/.libs/" -vcl+backend {
26 varnish v1 -cliok "param.set vmod_path ${topbuild}/vmod/.libs/"
41 cp ${topbuild}/vmod/.libs/libvmod_debug.so \
/dports/www/varnish6/varnish-cache-varnish-6.6.2/doc/sphinx/
H A DMakefile.am177 include/vmod_std.generated.rst: $(top_builddir)/vmod/vmod_std.rst
178 cp $(top_builddir)/vmod/vmod_std.rst $@
182 cp $(top_builddir)/vmod/vmod_directors.rst $@
186 cp $(top_builddir)/vmod/vmod_purge.rst $@
189 include/vmod_vtc.generated.rst: $(top_builddir)/vmod/vmod_vtc.rst
190 cp $(top_builddir)/vmod/vmod_vtc.rst $@
193 include/vmod_blob.generated.rst: $(top_builddir)/vmod/vmod_blob.rst
194 cp $(top_builddir)/vmod/vmod_blob.rst $@
198 cp $(top_builddir)/vmod/vmod_cookie.rst $@
202 cp $(top_builddir)/vmod/vmod_unix.rst $@
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/libs/glshim/src/gl/
H A Dpixel.c38 #define default(arr, amod, vmod, key, def) \ in remap_pixel() argument
39 key >= 0 ? arr[amod key] vmod : def in remap_pixel()
44 #define read_each(amod, vmod) \ in remap_pixel() argument
45 pixel.r = default(s, amod, vmod, src_color->red, 0); \ in remap_pixel()
46 pixel.g = default(s, amod, vmod, src_color->green, 0); \ in remap_pixel()
48 pixel.a = default(s, amod, vmod, src_color->alpha, 1.0f); in remap_pixel()
50 #define write_each(amod, vmod) \ in remap_pixel() argument
51 carefully(d, amod, dst_color->red, pixel.r vmod) \ in remap_pixel()
52 carefully(d, amod, dst_color->green, pixel.g vmod) \ in remap_pixel()
53 carefully(d, amod, dst_color->blue, pixel.b vmod) \ in remap_pixel()
[all …]
/dports/www/varnish6/varnish-cache-varnish-6.6.2/bin/varnishd/cache/
H A Dcache_vrt_vmod.c50 struct vmod { struct
54 VTAILQ_ENTRY(vmod) list; argument
70 static VTAILQ_HEAD(,vmod) vmods = VTAILQ_HEAD_INITIALIZER(vmods); argument
84 VPI_Vmod_Init(VRT_CTX, struct vmod **hdl, unsigned nbr, void *ptr, int len, in VPI_Vmod_Init()
87 struct vmod *v; in VPI_Vmod_Init()
168 VPI_Vmod_Unload(VRT_CTX, struct vmod **hdl) in VPI_Vmod_Unload()
170 struct vmod *v; in VPI_Vmod_Unload()
200 struct vmod *v; in VMOD_Panic()
216 struct vmod *v; in v_matchproto_()
/dports/lang/v/v-0.1.29/vlib/v/tests/
H A Dvmod_parser_test.v1 import vmod
4 data := vmod.from_file('./v.mod') or {
26 data := vmod.decode(content) or {
38 vmod.decode('') or {
39 assert err == 'vmod: no content.'
/dports/print/ghostscript7-base/ghostscript-7.07/gimp-print-4.2.7/test/
H A Descp2-weavetest.c146 int vmod; in run_one_weavetest() local
181 vmod = 2 * physsep * hpasses * vpasses * subpasses; in run_one_weavetest()
182 if (vmod == 0) in run_one_weavetest()
183 vmod = 1; in run_one_weavetest()
184 current_slot = xmalloc(sizeof(int) * vmod); in run_one_weavetest()
189 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
196 for (i = 0; i < vmod; i++) in run_one_weavetest()
244 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
245 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
266 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
[all …]
/dports/www/varnish-libvmod-dynamic/libvmod-dynamic-1bf8f07/src/tests/
H A Dtest07.vtc42 expect * * Debug "vmod-dynamic: vcl1 d1 localhost:[0-9]+ add-backend d1.127.0.0.1."
43 …expect * * Debug "vmod-dynamic: vcl1 d1 localhost:[0-9]+ ref-backend d1.127.0.0.1:[0-9]+. .1 in to…
45 …expect * * Debug "vmod-dynamic: vcl1 d1 img.localhost:[0-9]+ ref-backend d1.127.0.0.1:[0-9]+. .2 i…
46 expect * * VCL_Log "vmod-dynamic: vcl1 d1 localhost:[0-9]+ deleted"
47 …expect * * Debug "vmod-dynamic: vcl1 d1 localhost:[0-9]+ unref-backend d1.127.0.0.1:[0-9]+. .1 rem…
/dports/www/varnish6/varnish-cache-varnish-6.6.2/man/
H A DMakefile.am115 vmod_cookie.3: $(top_builddir)/vmod/vmod_cookie.man.rst
118 vmod_directors.3: $(top_builddir)/vmod/vmod_directors.man.rst
121 vmod_purge.3: $(top_builddir)/vmod/vmod_purge.man.rst
124 vmod_std.3: $(top_builddir)/vmod/vmod_std.man.rst
127 vmod_vtc.3: $(top_builddir)/vmod/vmod_vtc.man.rst
130 vmod_blob.3: $(top_builddir)/vmod/vmod_blob.man.rst
133 vmod_unix.3: $(top_builddir)/vmod/vmod_unix.man.rst
136 vmod_proxy.3: $(top_builddir)/vmod/vmod_proxy.man.rst
/dports/print/gutenprint/gutenprint-5.3.3/test/
H A Descp2-weavetest.c142 int vmod; in run_one_weavetest() local
203 vmod = 2 * physsep * hpasses * vpasses * subpasses; in run_one_weavetest()
204 if (vmod == 0) in run_one_weavetest()
205 vmod = 1; in run_one_weavetest()
206 current_slot = stp_malloc(sizeof(int) * vmod); in run_one_weavetest()
211 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
218 for (i = 0; i < vmod; i++) in run_one_weavetest()
268 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
269 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
293 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
[all …]
/dports/print/gimp-gutenprint/gutenprint-5.3.3/test/
H A Descp2-weavetest.c142 int vmod; in run_one_weavetest() local
203 vmod = 2 * physsep * hpasses * vpasses * subpasses; in run_one_weavetest()
204 if (vmod == 0) in run_one_weavetest()
205 vmod = 1; in run_one_weavetest()
206 current_slot = stp_malloc(sizeof(int) * vmod); in run_one_weavetest()
211 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
218 for (i = 0; i < vmod; i++) in run_one_weavetest()
268 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
269 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
293 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
[all …]
/dports/biology/emboss/EMBOSS-6.6.0/plplot/
H A Dpldtik.c137 PLFLT chosen, notchosen, vmod, t0; in pldprec() local
154 vmod = ABS(chosen); in pldprec()
155 t0 = (PLFLT) log10(vmod); in pldprec()
160 vmod = 1.; in pldprec()
161 t0 = (PLFLT) log10(vmod); in pldprec()
/dports/games/naev/naev-0.7.0/src/
H A Dphysics.c322 double vmod, vang; in solid_update_rk4() local
338 vmod = MOD( vx, vy ); in solid_update_rk4()
339 vint = (int) vmod/100.; in solid_update_rk4()
355 vmod = MOD( vx, vy ); in solid_update_rk4()
356 if (vmod > obj->speed_max) { in solid_update_rk4()
359 vmod = 3. * (vmod - obj->speed_max); in solid_update_rk4()
362 ax += vmod * cos(vang); in solid_update_rk4()
363 ay += vmod * sin(vang); in solid_update_rk4()
/dports/www/varnish-libvmod-dynamic/libvmod-dynamic-1bf8f07/pkg/rpm/
H A Dvmod-dynamic.spec3 %global vmod dynamic
6 Name: vmod-%{vmod}
45 rm %{buildroot}%{vmoddir}/libvmod_%{vmod}.la
55 %{vmoddir}/libvmod_%{vmod}.so
/dports/science/siesta/siesta-4.1.5/Src/
H A Dkgridinit.F82 . scell(3,3), scmin(3,3), tiny, vmod
146 vmod = sqrt( scmin(1,j)**2 + scmin(2,j)**2 + scmin(3,j)**2 )
147 factor(j,j) = int(cutoff/(vmod/2.d0)) + 1
172 vmod = sqrt( scell(1,i)**2 + scell(2,i)**2 + scell(3,i)**2 )
182 vmod = sqrt( scmin(1,i)**2 + scmin(2,i)**2 + scmin(3,i)**2 )
183 cutoff = min( cutoff, vmod/2.d0 )
/dports/audio/whysynth/whysynth-20120903/src/
H A Dwhysynth_voice.h260 struct vmod struct
303 struct vmod mod[Y_MODS_COUNT];
342 struct vmod *srcmods, struct vmod *destmod);
344 struct vmod *srcmods, struct vmod *destmod);
/dports/www/varnish6/varnish-cache-varnish-6.6.2/lib/libvcc/
H A Dvcc_xref.c68 const char *vmod; member
472 const char *vmod) in vcc_MarkPriv() argument
476 AN(vmod); in vcc_MarkPriv()
479 if (pp->vmod == vmod) in vcc_MarkPriv()
480 return (vmod); in vcc_MarkPriv()
481 AN(strcmp(pp->vmod, vmod)); in vcc_MarkPriv()
486 pp->vmod = vmod; in vcc_MarkPriv()
/dports/astro/pykep/pykep-2.6/src/third_party/cspice/
H A Dzzmkspin.c35 static doublereal vmod[3], xmin, ymin, xmax; in zzmkspin_() local
956 vpack_(&bxmin, &bymin, &bzmin, vmod); in zzmkspin_()
957 zzgetvox_(voxsiz, voxori, nvox, vmod, &inbox, vcoord); in zzmkspin_()
966 errdp_("#", vmod, (ftnlen)1); in zzmkspin_()
967 errdp_("#", &vmod[1], (ftnlen)1); in zzmkspin_()
968 errdp_("#", &vmod[2], (ftnlen)1); in zzmkspin_()
983 vpack_(&bxmax, &bymax, &bzmax, vmod); in zzmkspin_()
984 zzgetvox_(voxsiz, voxori, nvox, vmod, &inbox, vcoord); in zzmkspin_()
993 errdp_("#", vmod, (ftnlen)1); in zzmkspin_()
994 errdp_("#", &vmod[1], (ftnlen)1); in zzmkspin_()
[all …]
/dports/astro/py-pykep/pykep-2.6/src/third_party/cspice/
H A Dzzmkspin.c35 static doublereal vmod[3], xmin, ymin, xmax; in zzmkspin_() local
956 vpack_(&bxmin, &bymin, &bzmin, vmod); in zzmkspin_()
957 zzgetvox_(voxsiz, voxori, nvox, vmod, &inbox, vcoord); in zzmkspin_()
966 errdp_("#", vmod, (ftnlen)1); in zzmkspin_()
967 errdp_("#", &vmod[1], (ftnlen)1); in zzmkspin_()
968 errdp_("#", &vmod[2], (ftnlen)1); in zzmkspin_()
983 vpack_(&bxmax, &bymax, &bzmax, vmod); in zzmkspin_()
984 zzgetvox_(voxsiz, voxori, nvox, vmod, &inbox, vcoord); in zzmkspin_()
993 errdp_("#", vmod, (ftnlen)1); in zzmkspin_()
994 errdp_("#", &vmod[1], (ftnlen)1); in zzmkspin_()
[all …]

12345678910>>...13