Displaying 20 results from an estimated 77 matches for "oldnames".
Did you mean:
oldname
2006 Jan 12
2
Can A Model Have Many belongs_to?
...m (represents a computer) table that
is linked to several other small tables. I want all the data in these
other tables to be available from the system object.
I have this:
class System < ActiveRecord::Base
belongs_to :department
belongs_to :address
belongs_to :operatingsystem
has_many :oldnames
end
class Department < ActiveRecord::Base
has_many :systems
has_many :people
end
class Address < ActiveRecord::Base
has_many :systems
has_many :people
end
class Oldname < ActiveRecord::Base
belongs_to :system
end
class Operatingsystem < ActiveRecord::Base
has_many :systems
end...
2010 Oct 13
4
Change global env variables from within a function
Hi,
I've looked all over for a solution to this, but haven't had much look
in specifying what I want to do with appropriate search terms. Thus I'm
turning to R-help.
In the process of trying to write a simple function to rename individual
column names in a data frame, I ran into the following problem: When I
rename the columns within my function, I can't seem to get it to
2019 Mar 29
0
[PATCH net v4] failover: allow name change on IFF_UP slave interfaces
Hi Si-Wei,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on net/master]
url: https://github.com/0day-ci/linux/commits/Si-Wei-Liu/failover-allow-name-change-on-IFF_UP-slave-interfaces/20190329-195445
config: x86_64-lkp (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
# save the attached .config to linux build tree
make
2019 Mar 28
0
[PATCH net v3] failover: allow name change on IFF_UP slave interfaces
Hi Si-Wei,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on net/master]
url: https://github.com/0day-ci/linux/commits/Si-Wei-Liu/failover-allow-name-change-on-IFF_UP-slave-interfaces/20190329-020744
config: openrisc-or1ksim_defconfig (attached as .config)
compiler: or1k-linux-gcc (GCC) 6.0.0 20160327 (experimental)
reproduce:
wget
2007 Apr 23
0
Correction to PR #9631 (PR#9632)
...;- substring(string, 1:n, 1:n)
lastDot <- n + 1 - match(".", rev(chars), nomatch = n + 1)
substring(string, lastDot + 1, n)
}
sn <- sectionnames
if(any(nchar(sn) > 8)){
oldDir <- libname
libname <- tempdir()
allFiles <- list.files(oldDir)
oldNames <- character(0)
for(i in 1:length(sn)){
fName <- grep(sn[i], allFiles, value = T)
if(length(fName) == 0) stop(paste("sectionname", sn[i], "not found"))
oldNames <- c(oldNames, fName)
}
sectionnames <- linkNames <- character(length(old...
2023 Jul 26
2
Rename Computer on Domain
I can report that the computer renaming worked.
As it turned out, only the cn was incorrect ...
ldbsearch -H ldap://DC1 -UAdministrator 'CN=DT06'
dn: CN=DT06,OU=Desktops,OU=Computers,DC=domain,DC=com
objectClass: computer
cn: DT06
operatingSystem: Windows 10 Pro
displayName: WH23$
sAMAccountName: WH23$
... so a simple LDAP rename worked ...
ldbrename -H ldap://DC1 -UAdministrator
2004 May 31
1
Old domain name an't delete record with tdbtool
Samba V3, tdbsam backend.
I've had to change the workgroup name in smb.conf on a Samba PDC (ie, I've
changed the domain name). However, the old domain name still shows up in
Windows PCs' "Microsoft Windows Network" (together with the new name, which
works just fine). I want to remove the old domain name, and I assume it is
still showing because it is still present in
2005 May 06
1
msdfs not working on netbios aliases?
I encountered strange behaviour of "msdfs" when using together
with "netbios aliases".
E.g I have in smb.conf:
[global]
netbios name = server
netbios aliases = server-oldname
....
host msdfs = Yes
[share1]
path = /var/samba/share1
[share2]
msdfs root = Yes
msdfs proxy = \penguin\share2
....
From a windows (XP) machine I can now see:
\\server\share1
and
2007 Aug 03
2
change the names of all listed objects
Dear list members,
I have created seven objects, from a to g, so that ls() gives me
[1] "a" "b" "c" "d" "e" "f" "g"
how can I automatically change their names in
"a1" "b1" "c1" "d1" "e1" "f1" "g1"
It seems simple, ut it is driving me mad.
Thank you very
2019 Mar 27
0
[PATCH net v3] failover: allow name change on IFF_UP slave interfaces
Wed, Mar 27, 2019 at 12:48:13AM CET, si-wei.liu at oracle.com wrote:
>When a netdev appears through hot plug then gets enslaved by a failover
>master that is already up and running, the slave will be opened
>right away after getting enslaved. Today there's a race that userspace
>(udev) may fail to rename the slave if the kernel (net_failover)
>opens the slave earlier than when
2015 Aug 13
2
[lld] Alias in COFF short import library.
...quot;foo" and "__imp_foo",
> respectively, and add that object file to the import library. As a result,
> the import library file defines four symbols, {,__imp_}{foo,bar}.
>
> Do you know how to define symbol aliases in COFF? If you don't, take a
> look a member of oldnames.lib (which comes with MSVC). That library file
> defines bunch of aliases, and you can do the same thing.
>
Thanks for pointing me in the right direction :)
After looking at oldnames.lib I done a little more reading and I assume I
do it like this then for the alias.
The import table points...
2002 Jun 01
0
Testing a transfer-only rsync tool
I found some time in the past week to work on a simple test app that
would hopefully help to answer a few questions that came up recently:
1. Can a single-process generator+receiver work well? (Looks good so far,
but I haven't run any multi-processor timing tests yet.)
2. How easy is it to use librsync? (Pretty easy.)
3. How small would a transfer-only tool be? (It's currently
2010 Apr 08
1
[PATCH] Move all interaction with the config file into Sys::VirtV2V::Config
This removes another chunk of functionality from GuestOS.
---
MANIFEST | 1 +
lib/Sys/VirtV2V/Config.pm | 339 +++++++++++++++++++++++++++++++++++++
lib/Sys/VirtV2V/Converter.pm | 56 +-----
lib/Sys/VirtV2V/GuestOS.pm | 94 ----------
lib/Sys/VirtV2V/GuestOS/RedHat.pm | 46 ++++--
v2v/virt-v2v.pl | 96 +----------
6 files
2011 Sep 23
4
replace multiple string
Hi
I would like to use a bash script that searches files and
subdirectories name in a directory /var/ww/html/web
for a specific string, and when it finds the search string, replaces
the string (old1) with new string (new1), and so on
old2 with new2 ....oldn with newn.
replace_string.sh
#!/bin/bash
for db in $(find /var/www/html/web -name * -exec)
do
sed -e "s/old1/new1/" \
sed
2002 Oct 18
4
code to turn T into TRUE
Does anyone have code that will methodically process R sourcecode, turning
T's into TRUE and F's into FALSE? I got bored doing this by hand, after the
first 30-odd functions-- there are hundreds left to do. I don't want to
simply deparse everything, because that would destroy my beautiful
formatting.
The reason it's not trivial, is that comment lines, quotes, and split lines
need
2014 Jan 29
2
Rename computer, but still shows up as old name
Samba Version 4.1.4-SerNet-RedHat-7.el6
Using RSAT via Windows 8.1
--
For a computer that is on the domain, I rename it from the client, then
reboot. This renames the computer as expected. The common name in AD,
however, is not affected. Is there a way to do this? Am I missing a step?
Details: Using RSAT, I see the old computer name, not the new computer
name. If I double click on the entity,
2007 Mar 30
1
call file vs. originate
I'm having trouble getting the manager interface to behave properly;
specifically the Originate event.
If I create an originate event as below, the calling phone will
auto-answer (as it's supposed to) but the receiving phone never rings.
It will timeout at 20 seconds.
Action: Originate
Channel: Local/201@from-sip2
Context: from-sip
Extension: 154
Priority: 1
CallerID: John Doe
2015 Aug 13
2
[lld] Alias in COFF short import library.
>
> The header of libuser32b.a says that it defines MessageBoxB and
> __imp_MessageBoxB, but the import library file in the archive actually
> defines MessageBoxA (not B). So the archive file is broken. You may want to
> fix the header and try again.
Yes this is how I done the alias.
If you consider this invalid then look at libuser32.a
The header defines MessageBoxA and
2016 Oct 19
0
renaming mdadm name
Hi
I have a disk which two of the partitions are part of a RAID1 setup. I'm
trying to rename the the second raided partition
mdadm -E /dev/sdc4
/dev/sdc4:
Magic : a92b4efc
Version : 1.2
Feature Map : 0x1
Array UUID : 83d7657b:ebfddcb7:36b0fa14:d29a350c
Name : oldname:2
Creation Time : Tue Aug 30 15:25:10 2016
Raid Level : raid1
Raid Devices : 2
2006 Apr 26
0
DB2 under Windows XP - "Missing DB2 Libraries or headers"
...ows command it was trying to execute:
cl -nologo -Feconftest
-IC:/Ruby & Rails/ruby-db2-0.4.4/ext/db2
-Ic:/ruby/lib/ruby/1.8/i386-mswin32
"-I"C:/Program Files/IBM/SQLLIB"/include"
-I. -I./.. -I./../missing
-MD -Zi -O2b2xg- -G6 conftest.c
msvcrt-ruby18-static.lib db2cli.lib oldnames.lib
user32.lib advapi32.lib wsock32.lib -link
-libpath:""C:/Program Files/IBM/SQLLIB"/lib"
-libpath:"c:/ruby/lib"
-stack:0x2000000
After much playing around, I finally got a version that works:
cl -nologo -Feconftest -I"C:/Ruby & Rails/ruby-db2-0.4.4/ext/d...