search for: belonged

Displaying 20 results from an estimated 7909 matches for "belonged".

2011 Feb 02
4
Testing whether a number belong to a set
Hello everyone, I am stuck with an apparently simple issue : i) I have two sets S1 and S2, each containing a large number of integers, say zip codes. ii) Now, I just want to test whether a particular zip code belong to S1 or S2 or neither of them. iii) If it belongs to S1, the area/region gets a particular label, say 1; if it belongs to S2, it gets a label 2 and if it doesnot belong to either S1
2012 Mar 12
1
SEM eigen value error 0 X 0 matrix
Using R-studio, I am trying to run a structural equation model and I am running into problems with testing my primary model. Once I specify everything and try to run it I get this error: Error in eigen(S, symmetric = TRUE, only.values = TRUE) : 0 x 0 matrix And when I look at the object for my primary model in my workspace, which is created after I specify it, it lists all my model components,
2006 Mar 23
2
Question About Scaffolding for My First Rails App
When using ruby to generate scaffolding, is there an easy way to add features that would be useful for keeping track of has_many and belongs_to relations? For example, suppose I have the following: Users Sites Pages Modules Each user has many pages, each site has many pages, each page has many modules, and also the belongs_to relation holds in the opposite order. I''m using the
2009 May 15
1
Newbie question - force file permission to user's secondary groups.
samba version is 3.0.28a-1ubuntu4.7 -- I created users on both samba and the linux system, and created 3 groups on the system. Each of these groups own a specific directory, the directory on the filesystem belongs to root.groupfoo. On my smb.conf I gave each of these groups write access to its directory (@groupfoo to the share /groupfoo). So now every linux user belonging to groupfoo can write
2007 Nov 14
1
has_many_polymorphs and acts_as_list ?
First, BRAVO for this wonderful plugin: has_many_polymorphs ! Now my problem: 4 models : Collection, Page, Fragment, Belonging (which is the join table): 1 class Collection < ActiveRecord::Base 2 has_many_polymorphs :elements, 3 :through => :belongings, 4 :from => [:pages, :fragments, :collections], 5 :as => :collector, 6 :parent_order =>
2002 Jun 17
0
network printing
Hi Huw, > > I am trying to run DacEasy Accounting for Windows version 9.0 > using codeweavers wine on redhat and Mandrake. I seem to be gaining > success with its operation but I seem not able to print. When I click on > the "Print" button, the program terminates. I tried to print running > window's notepad.exe and it works fine. I just added the following line
2004 Aug 25
2
copying over an existing file when not owner
SuSE 8.2/Samba 3.0.4-SerNet-SuSE One expects file's owner and date to be preserved when copying a file to an SMB share. But if a file with the same name is already there there are two different ways as to who will ultimately own the new file and what date will be stamped depending upon whether the file belongs to the copier or to someone else. If I try to copy a file to a samba share which
2007 Feb 16
1
Getting error Samba SID does not belong to our domain
Hi all we have samba 3.0.21c with OpenLDAP backend as PDC and also 4 BDC's Suddenly on PDC we are getting these error messages in /var/log/messages I am unable to register any system to the domain. niether able to logon to the domain. ########################################################################################## Feb 15 11:14:32 msdpl smbd[18212]: [2007/02/15 11:14:32, 0]
2011 Feb 19
1
Winbind, pdbedit - does not belong to our domain
Hi all, I have a problem that started last week with winbind on a member server. The network consists of the following: Openldap/Bind/DHCP Server (No Samba) PDC - CentOS Linux - Samba 3-3.5.6-43.el5 (sernet package) BDC - CentOS Linux - Samba 3-3.0.31-36 Proxy Server (with NTLM Auth) - Mandriva Linux - Samba 3.5.3-3.1mdv2010.1 All of these work fine but the proxy needs replacing so I've
2001 Dec 12
0
Solid Edge 7
Hi, I try to install Solid Edge 7.0 (one CAD prg), but wine give alway: "trace:file:CreateFileA D:\Setup.exe GENERIC_READ FILE_SHARE_READ OPEN_EXISTING trace:file:CreateFileA C:\WINDOWS\_delis32.ini GENERIC_READ FILE_SHARE_READ OPEN_EXISTING warn:file:CreateFileA Unable to get full filename from 'C:\WINDOWS\_delis32.ini'(GLE2) err:win:WIN_FindWndPtr window 10022 belongs to other
2006 Jul 11
1
Cannot copy back profile
Hi! I have a problem with roaming profiles which I don't understand. I can login and logout from XP with a samba PDC with ldapsam flawlessly, but for some reasons when the profile does not belong to the user itself windows tells me upon logout that it cannot copy back some files to the server. Weird, because the directory where the profile resides is readable and writable by the user,
2013 Feb 19
2
[LLVMdev] eliminateCallFramePseudoInstr belongs in TargetRegisterInfo or TargetFrameLowering
Hi all, I ran into this while trying to figure out why the X86 getSUBriOpcode/getADDriOpcode functions are duplicated, appearing once in X86RegisterInfo.cpp and once in X86FrameLowering.cpp, The method TargetRegisterInfo::eliminateCallFramePseudoInstr doesn't appear to really belong in this interface. It adds instructions into the MachineFunction given to it, which isn't what
2004 Nov 09
1
group a machine account belongs to (samba pdc)
Does it matter to what group a machine account belongs to? Does that group have to be mapped to a domain group with net groupmap? I created a local group in my linux box (samba pdc 3.0.7) called "machines" and I'm using it as primary group for all the machine accounts. Do I have to map this group to some windows group?
2008 Jan 26
3
GotoIf() on Auto-Attendant
Hello all, I'm planning to create a simple Auto-Attendant (IVR Menu) for my home PBX yet all callers from incoming (trunk) calls must only press the extension numbers from the [analog-ext] else will play the "pbx-invalid". How do you do that using the GotoIf() (or probably using the other applications) but will check if the numbers entered belongs to a specific context? Also, how
2009 Jun 27
6
User has many topics or subtopics
Hi, So i have users in the system and i have topics. Topics also have_many subtopics. What is the cleanest way to setup the AR relationships if a user can either have_many topics or subtopics ? Its basically a dual select box dropdown, where the second dropdown is optional. Is the best to have user_topics, and user_subtopics tables and manage that way ? or combine into one table with STI
2006 Feb 02
3
What is best way to show only records belonging to logged user?
Hi all, What is best way to show only records belonging to logged user? I understand that it is better to handle this in model and not controller. I am thinking of intercepting find methods in model and add clause something like "WHERE id_user = #{user_id}". I would like to hear if you would do it likewise and if yes is it better to hack find_by_sql() or find() method? thanks in
2007 Jul 09
2
ANOVA: Does a Between-Subjects Factor belong in the Error Term?
I am executing a Repeated Measures Analysis of Variance with 1 DV (LOCOMOTOR RESPONSE), 2 Within-Subjects Factors (AGE, ACOUSTIC CONDITION), and 1 Between-Subjects Factor (SEX). Does anyone know whether the between-subjects factor (SEX) belongs in the Error Term of the aov or not? And if it does belong, where in the Error Term does it go? The 3 possible scenarios are listed below: e.g., 1.
2001 Nov 29
2
Autocad without an installed Windows
Hello I tried to install an old version of autocad (13, student edition, Release 13c4a), on a MSWindows-free box. I ran : $ wine d:\setup32.exe It begun all right, I had the installation screens, then it failed with the following messages : err:win:WIN_FindWndPtr window 10029 belongs to other process err:win:WIN_FindWndPtr window 10021 belongs to other process err:win:WIN_FindWndPtr window
2002 Apr 20
2
How well ext3 will tolerate errors?
Hi! I would like to know how well ext3/(ext2) will tolerate underlaying errors (I am planning to use loop-AES backed ext3 fs). So if there is 1024 bytes corruption of data what will be the worst case: - If this data belongs to some file, this part of data(file) has been lost? - If this data belongs to superblock, I have to repair ext3 and use another superblock? - If this data belongs to
2015 Dec 08
2
Which mail does a certain attachment belong to?
I'm seeing this: ./17/3c/173c81da2aab91f225f8eb5e8fcc87119be4eff0-b38d990442316a54a90c00008f4649af: SecuriteInfo.com.TR.Kryptik.180736.5155.16748.22498.UNOFFICIAL FOUND ./17/3c/173c81da2aab91f225f8eb5e8fcc87119be4eff0-bc70851b03216a54483f00008f4649af: SecuriteInfo.com.TR.Kryptik.180736.5155.16748.22498.UNOFFICIAL FOUND When scanning the "attachments" directory of my mdbox. How can