Do not use. This tag has been used for generated code, generated keys, generated-anything. Too broad.
Questions tagged [generated]
212 questions
1
vote
0 answers
Axis2 / CXF: WSDL-to-Java - Auto generated code compared to original code?
I am researching web service development. Below are a few assumptions and questions I have arrived at from looking at various sources.
When someone creates a web service when they exposing methods externally using Axis2?
Given a WSDL file can be…

Peter
- 11
- 3
1
vote
1 answer
Changing generated column to not-generated in MySQL table
I've created a MySQL table that contains a generated column:
CREATE TABLE `messages` (
`metadata` JSON NOT NULL,
`aggregate_version` INT(11) UNSIGNED GENERATED ALWAYS AS (metadata->'$._aggregate_version') STORED NOT NULL
);
How do I change…

gedi
- 23
- 1
- 3
1
vote
3 answers
JS Set onClick action to a Button that was create inside a loop
How to define the onClick property of the Buttons created inside this loop?.JQuery doesn't seem to work at all for that class.
for(started somewhrere...
var button = document.createElement('button')
var div =…

Wesos de Queso
- 1,526
- 1
- 21
- 23
1
vote
1 answer
jQuery ajax call incorrectly nesting php generated html
I'm using jQuery to hijack a link pointing to a php file. This php file is mostly html, but calls two php functions that each use a for loop to output html. The problem I'm running into is that the ajax call is incorrectly nesting the html generated…

Jonathan Head
- 428
- 3
- 7
1
vote
1 answer
STS JPA Tools not generating all Entities from Tables
I have created a few tables in my DB and a demo project in STS which I have converted to a JPA project. I then right click on it and select JPA Tools -> Generate Entities from Tables.
It works perfectly, except that it does not generate all Entities…

Quentinb
- 476
- 1
- 9
- 30
1
vote
2 answers
How to make two different code generate random numbers but they are different?
Let's say I have a code following under
a = 4
b = random.sample(range(1,14), (a))
Now if I print this, this would give me random 4 numbers in range 1~13 and let's say it is [3, 7, 1, 11]
However, I want to add another line under that code which…

Johnny Kang
- 145
- 1
- 12
1
vote
1 answer
JavaScript Random math multiplication generator
I'm totally new to JavaScript and could really use some help. I have to make a program in JavaScript that randomly generates two numbers between 1 and 12 and stores them into a text field. These two numbers are global variables and are sent to a…

rozak
- 41
- 1
- 7
1
vote
2 answers
How to apply a jwt token to generated Angular 2 JS files?
Angular2 Typescript application is generating source .js files.
While debugging I observed that the authorization header is undefined.
I have jwt token for custom services defined.
How can I apply the same jwt token to generated Angular2 source .js…

HydTechie
- 797
- 10
- 17
1
vote
0 answers
RESTFULL angular generate mpdf and force download
I have a little problem here.
I'm using angular, and restfull application. My goal is, when I click on a button I force download a pdf which has been generated on the fly, and not stocked.
So I use mpdf :
ob_start();
include PATH_VIEWS_PDF .…
1
vote
2 answers
How to stop uniqid() from regenerating in a PHP form
I want to generate a random key for the user to use during registration. The code compares the generated key with the user input but the key gets regenerated when the user submits the form, so they are never the same. I tried to protect the…

ezekeel
- 23
- 1
- 5
1
vote
0 answers
Unity - PerlinNoise giving same number
I'm building a tile based game game where I want to generate a world for the player to explore. For some reason, Mathf.PerlinNoise() sometimes gives the same number over and over again, even if the XY given is different every time.
void Start () {
…

FlorisdG
- 754
- 5
- 11
- 31
1
vote
1 answer
FPDF/PHP: Column names not retrieved with Mysqli_fetch_fields()
So I have a problem regarding the FPDF library which is used to generate a PDF document with data from a MYSQL-DB.
In PHP 5, all the code is working and I get the following output:
I've used this code for generating it:…

Kahn Kah
- 1,389
- 7
- 24
- 49
1
vote
1 answer
How does the apt-plugin work?
So,
We are using Dagger 2 in our Android application.
Code generated by
Dagger 2 is located in build/generated/source/apt.
In the documentation of apt-plugin it states that :"Using this plugin Android Studio will be configured to place the…

Danylo Volokh
- 4,149
- 2
- 33
- 40
1
vote
1 answer
I want to create a mesh from a silhouette
I'm working in Unity and thus coding in C#, but any idea or a place to start is welcome.
I don't really know how to describe my problem, and if there is a 'simple' solution for it, but I'll try.
I have an object (probably going to limit myself to…

Bart van den Bergh
- 13
- 3
1
vote
1 answer
Hibernate: Value generated by SQL query
I want Hibernate 3.3.0 to generate a value by performing a SELECT query before INSERT (persist()). Which would work like this:
@Generated(GenerationTime.INSERT)
@GenerateSQL("SELECT RANDOM() * 2")
private int number;
I've had a look at…

Ondra Žižka
- 43,948
- 41
- 217
- 277