search for: start_type

Displaying 10 results from an estimated 10 matches for "start_type".

Did you mean: part_type
2010 Dec 14
0
[PATCH] BTRFS_IOC_TREE_SEARCH: store and use the last key found
...ct btrfs_ioctl_search_key". In general the values set are the last one returned "+1". But doing so we reduce the "acceptance criteria window". I propose to add three more fields in the struct btrfs_ioctl_search_key: + /* starting search key fields */ + __u32 start_type; + __u64 start_objectid; + __u64 start_offset; Is resposibility of the program to fill these fields during the begin of the search. If these are 0, the code set these to the min_* values. At the end of the search the kernel code stores the last key found + 1, in accordance of the &q...
2008 Jul 07
0
[ win32utils-Support Requests-11344 ] Can''t user win32-service inside of a Rails application
...struct Struct::Win32Service service_name="Abiosdsk", display_name="Abiosdsk", service_type="kernel driver", current _state="stopped", controls_accepted=nil, win32_exit_code=1077, service_specific_exit_code=0, check_point=0, wait_hint=0, binary_path_name=nil, start_type="disabled", error_control="ignore", load_order_group="Primary disk", tag_id=3, start_n ame=nil, dependencies=nil, description=nil, :interactive?=false, pid=0, service_flags=0> If I do the same inside a Rails controller like this it dies: gem "win32-service&qu...
2007 Jun 04
0
[ win32utils-Support Requests-11344 ] Can''t user win32-service inside of a Rails application
...struct Struct::Win32Service service_name="Abiosdsk", display_name="Abiosdsk", service_type="kernel driver", current _state="stopped", controls_accepted=nil, win32_exit_code=1077, service_specific_exit_code=0, check_point=0, wait_hint=0, binary_path_name=nil, start_type="disabled", error_control="ignore", load_order_group="Primary disk", tag_id=3, start_n ame=nil, dependencies=nil, description=nil, :interactive?=false, pid=0, service_flags=0> If I do the same inside a Rails controller like this it dies: gem "win32-service&qu...
2006 Jun 18
0
[ win32utils-Bugs-4699 ] Service dependencies are not being created properly
...=> 0.5.0 svc = Win32::Service.new() svc.create_service{ |s| s.service_name = "MyApache" s.display_name = "MyApacheSvc" s.service_description = "My Apache Svc Description" s.binary_path_name = "C:\Apache\2.0.52\bin\Apache.exe -k runservice" s.start_type = Win32::Service::AUTO_START s.dependencies = ["Tcpip", "Afd"] # both are valid } svc.close # REG_MULTI_SZ value created for DependOnService at # HKLM\SYSTEM\CurrentControlSet\Services\MyApache: # Tcpip # ? # Expected: # Tcpip # Afd ----------------------------------------...
2004 Feb 10
0
Daemon help
...ROGRAM = "c:\\daemon.rb" if ARGV[0]=="install" svc = Service.new svc.create_service{ |s| s.service_name = SERVICE_NAME s.display_name = SERVICE_DISPLAYNAME s.binary_path_name = ''ruby '' + PROGRAM s.dependencies = [] #s.start_type = Service::AUTO_START } svc.close puts "installed" elsif ARGV[0]=="start" Service.start(SERVICE_NAME) started = false while started == false s = Service.status(SERVICE_NAME) started = true if s.current_state == "running" break if...
2007 Apr 16
0
4 commits - libswfdec/swfdec_shape.c libswfdec/swfdec_stroke.c test/dump.c
..._accumulate_lines (shape, (SubPath *) path_array->data, path_array->len); for (i = 0; i < path_array->len; i++) { @@ -927,13 +936,14 @@ swfdec_morph_shape_get_recs (SwfdecSwfDe end_type = swfdec_shape_peek_type (end_bits); if (end_type == SWFDEC_SHAPE_TYPE_CHANGE && start_type != SWFDEC_SHAPE_TYPE_CHANGE) { SubPath *path; - g_array_set_size (start_path_array, start_path_array->len + 1); - path = &g_array_index (start_path_array, SubPath, start_path_array->len - 1); if (start_path) { start_path->x_end = start_x; start_path->y_en...
2008 Jun 04
12
Mongrel as Windows service with normal privileges
I am trying to run Mongrel 1.1.5 with mongrel_service 0.3.4 on Ruby 1.8.6 with a "normal" user account, i.e. a user which belongs only to the Windows group "Users". The rationale behind this is that running a web server with full administrative rights (e.g. Local System) is not something that I would like to do. Unfortunately, starting the service from the services control
2011 Jun 10
6
[PATCH v2 0/6] btrfs: generic readeahead interface
This series introduces a generic readahead interface for btrfs trees. The intention is to use it to speed up scrub in a first run, but balance is another hot candidate. In general, every tree walk could be accompanied by a readahead. Deletion of large files comes to mind, where the fetching of the csums takes most of the time. Also the initial build-ups of free-space-caches and
2007 Apr 13
0
5 commits - libswfdec/Makefile.am libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_font.c libswfdec/swfdec_loadertarget.c libswfdec/swfdec_movie.h libswfdec/swfdec_pattern.c libswfdec/swfdec_pattern.h libswfdec/swfdec_player.c
..., FALSE); + return swfdec_stroke_parse (s, FALSE); } static SwfdecPattern * parse_stroke_rgba (SwfdecSwfDecoder * s) { - return swfdec_pattern_parse_stroke (s, TRUE); + return swfdec_stroke_parse (s, TRUE); } int @@ -936,7 +937,7 @@ swfdec_morph_shape_get_recs (SwfdecSwfDe switch (start_type) { case SWFDEC_SHAPE_TYPE_CHANGE: start_path = swfdec_shape_parse_change (s, shape, start_path_array, start_path, &start_x, &start_y, - swfdec_pattern_parse_morph, swfdec_pattern_parse_morph_stroke); + swfdec_pattern_parse_morph, swfdec_stroke_parse_morph); end_path = sw...
2011 Jun 29
14
[PATCH v4 0/6] btrfs: generic readeahead interface
This series introduces a generic readahead interface for btrfs trees. The intention is to use it to speed up scrub in a first run, but balance is another hot candidate. In general, every tree walk could be accompanied by a readahead. Deletion of large files comes to mind, where the fetching of the csums takes most of the time. Also the initial build-ups of free-space-caches and