Questions tagged [agents]
113 questions
3
votes
2 answers
Access current document and display messagebox from agent called via lotusscript from UI
I have an agent with the following code:
Sub Initialize
MessageBox "AgentStart"
Print "AgentStart"
Dim ws As New NotesUIWorkspace
Dim s As New NotesSession
Dim db As NotesDatabase
Dim vItemsBySupplierSpec As NotesView
…

George Duckett
- 31,770
- 9
- 95
- 162
3
votes
4 answers
Controlling Java and Lotusscript agents
I created 2 agents, one made of Java and another made of Lotusscript. The java agent is scheduled to run every 5 minutes, while the lotusscript agent is scheduled to run every 15 minutes. Therefor there will come a time that they will simultaneously…

John Bautista
- 1,480
- 3
- 29
- 60
3
votes
1 answer
Akka framework (Scala) - Agents to store large complex state
I recently discovered the akka framework and felt it was a good match for one of my projects. I must say I'm very impressed with it so far.
In my project, I need to have 1M+ entities receive state updates a very fast rate. Naturally, akka actors…

Lord Phoenix
- 31
- 2
3
votes
2 answers
Clojure Agent question - using send-off
I have a couple of questions about the following code:
(import
'(java.awt Color Graphics Dimension)
'(java.awt.image BufferedImage)
'(javax.swing JPanel JFrame))
(def width 900)
(def height 600)
(defn render
[g]
(let [img (new BufferedImage…

Pranav
- 3,340
- 8
- 35
- 48
3
votes
0 answers
Jenkins agents slow
My Jenkins builds are 5 to 20 times slower on my build agents while using Jenkins and as compared to
- running the build in command line on the build agents
- running the build on my workstation
What can be causing the issue? I have attempted to…

NicolasW
- 1,519
- 5
- 22
- 34
3
votes
1 answer
F# events not working inside Async workflow
I want to do a Post-Fire-Reply to an agent. Basically the agent triggers an event then replies to the caller. However I either keep getting a timeout error or the events do not fire correctly. I tried doing Post-Fire, that stopped the timeout errors…

alakfq
- 135
- 8
3
votes
2 answers
Maximum number of TFs agents connected to a TFS instance
On Team Foundation (TFS2017) which is the maximum number of build agents that you can have connected to your TFS instance?

Judavi
- 115
- 1
- 10
3
votes
1 answer
Can an F# agent with multiple recursive async bodies use multiple inbox.Receive() in each?
I have a multi-state F# MailboxProcessor example here, just wondering why it compiles but the behavior is unexpected - can F# agents only have one inbox.Receive() statement in the passed in lambda function? I am trying to follow the general example…

Rick Deckard
- 105
- 5
3
votes
0 answers
Q: Debugging Jenkins node/agent creation & configuration
I've got an issue with Jenkins 2.6-1.1 running on CentOS v7.2.1511. I am using the Crowd 2 integration plugin v.1.8 and the Matrix Authorization Strategy plugin v.1.3.2 for authentication and authorization, respectively. Security is configured for…

wwinfrey
- 31
- 4
3
votes
2 answers
Swift GameplayKit pause GKAgent without pausing scene
Whats the best way to pause a GKAgent?
My game uses a few agents in some levels and I need to pause them when my game is paused/gameOver.
I dont pause the whole SKScene in my game but rather a worldNode because it gives me more flexibility showing…

crashoverride777
- 10,581
- 2
- 32
- 56
3
votes
1 answer
JADE (Java) - Changing Agent Container
Is there a way to reassign agents to a different container or will I have to create a new container and then create all new instances of the agents within the new container?
I have done a lot of searching and can't seem to find anything on container…

Chad S
- 45
- 1
- 5
3
votes
1 answer
Loosely Coupled Agents in F#
I am trying to develop a multi-agent application in F#. Here's what I'm trying to do:
Create few agents (say, 100).
Have these agents asynchronously communicate with each other, using events.
HOWEVER, a requirement is that each of these agents…

A.K
- 91
- 4
2
votes
2 answers
High Granularity Adaptive Society of Agent Software?
I was thinking about how our society incentivizes behaviors by a collection of free individuals, so that the work of those individuals fulfils the requirements of the society as a whole. For example, people contribute by working, earn money, and use…

Larry Watanabe
- 10,126
- 9
- 43
- 46
2
votes
1 answer
Using a custom distribution to assign states for agents when create it in Anylogic
I am developing a model to evaluate different interventions of population control in animals. I am trying to use a custom distribution to assign the state in which agents should be when they are created or added later to the population.
I have done…

Luzma
- 21
- 3
2
votes
1 answer
Ask a different turtle for its variable
I'm new to Netlogo and have been chucked in at the deep end. Each turtle has a variable - colony, which is a number between 1-9. I'm wanting to get a turtle face towards its closest neighbour which has the same colony number as it does. It then…
user3344370