search for: viewcount

Displaying 4 results from an estimated 4 matches for "viewcount".

Did you mean: view_count
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 mon...
2016 Dec 15
3
[FileCheck] Fix --strict-whitespace --match-full-lines
...'sed \'s/^;.*$//\'') ) + # Similarly, have a macro to use llc with DWARF even when the host is win32. llc_dwarf = 'llc' if re.search(r'win32', config.target_triple): ... ] > (I didn't include this in my recent FileCheck Follies lightning talk, +1 viewcount. > because testing FileCheck itself is kind of an obscure corner of the > LLVM world and I was already bumping up against the 5-minute time limit.) > --paulr > > >> -----Original Message----- >> From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Tom...
2016 Dec 15
0
[FileCheck] Fix --strict-whitespace --match-full-lines
...; # Similarly, have a macro to use llc with DWARF even when the host is > win32. > llc_dwarf = 'llc' > if re.search(r'win32', config.target_triple): > ... > ] > > > (I didn't include this in my recent FileCheck Follies lightning talk, > > +1 viewcount. > > > because testing FileCheck itself is kind of an obscure corner of the > > LLVM world and I was already bumping up against the 5-minute time > limit.) > > --paulr > > > > > >> -----Original Message----- > >> From: llvm-dev [mailto:llvm-dev...
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}}