search for: mps

Displaying 20 results from an estimated 207 matches for "mps".

Did you mean: mpss
2006 Oct 03
4
how ot replace the diagonal of a matrix
Dear useRs, Trying to replace the diagonal of a matrix is not working for me. I want a matrix with .6 on the diag and .4 elsewhere. The following code looks like it should work--when I lookk at mps and idx they look how I want them too--but it only replaces the first element, not each element on the diagonal. mps <- matrix(rep(.4, 3*3), nrow=n, byrow=TRUE) idx <- diag(3) mps idx mps[idx] <- rep(.6,3) I also tried something along the lines of diag(mps=.6, ...) but it didn't know...
2016 Mar 03
1
[PATCH] mllib: factor out mounting of guest root
...ed, 34 insertions(+), 44 deletions(-) diff --git a/builder/builder.ml b/builder/builder.ml index 1f9a472..debd7e3 100644 --- a/builder/builder.ml +++ b/builder/builder.ml @@ -664,15 +664,7 @@ let main () = let root = match Array.to_list (g#inspect_os ()) with | [root] -> - let mps = g#inspect_get_mountpoints root in - let cmp (a,_) (b,_) = - compare (String.length a) (String.length b) in - let mps = List.sort cmp mps in - List.iter ( - fun (mp, dev) -> - try g#mount dev mp - with G.Error msg -> warning (f_"%s (ignored...
2010 Jul 21
3
smbd -D hangs
I'm testing both sunfreeware and official sun (sfw) samba on Solaris 10. For some reason since yesterday, the smbd process just "hangs" at the start. No log is generated on server side Where smbd is started, I can't find any open port on 139 or 145 My OS is Solaris 10 # uname -a SunOS labo2 5.10 Generic_142900-13 sun4v sparc SUNW,SPARC-Enterprise-T5120 #
2007 Oct 05
9
I can''t make RSpec 1.0.8 run in Rails 1.2.3
...ruby script/plugin install svn://rubyforge.org/var/svn/rspec/tags/REL_1_0_8/rspec_on_rails ruby script/generate rspec And apparently everything was ok. But when I do a "rake spec" on the app folder none of the Rails models are visible. Here is the error: (in C:/Projects/Rails/Workspace/MPS) ./spec/report_class_spec.rb:4: uninitialized constant ReportClass (NameError) I just have this on report_class_spec.rb: describe ReportClass, ''#new'' do end ReportClass was already created on app/models. When I add the following line at the top of the file it complains about Ac...
2011 Jun 28
1
"x86-64: EFI boot code" breaks 32-bit build
...d as errors mpparse.c: In function ''efi_check_config'': mpparse.c:669: error: format ''%08llx'' expects type ''long long unsigned int'', but argument 2 has type ''long unsigned int'' In xen/include/xen/efi.h: 23616: unsigned long mps; /* MPS table */ In xen/arch/x86/mpparse.c (line 669): 23616: printk(KERN_INFO "SMP MP-table at %08"PRIx64"\n", efi.mps); Should mps be uint64_t ? What about the other fields in struct efi ? Ian. _______________________________________________ Xen-devel ma...
2006 Jan 10
5
Oracle 10g Express - generate scaffold gives error
Hello, I have Oracle XE installed. I have a table USERS. When I try to generate a scaffold it gives me this error. I tried also with Mysql and it worked. E:\radrails\projects\MPS>ruby script\generate scaffold user exists app/controllers/ exists app/helpers/ create app/views/user exists test/functional/ dependency model exists app/models/ exists test/unit/ exists test/fixtures/ create app/models/user.rb...
2018 Apr 10
0
[PATCH v2 4/5] daemon: move Mount.umount_all to new Mount_utils module
...*) - (* XXX - aug_finalize (); - hivex_finalize (); - journal_finalize (); - *) - - let sysroot = Sysroot.sysroot () in - let sysroot_len = String.length sysroot in - - let info = read_whole_file "/proc/self/mountinfo" in - let info = String.nsplit "\n" info in - - let mps = ref [] in - List.iter ( - fun line -> - let line = String.nsplit " " line in - (* The field of interest is the 5th field. Whitespace is escaped - * with octal sequences like \040 (for space). - * See fs/seq_file.c:mangle_path. - *) - if List.leng...
2006 May 30
6
[PATCH][HVMLOADER][DISCUSS] 8 way default rombios
Attached simple patch modifies the rombios and hvmloader Makefiles to default to an 8-way bochs bios for the hvmloader. Is there a reason to not define the mp config table by default for >1 processors (8), in the repository? Seems like using the hvm guest config file can the methodolody to describe a UP guest regardless of the mptables. Defaulting the rombios to MP would allow users to
2013 Oct 03
0
mps in GENERIC in FreeBSD 9.2R i386
...sd-stable at freebsd.org [mailto:owner-freebsd- > > > stable at freebsd.org] On Behalf Of Kenneth D. Merry > > > Sent: Monday, October 01, 2012 8:58 PM > > > To: John Baldwin > > > Cc: Harald Schmalzbauer; freebsd-stable at freebsd.org > > > Subject: Re: mps in GENERIC, only in amd64? (RELENG_9_1) > > > > > > On Mon, Oct 01, 2012 at 08:49:36 -0400, John Baldwin wrote: > > > > On Saturday, September 29, 2012 5:58:42 am Harald Schmalzbauer wrote: > > > > > Hello, > > > > > > > > >...
2017 Jul 17
0
[PATCH v9 04/11] daemon: Implement umount_all in OCaml.
...*) + (* XXX + aug_finalize (); + hivex_finalize (); + journal_finalize (); + *) + + let sysroot = Sysroot.sysroot () in + let sysroot_len = String.length sysroot in + + let info = read_whole_file "/proc/self/mountinfo" in + let info = String.nsplit "\n" info in + + let mps = ref [] in + List.iter ( + fun line -> + let line = String.nsplit " " line in + (* The field of interest is the 5th field. Whitespace is escaped + * with octal sequences like \040 (for space). + * See fs/seq_file.c:mangle_path. + *) + if List.leng...
2017 Aug 09
0
[PATCH v12 05/11] daemon: Implement umount_all in OCaml.
...*) + (* XXX + aug_finalize (); + hivex_finalize (); + journal_finalize (); + *) + + let sysroot = Sysroot.sysroot () in + let sysroot_len = String.length sysroot in + + let info = read_whole_file "/proc/self/mountinfo" in + let info = String.nsplit "\n" info in + + let mps = ref [] in + List.iter ( + fun line -> + let line = String.nsplit " " line in + (* The field of interest is the 5th field. Whitespace is escaped + * with octal sequences like \040 (for space). + * See fs/seq_file.c:mangle_path. + *) + if List.leng...
2016 Mar 04
0
kernel parm question: MPS? pcie_bus_safe
...start rebooting, a number of times per day. So, I'm hoping to find a runtime kernel parm I can set, or it might be something I can set using ipmitool. However, in googling, I found one or two folks setting pcie_bus_safe to resolve what I see with ipmitool sel list. What I cannot find is what MPS is an acronym off... I've seen references to metal performance shaders, and to an LSI fusion driver. Can someone set me straight on this? Any suggestions would also be very appreciated. mark
2016 Jun 01
2
[PATCH v2] rescue: add --autosysroot option RHBZ#1183493
--autosysroot option uses suggestions to user on how to mount filesystems and change root suggested by --suggest option in virt-rescue. Commands are passed on kernel command line in format guestfs_command=command;. Command ends with a semicolon and there can be multiple commands specified. These are executed just before bash starts. On successfull run user is presented directly with bash in
2012 Mar 25
2
build postfix rpm with mysql
...: /usr/mysql/include:/usr/mysql/lib # - The order is important and only 2 directories may # be given. # requires_db - used to add dbX dependencies in the package # smtpd_multiline_greeting - my patch to allow multiline banner # mps - man page suffix, .gz except Mandrake >= 8 which uses .bz2 # with_cdb - include CDB support by Michael Tokarev # <mjt at corpit.ru> # with_dovecot - include DOVECOT SASL authentication # with_ldap - include LDAP su...
2004 Aug 27
2
No audio on PRI channel answered by Playback() orMeetMe()
...n SIP/2000 and then after time-out send >it to MeetMe() or Playback() it works and the caller hears the .gsm file. >Any assistance in solving this problem is appreciated. > >[nec_pri] >; Digital PRI from the NEAX2400 > >exten => 2688,1,Wait,3 >exten => 2688,2,MeetMe,|Mps >exten => 2688,3,Hangup > I had a similar problem with my system, and I was able to fix the problem by executing Answer before I entered any other applications. Using your previous example: exten => 2688,1,Answer exten => 2688,2,Wait,3 exten => 2688,3,MeetMe,|Mps exten => 26...
2015 May 21
1
Re: [PATCH v3 1/3] virt-ls: support drive letters on Windows
...CLEANUP_FREE variables to NULL, otherwise the cleanup routine will try to free a garbage pointer. > g = guestfs_create (); > if (g == NULL) { > @@ -362,19 +366,28 @@ main (int argc, char *argv[]) > if (guestfs_launch (g) == -1) > exit (EXIT_FAILURE); > > - if (mps != NULL) > + if (mps != NULL) { > mount_mps (mps); > - else > + } else { > inspect_mount (); > + win_root = get_windows_root (); > + } Hm why doing that only when inspecting? Other tools (e.g. virt-cat) do this also when specifying mount points. > >...
2015 Feb 16
5
[LLVMdev] What is on the LLVM horizon for truly relocatable JITted code?
...independent JITted code on the horizon or currently possible with LLVM? I’ve written a Common Lisp compiler (currently called Clasp: https://github.com/drmeister/clasp) in C++ that uses LLVM as the backend and interoperates with C++. It uses copying garbage collection via the Memory Pool System (MPS) garbage collector by Ravenbrook. This garbage collector is precise on the heap and conservative on the stack. Currently I JIT code to wherever LLVM drops the code and it remains fixed in memory. This causes some problems for implementing a dynamic language like Common Lisp because CL considers...
2016 Jun 01
0
[PATCH v2] rescue: add --autosysroot option RHBZ#1183493
...@ do_suggestion (struct drv *drvs) if (roots[0] == NULL) { suggest_filesystems (); - return; + return NULL; } printf (_("This disk contains one or more operating systems. You can use these mount\n" @@ -436,10 +526,16 @@ do_suggestion (struct drv *drvs) qsort (mps, guestfs_int_count_strings (mps) / 2, 2 * sizeof (char *), compare_keys_len); - for (j = 0; mps[j] != NULL; j += 2) - printf ("mount %s /sysroot%s\n", mps[j+1], mps[j]); + /* First we save commands to mount system root. */ + for (j = 0; mps[j] != NULL; j += 2)...
2011 Nov 19
4
build postfix spec w/ mysql
...: /usr/mysql/include:/usr/mysql/lib # - The order is important and only 2 directories may # be given. # requires_db - used to add dbX dependencies in the package # smtpd_multiline_greeting - my patch to allow multiline banner # mps - man page suffix, .gz except Mandrake >= 8 which uses .bz2 # with_cdb - include CDB support by Michael Tokarev # <mjt at corpit.ru> # with_dovecot - include DOVECOT SASL authentication # with_ldap - include LDAP su...
2006 Apr 25
0
[PATCH] honor apic= despite MADT/MPS OEM match
While other aspects of the system configuration may still be controlled by the outcome of the table scan, if apic= was given on the command line its effect should not be overridden here. Signed-off-by: Jan Beulich <jbeulich@novell.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel