search for: unsolv

Displaying 20 results from an estimated 264 matches for "unsolv".

Did you mean: unsold
2011 Mar 06
2
Monte carlo help
...ek and I am just going to use those numbers for my probability for each hours a <- 0; # probability of students coming in tutors <- 2; # number of tutors cat("week", "weekday", "hours", "tutors", "students", " solved", " unsolved","\n"); total_stud <- 0; #total student number total_solved <- 0; #total number of questions answered total_unsolved <- 0; #total number of questions unanswered for (week in 1:3) { for (weekday in 1:5) { for (hours in 1:11) { solved <- 0; unsolved <- 0;...
2011 Sep 01
0
UNSOLVED: Fwd: generate correlated qualitative data
The problem remain unsolved. If you have any idea please do suggest .................... thank you; Ram H On Wed, Aug 31, 2011 at 12:06 PM, Ram H. Sharma <sharma.ram.h@gmail.com>wrote: > Dear R experts: > > I have following problem: > > # myfunction > mfun1 <- function(x) { > if ( x ==...
2008 Jun 19
7
JUST A COUPLE OF NUBBY QUESTIONS BETWEEN ME AND FREEDOM
1. What does ~ mean? cd ie. "~/.wine/drive_c/" 2. Steam runs. Hurray. But I can't chat with friends. I can see their messages, but not mine. I assume they never get them because they never say anything more. 3. I launch TF2, I get the valve logo, source logo, then BAM back to desktop. No error boxes. And my screen resolution stays "minimized" to what tf2 was
2019 Jul 04
2
unsolved: Re: solved: how to create a working certificate for using TLS?
On 6/27/19 12:11 PM, hwilmer wrote: > On 6/26/19 1:33 PM, hwilmer wrote: >> >> Hi, >> >> how can I create a self-signed certificate for asterisk which >> actually works? > > follow this guide: > https://fabianlee.org/2018/02/17/ubuntu-creating-a-trusted-ca-and-san-certificate-using-openssl-on-ubuntu/ > This has again, and for no reason, ceased to
2002 Oct 01
1
Unsolved symbols: meet_ Tcl_EvalObjv (PR#2090)
Running 'make check' I get two errors: running code in 'mva-Ex.R' .../usr/lib/dld.sl: Unresolved symbol: meet_ (code) from /users1/kleiweg/R-1.6.0-source/library/cluster/libs/cluster.sl running code in 'tcltk-Ex.R' .../usr/lib/dld.sl: Unresolved symbol: Tcl_EvalObjv (code) from /users1/kleiweg/R-1.6.0-source/library/tcltk/libs/tcltk.sl Version: platform =
2019 Jul 05
2
unsolved: Re: solved: how to create a working certificate for using TLS?
On 7/5/19 10:50 AM, Doug Lytle wrote: > On 7/4/19 6:40 PM, hw wrote: >> This has again, and for no reason, ceased to work again after >> restarting asterisk.  No matter what I try, I can't create a >> certificate asterisk >> would verify. > > Have you considered using LetsEncrypt for a valid certificate? > > Doug > > What would be the point
2006 Oct 24
2
Unsolved : mbox-sync-rewrite.c : assertion failed
Some days ago I wrote about an inaccessible mailbox after an upgrade from 0.99.14 to 1.0rc10. Today I get this problem with another mailbox but it seems to be it is not only related to the upgrade : - user comes back from holiday, does not see his inbox : dovecot: Oct 24 18:51:09 Error: IMAP(abcd): file mbox-sync-rewrite.c: line 405 (mbox_sync_read_and_move): assertion failed: (need_space ==
2002 Mar 05
1
Printing Unsolved: samba-2.2.3a, w2k and point & print (HP printers?)
Hi all, SHOULD POINT AND PRINT WORK WITH OPTIONAL DEVICE PARTS (eg. DUPLEX UNIT)? (If anyone managed to get it work please tell me:-)) Problem Description: =============== We have samba-2.2.3a (with patched srv_spoolss_nt) running on SuSE 7.3 with kernel version 2.4.17-SMP. Clients are running Windows 2000 SP2. We have several HP printers. We want to distribute the print drivers using
2017 Jan 17
0
UNSOLVED: Difficulties with Windows XP: failed to find cifs/fileserver.y.z@Y.Z in keytab (arcfour-hmac-md5)
Samba - General mailing list wrote > On Tue, 17 Jan 2017 04:30:31 -0800 (PST) > rawi via samba &lt; > samba at .samba > &gt; wrote: > >> Oh and I forgot, I am running a DNS server on the DC, on the right >> port and with all my clients are needing. >> They are only not served trough samba but directlly by bind. If they >> (clients) would see any
2004 Sep 26
3
Unsolvable segmentation fault
I cannot use wine with my windows partition. Whenever I try it , I immediatly get segmentation fault messagens (even when trying to run notepad.exe). If I modify the ~/.wine/dosdevices/c: simlink then wine seems to work well (but this is not a good solution, because I want wine to find programs and dlls in my windows partition). I use kurumin (a brazillian distro based on KNOPPIX. It is basically
2019 Jul 05
3
unsolved: Re: solved: how to create a working certificate for using TLS?
On 7/5/19 9:22 PM, Steve Murphy wrote: > hw-- > > I see this kind of behavior when the certificate expires... you've > probably checked this, but sometimes we > miss little details like that. I thought about that and checked the configuration I've been using to create the certificate, and I can't see anywhere that it would expire earlier than after 3650 days. Is
2019 Jul 05
2
unsolved: Re: solved: how to create a working certificate for using TLS?
On 7/5/19 9:32 PM, John Runyon wrote: > On Fri, 5 Jul 2019 at 14:28, hw <hw at gc-24.de <mailto:hw at gc-24.de>> wrote: > > I thought about that and checked the configuration I've been using to > create the certificate, and I can't see anywhere that it would expire > earlier than after 3650 days.  Is there another way to check this? > >
2010 Jun 01
1
Definite app_jack trouble - unsolvable
Greetings! I now found someone to test gtalk with and found out, that app_jack has a problem here. My voice gets transmitted fine, but I only get white noise from the other party. I tried to set my JACK samplerate to 8000 to make sure it's no libresample problem, the results were the same. My setup is: Linux Debian Lenny Kernel: 2.6.30.4 PREEMPT (self-built) JACKd: jackd version
2007 Jun 14
1
rspec will_paginate
.... params[:filter_by] will filter the paginate list accordingly. Tickets Controller: def index @tickets = Ticket.filter_status_by(params[:filter_by],params[:page]) end Ticket Model: def self.filter_status_by(status, page, per_page = 10) conditions = {:status => false} if status == "unsolved" conditions = {:status => true} if status == "solved" return Ticket.paginate(:page => page, :per_page => per_page, :conditions => conditions) end describe TicketsController, "handling GET /tickets" do before do @tickets = mock_model(Ticket) Ti...
2017 Jan 17
2
UNSOLVED: Difficulties with Windows XP: failed to find cifs/fileserver.y.z@Y.Z in keytab (arcfour-hmac-md5)
On Tue, 17 Jan 2017 05:54:41 -0800 (PST) rawi via samba <samba at lists.samba.org> wrote: > > No, I have dhcp and a full bind9 serving master zones forward and > reverse, with exception of the _msdcs... SOA, which I let only > forward and it seems enough... I have been using BIND_DLZ and DHCP updating the Samba AD database for the last 4 years without problem. > >
2008 Oct 13
0
Re : using predict() or fitted() from a model with offset; unsolved, included reproducible code
Thanks for your reply Mark, but no, using predict on the new data.frame does not help here. ? I had first thought that the probelm was due?the?explanatory variable (age)?and?the offset one (date) being?very similar (highly?correlated, I am trying to tease their effect apart, and hoped offset would help in this since I know the relationship with age already). But this appears not to be the case.
2010 Dec 16
6
AHCI or IDE?
Hello All, I want to build a home file and media server now. After experiment with a Asus Board and running in unsolve problems I have bought this Supermicro Board X8SIA-F with Intel i3-560 and 8 GB Ram http://www.supermicro.com/products/motherboard/Xeon3000/3400/X8SIA.cfm?IPMI=Y also the LSI HBA SAS 9211-8i http://lsi.com/storage_home/products_home/host_bus_adapters/sas_hbas/internal/sas9211-8i/index.html rpool...
2017 Jan 17
2
UNSOLVED: Difficulties with Windows XP: failed to find cifs/fileserver.y.z@Y.Z in keytab (arcfour-hmac-md5)
On Tue, 17 Jan 2017 04:30:31 -0800 (PST) rawi via samba <samba at lists.samba.org> wrote: > Samba - General mailing list wrote > > And there is your problem, AD lives (or dies) on DNS, unlike NT. You > > have this line 'dns-nameservers 127.0.0.1' in your smb.conf. It is > > useless, it is pointing to itself and you are not running a dns > > server, even if
2016 Jun 08
2
Samba AD member lost domain join after reboot
...led And vice versa in the opposite direction. Obviously I can integrate a single domain member server. With only one Samba server a domain member, it works correctly. That's when I joined the second server, the first server loses the field. I reinstalled completely on Debian and Samba SMB2: unsolved problem. I installed a new domain controller without replication: unsolved problem. I do not understand because SMB2 is a new install, no servers have been cloned. I checked my hostname, MAC address, there is no duplicate on the servers. Alexis. On 08/06/2016 09:22, Alexis RIES wrote: > H...
2007 Jul 12
2
unresolved symbols in PV driver for HVM
...etfront_accelerator_call_suspend xen_vnif: Unknown symbol netfront_load_accelerator xen_vnif: Unknown symbol netfront_accelerator_call_remove xen_vnif: Unknown symbol init_accelerator_vif xen_vnif: Unknown symbol balloon_release_driver_page netfront/accel.c is not included in Kbuild, but still has unsolved symbol after add accel.o in Kbuild. Changes in PV side easily break PV driver on HVM:( Thanks, -- best rgds, edwin _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel