Questions tagged [depends]

69 questions
1
vote
1 answer

"bitbake -g" vs. RDEPENDS

I wonder how bitbake -g is implemented. Probably it searches all recipes for DEPENDS=... occurrence, perhaps much more. How to get dependency graph however that one reflecting RDEPENDS=... relations?
user5494920
1
vote
1 answer

What is meant by an exe being dynamically compiled?

Came across the following paragraph from a page on the MySQL website here: You can write plugins in C or C++ (or another language that can use C calling conventions). Plugins are loaded and unloaded dynamically, so your operating system must…
Sabuncu
  • 5,095
  • 5
  • 55
  • 89
1
vote
0 answers

seam test fails when running with @Depends

I have a MDB marked with @Depends making it dependent on my war, when I deploy the application to the server it works ok, but when I try to run my tests the test fails...seams because of some wrong config...any hints to solve this? I guess that the…
simonC
  • 4,101
  • 10
  • 50
  • 78
1
vote
1 answer

Why success of build depends on folder name? (maven/selenium)

I have a project which does some selenium tests. The tests are located in "src/test/java" folder. When I try to build the project with maven (option: clean install) I get a build error. But when I rename the folder to "src/testExec/java" or to any…
gartenkralle
  • 646
  • 1
  • 11
  • 21
1
vote
3 answers

Codeception skipps test method even if depend-upon test was passed

I looked into manual here: http://codeception.com/docs/07-AdvancedUsage and there is ability to set @depens annotation for method. class InvoiceStatusCest { public function testOne() { } /** * @depends testOne */ …
Dmitriy Apollonin
  • 1,418
  • 2
  • 16
  • 30
1
vote
3 answers

jquery validate depends rule

I have a rule that appears to be formatted like the answer in this thread, but does not validate properly. If I comment out this rule, the validation is performed properly on the rest of the form. Other syntax errors I have found caused the same…
Doug Hemingway
  • 55
  • 1
  • 2
  • 8
1
vote
1 answer

Java read String on batch

I have a batch as follows: @echo off java Main 127.0.0.1 pause Now I want the number after 'Main' in the code above to be a String, so that you can change the String by editing the batch file.
1
vote
1 answer

Python fbx sdk dll import fails, dependency walker isn't helping

I'm attempting to use the python version of the FBX SDK and keep running into import errors. My first attempts were running under Python 3.2.3 and importing fbx gives me the >>> import fbx Traceback (most recent call last): File "", line…
1
vote
2 answers

How to write conditional logic using ant-contrib

I am a beginner in ANT. What am I doing wrong? ant-contrib-1.0b3 , is available. I would like to call the default target as follows:
Fawi
  • 473
  • 2
  • 7
  • 21
0
votes
1 answer

Jboss Service depending on JNDI resource

I have written a Jboss4 MBean which relies on other JNDI resource named XAOracleDS and defined in an xml datasource file (*-ds.xml). But when I restart my JBoss instance, I have a javax.naming.NameNotFoundException: XAOracleDS not bound due to…
1tox
  • 327
  • 1
  • 4
  • 14
0
votes
1 answer

Can an Ant target depend on completion of one of its dependencies, but not both?

I'm trying to make an Ant target that runs if ONE of two other targets completes. Basically, assuming I have three targets A1, A2, and B, I want B to run only if A1 OR A2 run. A1 and A2 depend on a condition, so either A1 or A2 will run (but never…
pghprogrammer4
  • 898
  • 2
  • 9
  • 21
0
votes
0 answers

Debian package dependency issue: dpkg: dependency problems prevent configuration of {Servive}

We have a debian package(say my-package-test) which depends on a specific version of another package in the depends section we have defined the exact version of the package: - collector (= 0.46.0) But when we add a new version of the collector…
aporv
  • 21
  • 4
0
votes
0 answers

Can parameters depend on a parameter in a loop invariant in ada?

Please can you tell me whether or not the parameters (in or out or in out) and the depends clause, are correct for the rest of the program. Question: I am unsure if the loop invariant can 'use' a parameter in order to make it an in parameter (or…
0
votes
0 answers

Onchange the values of next page fields

I have created new page named 'service' in account move line and added some fields in to it.Now i want to auto fill the next page('invoice lines')fields when changing corresponding fields in the 'service' page. anyone could you please help me here…
Nasiha
  • 3
  • 2
0
votes
0 answers

FastApi - Depends missing attribute

I'm working on fastapi web app and currently strugling with one thing. I'm working on google auth system and my dependency injection does not work as expected. Here are my endpoints: @app.route('/login') async def login(request: Request): …
xil
  • 1