search for: keywords

Displaying 20 results from an estimated 4732 matches for "keywords".

2006 Jul 01
1
Rdconv --type=Ssgm drops singleton keywords (PR#9051)
...le R> f<-function(x)log(1+x)-log1p(x) R> prompt(f) Created file named 'f.Rd'. Edit the file and move it to the appropriate directory. R> q() It has 2 \keyword entries in it % grep keyword f.Rd \keyword{ ~kwd1 }% at least one, from doc/KEYWORDS \keyword{ ~kwd2 }% __ONLY ONE__ keyword per line If you convert it to the Splus sgm format you get 2 <s-keyword> entries, in a <s-keywords> section: % R CMD Rdconv --type=Ssgm f.Rd | grep 'keyword' <s-keywords> <s-keyword>~kwd1</s-key...
2007 Mar 29
2
[LLVMdev] Assembly Change: implementation keyword no longer recognized
All, Just a note to let yo know that CVS Head has been changed so that the AsmParser no longer recognizes the "implementation" keyword and AsmWriter no longer generates it. The grammar has changed to require the "define" keyword for function definitions which obviates the need for the implementation keyword. This has been the case for a couple months now, but we never removed
2006 Apr 28
2
cannot kill infinite loop. please help
an error in my rails code caused the framework to send an infinite number of SQL calls to the database. I killed the webrick server, restarted postgres, deleted the /tmp file in my rails application, deleted the bad code, restarted firefox, restarted the webrick server. All to no avail. As soon as I try loading my application, the infinite recursion starts again. I can no longer work. This
2007 Mar 29
0
[LLVMdev] Assembly Change: implementation keyword no longer recognized
Update: I've reverted the assembly parser change so that "implementation" will be accepted. This is to provide a grace period for you to update your .ll files. Please remove the use of implementation in your .ll files as this keyword will disappear in < 1 week. Note that the AsmWriter will not generate this keyword any more. Reid. On Thu, 2007-03-29 at 11:21 -0700, Reid
2009 Aug 24
5
extract keywords from string
hi - i have strings that i need to extract keywords from. the string might have html tags, urls, etc. i need to extract the keywords from the string. i imagine i''m not the first guy to have to tackle this problem. is there a gem i can use or anyone have any ideas how to approach this? thanks, dino
2018 Jun 20
0
[PATCH v5 6/9] x86: prevent inline distortion by paravirt ops
Hi Nadav, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.18-rc1 next-20180619] [cannot apply to tip/x86/core] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:
2006 Apr 07
2
errors.add_to_base
What are the limitations on using: errors.add_to_base to display errors in views? I have tried for days to add errors from my object.rb and they never get displayed. class Keyword < ActiveRecord::Base validates_presence_of(:name, :message => "Name is required.") validates_uniqueness_of(:name, :message => "This name is already in use. Please try
2006 Jun 26
4
has_many :through
first, the models: class Listing < ActiveRecord::Base has_many :keyword_links has_many :keywords, :through => :keyword_links, :conditions => "active = 1" end class Keyword < ActiveRecord::Base has_many :keyword_links has_many :listings, :through => :keyword_links, :conditions => "active = 1" end class KeywordLink < ActiveRecord::Base belongs_to :ke...
2012 Mar 03
2
keywords/flags questions
Hello, I am currently using dovecot 2.0.13 and I have been working on keywords handling our webmail and I have a few questions about how dovecot handles them. First, if I am not mistaken keywords neeed to be UTF-7 encoded. That means I need to encode special caracters using values between & and - chars. UTF-7 encoding is case sensitive, &AOA- isn't the same c...
2012 Mar 31
2
Wine compiling error
When I start compiling a Wine I get this errors: > msgfmt -o po/ar.mo po/ar.po > po/ar.po:359: keyword "msgctxt" unknown > po/ar.po:359:8: parse error > po/ar.po:591: keyword "msgctxt" unknown > po/ar.po:591:8: parse error > po/ar.po:596: keyword "msgctxt" unknown > po/ar.po:596:8: parse error > po/ar.po:1157: keyword "msgctxt"
2008 Mar 20
3
Using IMAP keywords instead of mailboxes for spam with dovecot-antispam
Hi, Some email clients, like Evolution, use IMAP keywords to flag spam instead of moving mail to dedicated spam mailbox. This is very useful, as false positives can be easily "moved" to original mailbox simply by removing $Junk keyword. I couldn't find a way how to integrate antispam software, like dspam, with dovecot, so that antispam auto...
2011 May 06
5
write object array value to csv file
I have an object array @keywords = Keyword.find_by_sql(sql). Now I need to write all values of @keywords to a csv file, and because the sql statement is dynamically generated, hence the attribute names are dynamic too. How can I do it? Please help! Thanks! -- Posted via http://www.ruby-forum.com/. -- You received this messag...
2004 Nov 24
1
Suggestions for packages / help / index (long mail)
...sy, specially if your daily task is specialized: you will have difficulties digging into all material to find those nuggets that will help you (and thanks to the community, there are so many nuggets... it may be hard to choose between gold or platine). What we have for now is a document listing keywords. Advanced user will know those keywords are to be used by package maintainer, feeding the help system building chain. This keyword database is very pertinent. It's content, which has been inherited in part from S, has previously beeing carefuly worked out. And that works well (try help.sear...
2006 Jan 22
2
suggest for "ambiguous column" when JOIN associated tables
Today I face with incorrect behavior in ActiveRecord. It take place when I try to use :include parameter for .find method. Where are two typical cases: 1. You have record with self-referential joins CREATE TABLE keywords (id, group_id); class Keyword < ActiveRecord::Base belongs_to :group, :class_name => "Keyword", :foreign_key => "group_id" end 2. Your record has two associations with the same table CREATE TABLE artworks (id, author_id, agent_id); clas...
2010 Dec 29
2
\VignetteKeywords{}, for KEYWORDS or for free-tagging?
Hi R-devel, [Question]: * Is there a KEYWORDS file to lookup 'keywords' to supply the vignette command, '\VignetteKeywords{}'? -or, is the pkg writer free to tag the vignette using any keywords he/she chooses? i.e., free-tagging. Thank you, + Elliot Kleiman __________________________ San Diego State University http://www.sds...
2007 Dec 15
2
[LLVMdev] fix warning with newer g++ compilers
...KEYWORD("readnone", READNONE); KEYWORD("readonly", READONLY); - + KEYWORD("type", TYPE); KEYWORD("opaque", OPAQUE); @@ -539,7 +541,7 @@ int LLLexer::LexIdentifier() { if (JustWhitespaceNewLine(CurPtr)) return ZEROEXT; } - + // Keywords for instructions. #define INSTKEYWORD(STR, type, Enum, TOK) \ if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \ @@ -596,8 +598,8 @@ int LLLexer::LexIdentifier() { INSTKEYWORD("extractelement", OtherOpVal, ExtractElement, EXTRACTELEMENT); INSTKEYWORD(&qu...
2017 Oct 06
4
Beginner Bugs - Need help tagging
...ussed many times before at LLVM Developer Meetings and recently on the mailing list about tagging bugs with the “beginner” keyword and that keyword was recently added to the LLVM Bugzilla. However, there are very few bugs(12) actually in Bugzilla with this keyword: https://bugs.llvm.org/buglist.cgi?keywords=beginner&list_id=125621 It would be a huge help and a benefit to the growth of the community if we could tag more bugs with this keyword. If several members of the community could tag just 5 bugs with this keyword we could easily increase the number of bugs suitable for beginners. I know eve...
2012 Jul 19
3
Removing values from a string
So I have the following data frame and I want to know how I can remove all "NA" values from each string, and also remove all "|" values from the START of the string. So they should something like "auto|insurance" or "auto|insurance|quote" one = data.frame(keyword=c("|auto", "NA|auto|insurance|quote", "NA|auto|insurance",
2010 Jan 06
2
debugging package
...xt in file 'NFIRS-class.Rd': Following section 'note': "\n\n ~Make other sections like Warning with \\section{Warning }{....} ~\n\n" Unaccounted top-level text in file 'NFIRS-package.Rd': Following section 'references': "\n~~ Optionally other standard keywords, one per line, from file KEYWORDS in the R documentation directory ~~\n" Rd files with missing or empty '\title': NFIRS.summary.Rd read.NFIRS.Rd Rd files without 'description': NFIRS.summary.Rd read.NFIRS.Rd Rd files without 'title': NFIRS.summary.Rd read....
2017 Jun 30
2
"Beginner" keyword for LLVM Bugzilla?
Hello all! I mailed the list about this yesterday, but as a reply to another email [1], so maybe it got lost: could we add a "beginner" keyword to LLVM Bugzilla, so that contributors could classify bugs as relatively simple to fix? LLVM Bugzilla has keywords like "code-cleanup" and "code-quality", which describe the nature of the PR [2]. I think a "beginner" keyword would be a good addition for people who wish to contribute to LLVM, but don't know where to begin. Anecdotally, I found it very easy to contribute to Appl...