代码搜索:Avoiding

找到约 159 项符合「Avoiding」的源代码

代码结果 159
www.eeworm.com/read/250058/12439068

js avoiding-eval.js

// Please note: this file contains snippets for comparison // it is not self-contained or ready-to-use code as such var ele = eval('document.getElementById("link" + n)'); var mod = 'shiftKey';
www.eeworm.com/read/275831/10793695

rb 10 - avoiding deadlock.rb

require 'thread' $chopstick1 = Mutex.new $chopstick2 = Mutex.new class Philosopher < Thread def initialize(name) super do loop do $chopstick1.synchronize do puts "#{nam
www.eeworm.com/read/139332/5800088

hpp self_avoiding_walk.hpp

//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek // //
www.eeworm.com/read/482889/1282065

hpp self_avoiding_walk.hpp

//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek //
www.eeworm.com/read/221464/4828800

hpp self_avoiding_walk.hpp

//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek //
www.eeworm.com/read/168845/5430269

hpp self_avoiding_walk.hpp

//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek //
www.eeworm.com/read/375190/2726837

hpp self_avoiding_walk.hpp

//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek // //
www.eeworm.com/read/283124/9041977

f90 self_avoiding_walk.f90

!=============================================================================== ! ! Droits de reproduction et de diffusion r閟erv閟.
www.eeworm.com/read/275831/10794407

rb 09 - avoiding boilerplate code with metaprogramming.rb

class Fetcher def fetch(how_many) puts "Fetching #{how_many ? how_many : "all"}." end def fetch_one fetch(1) end def fetch_ten fetch(10) end def fetch_all fetch(nil)
www.eeworm.com/read/275831/10794561

rb 04 - avoiding naming collisions with namespaces.rb

module StringTheory class String def initialize(length=10**-33) @length = length end end end String.new # => "" StringTheory::String.new # =>