search for: test_scheduler

Displaying 2 results from an estimated 2 matches for "test_scheduler".

2014 Jan 18
2
[LLVMdev] Scheduling quirks
...l! When I compile the following more or less stupid functions with clang++ -O3 -S test.cpp ===> int test_register(int x) { x ^= (x >> 2); x ^= (x >> 3); x = x ^ (x >> 4); int y = x; x >>= 5; x ^= y; // almost the same but explicit return x; } int test_scheduler(int x) { return ((x>>2) & 15) ^ ((x>>3) & 31); } <=== ...I get the following result: ===> .file "test.cpp" .text .globl _Z13test_registeri .align 16, 0x90 .type _Z13test_registeri, at function _Z13test_registeri: # @_Z13test_registe...
2010 Apr 07
0
Problems with no method error with rufus scheduler
...t_jobs end And here I get an error.. etc. method check_for_new_print_jobs not found. The method is in the recipe controller /app/controllers/recipe_controller.rb class RecipeController < ApplicationController def index end def show end def check_for_new_print_jobs File.open(''test_scheduler'', ''a'') do |f1| f1 << "Hey, I am still alive" + Time.now.to_s+ "\n" end end ruby -v ruby 1.8.6 rails -v rails 2.3.5 Can anyone give me a hint? Is there something special to do, because I am calling a method out of a initializer file? Tha...