Questions tagged [definition]

A generic tag for topics providing definitions.

A generic tag for topics providing definitions.

1574 questions
0
votes
1 answer

C# the variable UserInput cannot find the definition

double UserInput; string y, z; double OunceToGram, PoundToOunce, PoundToKilogram, PintToLitre, InchToCenti, MilesToInch; OunceToGram = UserInput * 28.0; //(error is here, it cannot find UserInput) PoundToOunce = UserInput * 16.0; PoundToKilogram =…
0
votes
2 answers

Trouble with C & Code Blocks : Error with debug called 'error: ld returned 1 exit status'

I past all my day to fix Code Blocks, I had a lot of troubles with it. Seems to be fixed, I decide to code and i'm trying to display a tray ( two dimensional arrays ) as a parameter of a function. I follow an answer on this website to make it…
KIToRe
  • 39
  • 8
0
votes
1 answer

Default Constructor with Empty Brackets C++ Error

I do not know why it crashes when I create class Vector. Please Help. In this program I want to add any type of elements into an array. I use eclipse with Cross gcc, Ubuntu template class Vector{ public: Vector(); …
paulc
  • 125
  • 6
0
votes
2 answers

Haskell defining a tree

In haskell I can do things such as a :: Int a = 15 I have the datatype as below data Btree a = ND | Data a | Branch (Btree a) (Btree a) deriving (Show, Eq) How can I define a tree, not using a function, such as above. I have tried; tree ::…
something
  • 107
  • 5
0
votes
1 answer

toolStripButton Has no Definition for 'Show' & 'Hide'? (c#)

So before I go to my problem I have some things to point out. -They are in the same Form -Regular Buttons work -This is being activated on the press of a button So my error is 'ToolStripButton' does not contain a definition for 'Show' and no…
Jake F.
  • 141
  • 1
  • 3
  • 17
0
votes
1 answer

Declaring, but not defining F# classes

Is there a way in F# to declare a class, but not define it like in C# or C++ or Java, or pretty much any other language, so that we can avoid the use of the and keyword? I have two fairly big classes that reference eachother, and I don't want to put…
user3685285
  • 6,066
  • 13
  • 54
  • 95
0
votes
2 answers

Trying to figure out what "table-reflow" actually does in Bootstrap?

http://v4-alpha.getbootstrap.com/content/tables/ (last example at the bottom of the page) There is no description in the example, I am having a hard time figuring out what this is actually doing to the table!
Ben Casalino
  • 2,262
  • 5
  • 20
  • 28
0
votes
0 answers

Updating feature file will not update the generated step definitions

I wrote a feature file using Specflow and generated step definitions. I went back to my feature file to update my scenarios but when I generate step definitions, it won't update the step definitions, instead it would overwrite what's already been…
GeeK89
  • 1
  • 1
0
votes
5 answers

Python definitions relying on other undefined definitions?

I didn't know what to title this, so if anyone wants to edit it: Go ahead. def Function_A() print "We're going to function B!" Function_B() def Function_B() print "We made it!' This is a beginner question, but the solution hasn't occurred to me…
Reznor
  • 1,235
  • 5
  • 14
  • 23
0
votes
1 answer

What does it mean to "get the name part of the path"?

In Adobe CQ, in the documentation for "Text.getName(path)" it says: "Returns the name part of the path." But what is the "name part" of a path? Thanks
davidx1
  • 3,525
  • 9
  • 38
  • 65
0
votes
1 answer

ASP.NET - How can I build a browser definition file that detects ONLY Googlebot?

I've tried looking at the Oceans BrowserCap file for inspiration, but it's just a little over the top for me. I basically need the equivalent of this in a .browser file
Chase Florell
  • 46,378
  • 57
  • 186
  • 376
0
votes
1 answer

Hotfix vs Patch vs Update - Game development

I was wondering if someone could help me sort this out. Hotfix vs Patch vs Update. I have look around the website but it only mentions about programs. From what I understood, Hotfix is to fix a certain bug and not always will be public…
Metalbreath
  • 119
  • 1
  • 14
0
votes
0 answers

skip-thought Theano model - list not declared

I have defined a list X to take the contents of a file and feed the preprocessor of the skip-though model in Theano. The error says X is not defined. https://github.com/ryankiros/skip-thoughts/blob/master/skipthoughts.py def encode(model, X,…
technologiclee
  • 198
  • 1
  • 1
  • 10
0
votes
2 answers

Definition of an inline value

When browsing through the x86 Assembly Language Reference Manual, I came across this definition of an immediate operand: Operands can be immediate (that is, constant expressions that evaluate to an inline value), [...] If I got it correctly, an…
Max Herrmann
  • 305
  • 2
  • 15
0
votes
3 answers

What is the `isolate primitive` mentioned in the documentation of the "cereal" package?

There is an extensive collection of unique words in on the Haskell repository, cabal, (very slight exaggeration). Anyway today's term is isolate primitive. What is an isolate primitive? How does it compare to a non-isolate primitive? Unfortunately,…
Evan Carroll
  • 78,363
  • 46
  • 261
  • 468