Questions tagged [reassign]

13 questions
3
votes
0 answers

JBPM History of Task potential Owner

I need to have service that return the history of task potential owner. An example: A task is assigned to group IT, after 2 date the task is assigned to group PM. Is There a service that return this type of information? The service…
2
votes
2 answers

Is it valid to assign a new memory block to a variable with a deleted pointer?

int main(){ char *Allocation; Allocation = new char[8]; //here is out first allocation; delete[] Allocation; //after while we delete it; Allocation = new char[16];//then we allocate some chunk of memory again to our…
1
vote
1 answer

How to reassign value based on condition (Python)

This is a sample dataframe, and I'd like to reassign the values from years b/w 2010-2013 from Company A's A1000 to Company A's B2000. What's a good way to get the result? Code to generate the dataframe: df = pd.DataFrame({'Year': [2010,…
Jiamei
  • 405
  • 3
  • 14
1
vote
1 answer

JBPM 7.31 catch reassign event

in JBPM is possible to catch a reassign event? Example a Human Task is assign to user JOHN, administrator user call kie-server REST API to reassign Human Task to MARK. Is possible to catch the reassignment event in order to send notification or…
1
vote
1 answer

JBPM 7.31 reassign notifications

In JBPM is possible to resend a notifications after a reassign operation? Example: This is an example of my process The Task Evolution is configured to send a notification to the potential owners. If the task is not processed administrator user can…
0
votes
1 answer

Python: Issue with reassigning columns to DataFrame

I have a DataFrame with multiple columns. I am trying to normalize all the columns except for one, price. I found a code that works perfectly on a sample DataFrame I created, but when I use it on the original DataFrame I have, it gives an error…
MathMan 99
  • 665
  • 1
  • 7
  • 19
0
votes
0 answers

How to update an object's method in python

Say I have a class and an object of it. In Python, you can update the behavior of an object's method by re-assigning the method to a new function. This is possible because methods in Python are just attributes of an object that happen to be…
David H. J.
  • 340
  • 2
  • 12
0
votes
0 answers

JBPM TASK how to set business admin of a task

how can be set the business admin of a task? If I remember correctly it is set by a Task variable, what is the variable name? There is a default profile configured as 'business admin'?
0
votes
0 answers

Error changing owner in Azure Postgres with superadmin

I hope anyone can tell me what I am doing wrong here. I have upgraded an Azure Postgres PaaS database from version 10 to 11. I've just followed the Microsoft guide for doing the upgrade. All went fine and after recreating the private endpoints, I…
Roberto Hernandez
  • 8,231
  • 3
  • 14
  • 43
0
votes
0 answers

Assignment to function parameter 'value' no-param-reassign

I am trying to get rid off the no-param-reassign error from the following code. const changeHandler = ({ key, ref, value }): void => { const properties = array.find((e) => e.key === key && e.color); if (properties) { properties.color = value.hex;…
PineCone
  • 2,193
  • 12
  • 37
  • 78
-1
votes
2 answers

Why does my variable (winning) not get reassigned when I try to reassign it?

def winningcheck(board): winning == '' if board[1] == board[2] == board[3]: print('The game has been won') winning == 'True' else: print('The game has not been won') …
-2
votes
1 answer

Trouble modifying a value in a list

Using Python 3.11.1 in JupyterLab Version 3.5.2 I,m getting this error message and I'm not sure how. list is a list with 6 items within it. As you can see Dad is the first item. I am trying to reassign this value to Mike. The error message is…
Tim
  • 11
  • 2
-2
votes
2 answers

Simple explanation needed: Why does a variable reassignment not occur within a function where the variable name is passed as an argument?

I'm working through my course, and keep hitting the same speedbumb. My mental model for why the following behavior is lacking. I'm after as simple an explanation as possible to fill the gap :) In the following snippet the reassignment doesn't occur…
Brucie
  • 51
  • 8