Changes between Version 7 and Version 8 of GEC18Agenda/LabWikiAndOEDL/Experiment2


Ignore:
Timestamp:
10/21/13 01:37:56 (10 years ago)
Author:
thierry.rakotoarivelo@nicta.com.au
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GEC18Agenda/LabWikiAndOEDL/Experiment2

    v7 v8  
    176176end
    177177    }}}
     178 4. Walk-through the above OEDL experiment description:
     179   {{{
     180defProperty('slice', 'oedl-', "slice name")
     181...
     182
     183tracker = property.tracker.to_s.split(',').map { |x| "#{x}-#{property.slice}" }
     184...
     185   }}}
     186   * Here we define some experiment properties, which will allow us to parameterize the values for the slice, the resources, and the application settings used in the experiment. As mentioned earlier, these values may be customized for each experiment run. We further declare variables (internal to the experiment descriptions), which facilitate our specific use of properties within this given experiment example.
     187
     188
     189   {{{
     190defApplication('clean_all') do |app|
     191...
     192end
     193
     194defApplication('clean_leechers') do |app|
     195...
     196end
     197
     198defApplication('bttrack') do |app|
     199..
     200end
     201
     202defApplication('transmission_daemon') do |app|
     203...
     204end
     205
     206defApplication('vlc') do |app|
     207...
     208end
     209   }}}
     210
     211
     212
     213
     214
     215
     216
     217
     218
     219
     220
    178221
    179222== Part 3 - Finish ==