Displaying 4 results from an estimated 4 matches for "viewcounter".
Did you mean:
die_counter
2009 Mar 30
3
Great discrepancy between Google Analytics and own counter
...e known that GA is JS based, and will report directly to
Google from the client''s browser that page X has been visited. This is
why it can also count hits from the client''s cache.
Now I have written my own little banner rotation system in one of my
projects, which also contains a viewcounter.
For testing purposes I have only 1 banner, and it is displayed on every
page that is also tracked by Google Analytics. The viewcounter for my
banners works serverside, and actually counts the times the banner was
requested (times rendered on serverside to be precise)
Now over a period of a month...
2016 Dec 15
3
[FileCheck] Fix --strict-whitespace --match-full-lines
On 14/12/16 18:48, Robinson, Paul wrote:
> Please send patches to llvm-commits not llvm-dev.
>
> Writing FileCheck tests has pitfalls. A test along these lines:
>
> bla0
> CHECK:bla1
>
> will actually pass, because the CHECK pattern is also part of the input
> so it will readily match itself. You want the CHECK lines not to match
> themselves, which you can easily do
2016 Dec 15
0
[FileCheck] Fix --strict-whitespace --match-full-lines
> -----Original Message-----
> From: Tom de Vries [mailto:Tom_deVries at mentor.com]
> Sent: Thursday, December 15, 2016 2:31 AM
> To: Robinson, Paul
> Cc: Jonathan Roelofs; llvm-dev at lists.llvm.org
> Subject: Re: [llvm-dev] [FileCheck] Fix --strict-whitespace --match-full-
> lines
>
> On 14/12/16 18:48, Robinson, Paul wrote:
> > Please send patches to
2016 Dec 14
0
[FileCheck] Fix --strict-whitespace --match-full-lines
Please send patches to llvm-commits not llvm-dev.
Writing FileCheck tests has pitfalls. A test along these lines:
bla0
CHECK:bla1
will actually pass, because the CHECK pattern is also part of the input
so it will readily match itself. You want the CHECK lines not to match
themselves, which you can easily do by introducing {{}} into the (middle
of the) pattern. That is:
bla0
CHECK:{{bla1}}