search for: assignment

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

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
...er.c [2851/3655] Compiling source3/utils/net_rpc_shell.c "../source3/utils/net_cache.c", line 87.56: 1506-226 (S) The ":" operator is not allowed between "char[1]" and "int". "../source3/utils/net_cache.c", line 86.18: 1506-280 (W) Function argument assignment between types "const char*" and "int" is not allowed. "../source3/utils/net_cache.c", line 96.35: 1506-280 (W) Function argument assignment between types "const char*" and "int" is not allowed. "../source3/utils/net_cache.c", line 184.35:...
2007 Dec 10
19
[VTD][PATCH] Change xc_assign_device()
...y 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 the devices can be assigned or not, and move real device assignment to qemu. Signed-off-by: Weidong Han <weidong.han@intel.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
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...
2014 Feb 09
1
classicupgrade error
Hi all. I'm doing an upgrade from samba 3.4.8 domain to samba 4.1 I followed this guide: http://wiki.samba.org/index.php/Samba4/samba-tool/domain/classicupgrade/HOWTO I'm upgrading on a new virtual server (for testing purposes). Executing the command /usr/local/samba/bin/samba-tool domain classicupgrade --dbdir=/root/samba3/ --use-xattrs=yes /root/smb.conf (where /root/samba3/ contains
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
Hi, we run ctdb with samba on SLES11. It was running for some month ok but after an update of the system and ctdb it fails to run. I tried to setup a new ctdb setup on two other nodes and it still fails with the same error. After startup the status is: > ctdb status > Number of nodes:2 > pnn:0 10.94.43.7 DISABLED > pnn:1 10.94.43.8 DISABLED (THIS NODE) >
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
...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 pointer from integer without a cast passdb/pdb_ldap.c: In function `ldapsam_update_sam_account': passdb/pdb_ldap.c:1699: warning: assignment makes pointer from integer without a cast passdb/pdb_ldap.c: In function `ldapsam_add_sam_account': passdb/pdb_ldap.c:1846: warning: assignment...
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 and dat2 is not an error. I'm pulling data from 2 sources for the model. for (i in 1:dim(dat2)[[1]]) { assign("modelb",i) &l...
2016 Mar 16
3
IRBuilder Assignment ( '=' ) operator?
However I need the standard assignment operator so I can assign the value of a temporary to that of another temporary, or to create a new temporary from an existing one. - Paul ________________________________________ From: Tim Northover <t.p.northover at gmail.com> Sent: 16 March 2016 13:11 To: Paul Hancock Cc: llvm-dev at list...
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 non-language object Any suggestions? FS
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
...he 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 Now, what I'd like to do is something like this: assign("xList[[3]]",c,testEnv) But the assign() help says: "assign does not dispatch assignment methods, so it cannot be used to set elements of vectors, names, attributes, etc." So that's no good. Also, this fails: attach(testEnv) xList[[3]] <<- c detach(testEnv) because, as the attach() help says: "If you use <<- or assign to assign to an attached database, you...
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 =>
2011 Jan 27
3
Static assignment of SCSI device names?
Hello list members, In CentOS-5.5 I'm trying to achieve static assignment of SCSI device names for a bunch of RAID-60 drives on a Supermicro motherboard. The "scsi_id" command identifies all drives ok. The board has one SATA controller and three SAS/SATA controllers ... standard on-board ICH-10 ATA channels, an on-board LSI SAS/SATA controller, and two ad...
2023 Mar 11
3
Multiple Assignment built into the R Interpreter?
...ply 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 multi input and output functions e.g. in Matlab or Julia. > Honestly, given that this is simpl...
2023 Mar 19
1
WISH: Optional mechanism preventing var <<- value from assigning non-existing variable
...the search list. > > -Bill > > On Sun, Mar 19, 2023 at 10:54?AM Duncan Murdoch <murdoch.duncan at gmail.com> > wrote: > > > I think that should be the default behaviour. It's pretty late to get > > that into R 4.3.0, but I think your proposal (with check.superassignment > > = FALSE being the default) could make it in, and 4.4.0 could change the > > default to TRUE. > > > > Duncan > > > > > > > > On 19/03/2023 12:08 p.m., Henrik Bengtsson wrote: > > > I'd like to be able to prevent the <<- assignmen...
2023 Mar 12
2
Multiple Assignment built into the R Interpreter?
Thanks Gabriel and Kevin for your inputs, regarding your points Gabriel, I think Python and Julia do allow multiple sub-assignment, but in-line with my earlier suggestion in response to Duncan to make multiple assignment an environment-level operation (like collapse::%=% currently works), this would not be possible in R. Regarding the [a] <- coolest_function() syntax, yeah it would mean do multiple assignment and set a eq...
2024 Apr 05
1
Bug in out-of-bounds assignment of list object to expression() vector
...igning to the same index, using a different incompatible object > that does not share this bug (like a function) Here's how the problem happens: 1. The call lands in src/main/subassign.c, do_subassign2_dflt(). 2. do_subassign2_dflt() calls SubassignTypeFix() to prepare the operand for the assignment. 3. Since the assignment is "stretching", SubassignTypeFix() calls EnlargeVector() to provide the space for the assignment. The bug relies on `x` not being IS_GROWABLE(), which may explain why a plain x[[4]] <- list() sometimes doesn't fail. The future assignment result `x` is...