Displaying 2 results from an estimated 2 matches for "load_id".
Did you mean:
load_idt
2008 Jul 17
2
problems with validation on STI
...ger :simulation_id
t.string :dist_name
t.string :desc, :default=> ''fixed''
t.float :param1, :default => 5.0
t.float :param2, :param3
t.timestamps
#fields for RscDist
t.integer :resource_id
#fields for LoadDist
t.integer :load_id
end
end
My model file looks like this:
class Distribution < ActiveRecord::Base
validates_presence_of :desc, :param1
validates_uniqueness_of :dist_name, :scope => "simulation_id"
validates_inclusion_of :desc,
:in => %w{fixed exponentia...
2016 Jun 16
10
RFC: Comprehensive Static Instrumentation
Hey LLVM-dev,
We propose to build the CSI framework to provide a comprehensive suite of
compiler-inserted instrumentation hooks that dynamic-analysis tools can use
to observe and investigate program runtime behavior. Traditionally, tools
based on compiler instrumentation would each separately modify the compiler
to insert their own instrumentation. In contrast, CSI inserts a standard