search for: assigned

Displaying 20 results from an estimated 21812 matches for "assigned".

2003 Apr 24
3
Keyboar problems
Hi, I can't install a program and I think that the problem is the keyboard. The log file is above. Could anyoune help me? Thanks, Savio Ramos fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found! Using closest match instead (Brazilian ABNT-2 keyboard layout) for scancode mapping. Please define your layout in windows/x11drv/keyboard.c and submit them to us for
2013 Jan 07
2
Samba 4 on AIX with XLC
Has anyone tried building Samba 4.0 on AIX with XLC? I'm moving right along, but tripping up on some bugs in source3/utils/net_rpc.c, source3/utils/net_rpc_printer.c, and source3/utils/net_cache.c where there is an invalid use of the ":" operator. According to some other posts on the PostgreSQL forum, this shouldn't compile anywhere, even though GCC apparently allows it??
2007 Dec 10
19
[VTD][PATCH] Change xc_assign_device()
Currently we assign devices with VT-d in Xend, this raises two issues: 1) assign devices regardless of they are hidden by pciback or not. If the device is not hidden, it results in the device doesn''t work in Dom0; 2) device is assigned one by one, if assign multiple devices, some devices may have been assigned when problem happens, it results in assigned devices don''t work in Dom0. I think Xend is not a good place to assign devices. This patch adds a parameter to xc_assign_device(), let it just do check in Xend whether t...
2006 Jul 26
2
newbie - HABTM confused...
I have a users table. I have a assignment table. and I have to log in to see my assignments. i can and I hasve a session id. I can make a new assignment and save my id in the user_id field of the assigment table. I want to share my assignments. so I can create a assignments_users table. this way I can have assignment 1 shared with user 1 and 2. and If I log in as user 1 or 2 I see the assignment.
2014 Feb 09
1
classicupgrade error
...npack_nt_owners: owner sid mapped to uid 0 unpack_nt_owners: group sid mapped to gid 512 set_nt_acl: chown /var/lib/samba/sysvol/cormatex.lan/Policies/{6AC1786C-016F-11D2-945F-00C04FB984F9}/MACHINE. uid = 0, gid = 512. idmap range not specified for domain '*' get_privileges: No privileges assigned to SID [S-1-5-21-1989517481-1145787036-873022862-1000] get_privileges: No privileges assigned to SID [S-1-5-21-1989517481-1145787036-873022862-512] get_privileges: No privileges assigned to SID [S-1-5-21-1989517481-1145787036-873022862-572] get_privileges: No privileges assigned to SID [S-1-5-2...
2007 Apr 05
3
Extending assigns in controller specs?
Hello, I am interested in enhancing assigns in controller specs to do things like the following assigns[:key1, :key2, :key3] #=> vals for keys Is there away to "break open" this construction to overload the :[] operator? Thanks. -Chris
2012 May 24
0
Could not find node to take over public address
...tdb will not be able to assign the public ip addresses. On the first node I get repeatedly: > 2012/05/24 14:32:09.408217 [ 6773]: Forced running of eventscripts with argument > s ipreallocated > 2012/05/24 14:32:09.442628 [recoverd: 6800]: Public address '10.94.43.67' is not > assigned and we could serve this ip > 2012/05/24 14:32:09.442643 [recoverd: 6800]: Public address '10.94.43.66' is not > assigned and we could serve this ip > 2012/05/24 14:32:09.442648 [recoverd: 6800]: Public address '10.94.43.65' is not > assigned and we could serve this ip...
2011 Oct 17
3
cut data into sevral group and assign calculated values individually
Hi All, I have some data from which I set four points to be breaks. Based on these points, I cut the dataset into four groups and assign a number to it: <=331.04 assign 0 >331.04 <=476.07 assign data-331.04/(476.07-331.04) >476.07<=608.66 assign 1 >608.66 <=791.5 assign 791.5- data/(791.5-608.66) > 791.5 and NA assign 0 Breaks 331.04 476.07
2004 Dec 14
2
compiling problem with ldap support
hi, I'm trying to compile samba with ldap support, which is supposed to be a default in the 3.0.9 package, but i got an error msessage when i tried make, something like this : Compiling dynconfig.c Compiling smbd/vfs.c Compiling passdb/pdb_interface.c Compiling passdb/pdb_ldap.c passdb/pdb_ldap.c: In function `ldapsam_delete_entry': passdb/pdb_ldap.c:295: warning: assignment makes
2012 Nov 01
2
Name assignment in for loop
Dear helpeRs- I'm using a for loop to create a series of models. I'm trying to assign a name to each model created, using the loop index. The loop gets stuck at the name of the model, giving the error "target of assignment expands to non-language object". The linear model runs without error; only the name is problematic. Here is the current loop syntax. The use of dat
2016 Mar 16
3
IRBuilder Assignment ( '=' ) operator?
...ns. When this is transcribed to the textual IR, LLVM will put in the appropriate assignments (so it won't try to assign a store to anything for example, because it doesn't produce a value that can be used elsewhere). The Name parameter you pass to CreateAdd determines what variable will be assigned, otherwise an incrementing number will be used (%1, %2, ...). Cheers. Tim.
2005 Apr 27
3
assign to an element of a vector
I am trying to find a way to assign values to elements of a vector that will be defined by a user. So I don't have the name of the vector and cannot hard code the assignment in advance. In the example below I have to get() the vector using its name. When I try to assign to an element I get an error: > a <- c(1,2,3) > get('a')[1] <- 0 Error: Target of assignment expands to
2016 Oct 14
2
Generate Register Indirect mode instruction
> If I understand correctly: > > %v1 = load i32, i32* %a > %v2 = load i32, i32* %b > %v3 = add i32 %v1, %v2 > store i32 %v3, i32* %c > > maps to (using invented mnemonics): > > ASSIGN R0, %a > ASSIGN R1, %b > ASSIGN R2, %c > ADD *R2, *R0, *R1 > > I.e. pattern > (store %c, (add (load %a), (load %b))) > becomes > (ADD (ASSIGN R2, %c), (ASSIGN
2011 Mar 17
1
assigning to list element within target environment
I would like to assign an value to an element of a list contained in an environment. The list will contain vectors and matrices. Here's a simple example: # create toy environment testEnv = new.env(parent = emptyenv()) # create list that will be in the environment, then assign() it x = list(a=1,b=2) assign("xList",x,testEnv) # create new element, to be inserted into xList c = 5:7
2007 Jul 25
5
editing multiple models in one form
Very new to this but would appreciate a hand as this is driving me mad, I''m trying to update both degree and assigned from a single form, the degree section updates fine but assigned just retains the same values, any help much appreciated! my edit.rhtml file looks like: <h1>Editing degree</h1> <%= error_messages_for :degree %> <%= start_form_tag :action => ''update'', :i...
2011 Jan 27
3
Static assignment of SCSI device names?
...changes, and the udev assignment should fail, probably assigning an unexpected /dev/sd? name. RAID rebuild would choke until I change the MD device assignment. Is it possible to assign SCSI drive names by hardware path instead? I especially want the three RAID1+spare boot drives to always be assigned sda/sdb/sdc, because that sorts out other issues I'm having in CentOS-5. In the udev rules file I tried piping the output of "scsi_id -g -i -u -s /block/..." through "cut" to extract the path, but I get no match string when I run "udevtest" against that block d...
2023 Mar 11
3
Multiple Assignment built into the R Interpreter?
...I see the point here. I evaluated 1 + (d = dim(mtcars); nr = d[1]; nc = d[2]; rm(d)), which simply gives a syntax error, as the above expression should. `%=%` assigns to environments, so 1 + (c("A", "C") %=% init_matrices()) returns numeric(0), with A and C having their values assigned. > suppose f() returns list(A = 1, B = 2) and I do > B, A <- f() > Should assignment be by position or by name? In other languages this is by position. The feature is not meant to replace list2env(), and being able to rename objects in the assignment is a vital feature of codes using...
2023 Mar 19
1
WISH: Optional mechanism preventing var <<- value from assigning non-existing variable
...s willing to go up exactly one frame from the current one to find its binding. That is how I essentially always am using <<- myself. ~G On Sun, Mar 19, 2023, 11:16 AM Bill Dunlap <williamwdunlap at gmail.com> wrote: > Why should it make an exception for cases where the about-to-be-assigned-to > name is present in the global environment? I think it should warn or give > an error if the altered variable is in any environment on the search list. > > -Bill > > On Sun, Mar 19, 2023 at 10:54?AM Duncan Murdoch <murdoch.duncan at gmail.com> > wrote: > > >...
2023 Mar 12
2
Multiple Assignment built into the R Interpreter?
...nce of 4 statements. > > > > Duncan Murdoch > > > > as the > > > above expression should. `%=%` assigns to > > > environments, so 1 + (c("A", "C") %=% init_matrices()) returns > > > numeric(0), with A and C having their values assigned. > > > > > >> suppose f() returns list(A = 1, B = 2) and I do > B, A <- f() > > Should assignment be by position or by name? > > > > > > In other languages this is by position. The feature is not meant to > > > replace list2env(), and bei...
2024 Apr 05
1
Bug in out-of-bounds assignment of list object to expression() vector
On Fri, 5 Apr 2024 08:15:20 -0400 June Choe <jchoe001 at gmail.com> wrote: > When assigning a list to an out of bounds index (ex: the next, n+1 > index), it errors the same but now changes the values of the vector > to NULL: > > ``` > x <- expression(a,b,c) > x[[4]] <- list() # Error > x > #> expression(NULL, NULL, NULL) > ``` > > Curiously,