Displaying 6 results from an estimated 6 matches for "edgecase".
2006 Nov 09
2
Hi everybody! Greetings from sunny Columbus, OH!
Hey everyone, I just wanted to drop onto the list and say hi. My
name is Chad Humphries and I am a partner at a ruby and rails shop in
Columbus, OH called EdgeCase.
Up until two months ago we were doing all of our dev work in
test:unit. I had read about RSpec before and after hearing Jim
Weirich speak at the Columbus Ruby Brigade about similar ideas I
decided to give it a go for a personal project. Finally a framework
that works the way I think for...
2012 Sep 23
1
ruby koans don't understand the principle sandwhich code
hello,
Im still working on ruby koans.
Now I have to do some sandwhich code.
The exercise looks like this :
require File.expand_path(File.dirname(__FILE__) + ''/edgecase'')
class AboutSandwichCode < EdgeCase::Koan
def count_lines(file_name)
file = open(file_name)
count = 0
while line = file.gets
count += 1
end
count
ensure
file.close if file
end
def test_counting_lines
assert_equal 4, count_lines("example...
2020 Aug 13
3
Deterministic function return attribute
...%1 := call @test(%0)
%2 := call @test(%0)
and the optimization would be something like (%2).replaceUsesWith((%1)).
I think it's related to speculatable & readnone in LLVM, (if I
understood well, it's the same as GCC's __attribute__((pure)), but I'm
not sure whether there are edgecases where the mergability is not
equivalent.
I've seen somewhere that maybe malloc has these attributes, but it
surely cannot be merged. This is because there is memory read/written
that cannot be seen by LLVM (which is accepted by readnone). This
would be a counter-example.
So my question is:
I...
2023 Jan 26
0
[Announce] Samba 4.17.5 Available for Download
...s()
fails to find
???? DC when there is only an AAAA record for the DC in DNS.
?? * BUG 15236: smbd crashes if an FSCTL request is done on a stream
handle.
?? * BUG 15277: DFS links don't work anymore on Mac clients since 4.17.
?? * BUG 15283: vfs_virusfilter segfault on access, directory edgecase
???? (accessing NULL value).
o? Samuel Cabrero <scabrero at samba.org>
?? * BUG 15240: CVE-2022-38023 [SECURITY] Samba should refuse RC4 (aka md5)
???? based SChannel on NETLOGON (additional changes).
o? Volker Lendecke <vl at samba.org>
?? * BUG 15243: %U for include directive do...
2023 Jan 26
0
[Announce] Samba 4.17.5 Available for Download
...s()
fails to find
???? DC when there is only an AAAA record for the DC in DNS.
?? * BUG 15236: smbd crashes if an FSCTL request is done on a stream
handle.
?? * BUG 15277: DFS links don't work anymore on Mac clients since 4.17.
?? * BUG 15283: vfs_virusfilter segfault on access, directory edgecase
???? (accessing NULL value).
o? Samuel Cabrero <scabrero at samba.org>
?? * BUG 15240: CVE-2022-38023 [SECURITY] Samba should refuse RC4 (aka md5)
???? based SChannel on NETLOGON (additional changes).
o? Volker Lendecke <vl at samba.org>
?? * BUG 15243: %U for include directive do...
2020 Aug 14
2
Fwd: Deterministic function return attribute
...would be something like
(%2).replaceUsesWith((%1)).
>> >
>> > I think it's related to speculatable & readnone in LLVM, (if I
>> > understood well, it's the same as GCC's __attribute__((pure)),
but I'm
>> > not sure whether there are edgecases where the mergability is not
>> > equivalent.
>> >
>> > I've seen somewhere that maybe malloc has these attributes, but it
>> > surely cannot be merged. This is because there is memory read/written
>> > that cannot be seen by LLVM (which i...