Displaying 3 results from an estimated 3 matches for "add_new".
2004 Dec 20
2
Japanese Search
...ISO-2022-JP codec needs to keep character cases until convert to
UTF-8.
For example:
* '\033[$B%s\033[(B' means a character sounds 'N'
* '\033[$B%S\033[(B' means a character sounds 'Bi'
It causes a trouble in searches with Japanese.
I found imap/imap-search.c/add_new() makes strings uppercase
and fixed. But search results didn't affected.. ;-)
I hope I can fix this problem in a few days.
But I'm not clear about dovecot's source.
If you have hints, please tell me.
thanks,
--
Kazuo Moriwaka
moriwaka at valinux.co.jp
2008 Nov 26
2
zfs znode changes getting lost
...but after reboot it is not there. If i was able to access before reboot so it must be in memory. I think i need to save it to disk.
how does one force zfs znode to disk.
right now i dont do anything special for it. Just made an ioctl, accessed znode and made changes.
example in zfs_ioctl
case add_new:
zp = VTOZ(vp);
zp->z_phys->new_field = 2;
return(0);
--
This message posted from opensolaris.org
2007 May 10
2
Problem with translator
.... It
messed up specs that had the should include() where the argument to
include is a string (using no parens for the arg)
IOW, given:
context "OldSchool" do
class OldSchool
attr_accessor collection
def initialize
@collection = []
end
def add_new(item)
@collection << item
end
end
specify "should include string with ''?''" do
school = OldSchool.new
school.add_item ''like ?''
school.collection.should_include ''like ?''
end
en...