agent

The session for this agent already exists

做~自己de王妃 提交于 2019-12-04 04:29:24
I am using TFS to execute a nightly build that includes several steps that use the TFS Test Agent . I am running the latest version of TFS/Test Agent(2015 - Update 3) and there are no other builds being run at this time. Often(maybe half the time), when the nightly job is run the step "Visual Studio Test Agent Deployment" fails with the following error: The job has been abandoned because agent Agent-XXX did not renew the lock. Ensure agent is running, not sleeping, and has not lost communication with the service. This is due to the error found in the Test Agent's log file(under _diag): The

Any good distributed agent/service models for .NET? [closed]

心不动则不痛 提交于 2019-12-03 15:13:39
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm looking for tools that implement the distributed agent/service model ... I guess we could also call this grid or cloud computing,

Java NoClassDefFoundError when calling own class from instrumented method

落爺英雄遲暮 提交于 2019-12-03 15:11:33
问题 I am working on a kit of simple Java agents to help me (and hopefully others) troubleshoot Java applications. One of the agents I would like to create instruments the JComponent.getToolTipText() method to quickly identify any GUI class by just hovering the mouse cursor over it. You can find the code of my transformer and the rest of the project here: http://sfn.cvs.sourceforge.net/viewvc/sfn/core/src/main/java/org/leplus/sfn/transformer/JComponentTransformer.java?view=markup I launch my test

PerformSegueWithIdentifier does not work

人走茶凉 提交于 2019-12-03 10:44:31
I am trying to use use self.performSegueWithIdentifier to change the view on the Storyboard when a JSON file loaded remotely. For this I am using the Swift Class "Agent" to perform the HTTP request. Everything is working when I write the self.performSegueWithIdentifier("toView2", sender: self) out of the "done" variable. Why is it not working? I guess it has something to do with the "sender: self". But I don't know how to solve this. I don't get any errors on Xcode. It just loads the data from my server and then nothing happens... @IBAction func goToView2(sender: AnyObject) { let done = {

SQL Agent Job - “Run As” drop down list is empty

ε祈祈猫儿з 提交于 2019-12-03 10:33:53
Why is the "Run As" drop down list is always empty when I try to set up a SQL Agent Job? I am trying to set up some SQL Agent Jobs to run using a proxy account. I am a member of the SQLAgentUserRole, SQLAgentReaderRole, and SQLAgentOperatorRole. When I try to add a step to to the job, I select SQL Integration Services Package and the Run As drop down list is empty. Anyone who is a sysadmin can view the proxy. Shouldn't I be able to use the proxy as a member of SQLAgentUserRole, SQLAgentReaderRole, and SQLAgentOperatorRole? What am I missing here? (The proxy account is active to the subsystem:

Jade Agent Containers

可紊 提交于 2019-12-03 08:38:00
Can anyone tell me how to find available agent containers through java code? I am using the JADE agent framework and I have figured out how to create new containers but not find existing containers (so that agents can be deployed in them). There are two ways of doing this, depending on whether you want to receive the information via an ongoing service or the current snapshot in a message. To get a snapshot of the IDs of the currently available agent containers, send a Request message to the Agent Management Service (AMS) and wait for its reply. Using the JADE Management Ontology and the

TeamCity agent error “failed to perform checkout on agent”

时光毁灭记忆、已成空白 提交于 2019-12-03 05:37:24
I am running my TeamCity 7 server and agent on MacOS. My repo is on github. I use ssh and I know that the authentication is correctly configured, because the test is successful. The build works fine when I use VCS Checkout Mode "Automatically on server", however when I use VCS Checkout mode "Automatically on agent" I get this error. [13:40:35][Updating sources] Failed to perform checkout on agent: '/usr/bin/git fetch --progress origin +refs/heads/master:refs/remotes/origin/master' command failed. stderr: java.io.IOException: Authentication failed at org.jetbrains.git4idea.ssh.SSHMain

Any good distributed agent/service models for .NET? [closed]

为君一笑 提交于 2019-12-03 04:55:39
I'm looking for tools that implement the distributed agent/service model ... I guess we could also call this grid or cloud computing, but I'm not sure the term is exactly analagous. A distributed agent model would be one where developers build agents that are dispatched to a framework and the framework executes the agent somewhere in the distributed environment. Specifically, I'm looking for a framework that support dynamic distribution across the grid/cloud, but replaces the transient agent with a more persistent service. The goal here is to minimize the amount of time and effort it requires

Design patterns for Agent / Actor based concurrent design [closed]

北战南征 提交于 2019-12-03 02:22:27
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last year . Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state). So far most of the documentation that I have read focus around the intro level. What I am looking for