Questions tagged [definition]

A generic tag for topics providing definitions.

A generic tag for topics providing definitions.

1574 questions
0
votes
1 answer

Rails cucumber step definition

Scenario: Then I should see movies with ratings PG and R displayed Step definition: Then /^I should see movies with ratings (.*) displayed$/ do |ratings| page.should have_content(Movie.find_all_by_ratings) end Cucumber: DEPRECATION WARNING:…
Selvam
  • 1,093
  • 7
  • 22
  • 30
0
votes
1 answer

cscope and ctag cannot find a function definition which is located in class declaration

I use vim + ctag + cscope when I browse C++ source code. When I want to look up a definition of any function cscope and/or ctag produce a list of cadidates which seem to be the one. But when I try this for a function which is defined in a class…
Jumogehn
  • 1,102
  • 3
  • 11
  • 29
0
votes
2 answers

On declaring member functions

I have an abstract base class. I have a bunch of member functions in it which are not private nor static nor templates, just normal public member functions. And I noticed that I have to define any these public normal functions that *are being…
Azkron
  • 41
  • 1
  • 5
0
votes
2 answers

Explain "Backbone is not a strict MVC"

MVC stands for model, view and controller. Backbonejs.or explains this by comparison to Rails, more here and below. Because I don't know Rails, the comparison is quite meaningless. The exctract below highlight the controller, perhaps a reason not…
hhh
  • 50,788
  • 62
  • 179
  • 282
0
votes
2 answers

Definition of the global new and the delete operator

Which library has the definition for the global new and the delete operator? Specifically which file in the library contains the definition for these operators?
nitin_cherian
  • 6,405
  • 21
  • 76
  • 127
0
votes
2 answers

error with property in objective-c in iOS

I have started new iOS project and have added only one property in ViewControler header file. but it gives me error: expected specifier-qualifier-list before 'property' here is the code: #import @interface QuoteGenViewController :…
LILkillaBEE
  • 168
  • 1
  • 5
  • 19
0
votes
1 answer

understand complex function definition

i have a complex function definition written in c++. It is the first time i have come across such a complex function definition and i am having trouble understanding the meaning of it. Here it is t_group& t_group::operator=(const t_group…
crowso
  • 2,049
  • 9
  • 33
  • 38
0
votes
1 answer

An error occurred while executing the command definition. See the inner exception for details. MVC3

im getting this error but I have no idea why its happening. It stops happening when I restart visual studio, but after a while, it happens again. Its weird, since it happens just right after logging in. It makes me think that I left a connection…
Morgan Soren
  • 563
  • 4
  • 14
  • 33
0
votes
2 answers

What are the components of a Web app?

As far as I understand a web application is a rich, dynamic webpage, containsing lots of user-generated content, achieved via certain code behind the static webpage. What are the key components of the above? Is it OK to say that you require a…
Bober02
  • 15,034
  • 31
  • 92
  • 178
0
votes
2 answers

SQL Keywords Formal Definitions Material

I have looking around the net for a decent tutorial or an article that simply formally define what every keyword in SQL (for beginners at least) means, and how does it behave combined with other SQL keywords. I want to know what is being executed…
Ofek Ron
  • 8,354
  • 13
  • 55
  • 103
-1
votes
1 answer

Facebook API definitions explained

I have the list of definitions for fields in the Facebook API. http://developers.facebook.com/docs/reference/fql/insights/ The definitions are a brief and not explained. Is there a more detailed description of these somewhere? Specifically: What is…
-1
votes
1 answer

Sync adapter definition

Although I have implemented sync adapters and I can describe what a sync adapter is, I wanted to find the definition of it. I did not find it. Here I found a description that is clear but it is not a definition. Is there, somewhere, a formal…
kingston
  • 11,053
  • 14
  • 62
  • 116
-1
votes
2 answers

Multiple Definition Error Using Header and Implementation Files in C

With the header file (UDPRBPlib.h) and the implementation file (UDPRBPlib.c) I keep getting errors of multiple definitions for global variables and all of my functions shown below: /usr/bin/ld: /tmp/ccTq4sS2.o:/home/UDPRBPlib.h:14: multiple…
-1
votes
1 answer

Stack problem c++. Error: ‘cin’ does not name a type

This stack program runs correctly for given array size arr[5] or arr[10].But when i take size as input from the user cin>>n it says "Error: ‘cin’ does not name a type." Here is that code: #include using namespace std; class…
elclasico
  • 13
  • 1
-1
votes
1 answer

What is the definition of deblobbing?

I see references to deblobbed software, such as a deblobbed Linux kernel, or Mull, a deblobbed web browser. I scoured the Internet for definitions, but found none. What is the definition of deblobbing? (If it has multiple definitions, I'm unaware of…
Brōtsyorfuzthrāx
  • 4,387
  • 4
  • 34
  • 56