jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Knowledge / Stack Overflow · hot matching “ai”

8 shown · updated 10m ago · read only
  1. Delphi 13 Android deployment fails with E7432 NoSuchFileException for missing JAR files (stackoverflow.com)stack

    27 points by BennieC in stackoverflow.com · 1h ago · stack

    I am trying to migrate a Delphi FMX application from Delphi 11 to Delphi 13 and deploy it to Android. The application deployed successfully with Delphi 11, but after moving to Delphi 13 I get a long list of [PAClient Error] E7432 errors during deployment. The errors all seem to…
  2. Why do I suddenly get "Execution failed for task :app:configureCMakeDebug[arm64-v8a]" while building? (stackoverflow.com)stack

    19 points by Wiem Ben yahia in stackoverflow.com · 2y ago · stack

    My app was working yesterday, but now gives me: Execution failed for task ':app:configureCMakeDebug[arm64-v8a]'. > [CXX1429] error when building with cmake using C:\{my path}\node_modules\react-native\ReactAndroid\cmake-utils\default-app-setup\CMakeLists.txt: -- The C compiler i…
  3. Camera causing flutter application to crash (stackoverflow.com)stack

    16 points by Saad Bashir in stackoverflow.com · 3y ago · stack

    I am using camera package for Flutter. Every time the app is running, if I try to change the camera permission from the settings of iOS device the app crashes. So I created a new application and used the example code available on their website. The app still crashes. I am only u…
  4. Send Mail from Windows Machine using Shell ( from Git bash) (stackoverflow.com)stack

    14 points by Ashu in stackoverflow.com · 5y ago · stack

    I have migrated code from Unix OS to Windows. But was stuck in Mail Service from Windows to Users Mail ID. This Service " /usr/sbin/sendmail " was available in Linux OS BUT Dont know how it works in Windows. Please help to setup sendmail in WIndows. and I am using Git bash to ru…
  5. PostgreSQL rename table - cascade renaming to objects like indices, constraints that contain table name (stackoverflow.com)stack

    13 points by Tom in stackoverflow.com · 5y ago · stack

    I renamed my tables with ALTER TABLE _ RENAME TO _ : ALTER TABLE foods RENAME TO food; ALTER TABLE foods_nutrients RENAME TO food_nutrient; It worked, however other database objects like indices, sequences and constraints that contained these table names didn't update. So I had…
    filed under postgresql
  6. How to mark an Airflow DAG run as failed if any task fails? (stackoverflow.com)stack

    6 points by BelowZero in stackoverflow.com · 8y ago · stack

    Is it possible to make an Airflow DAG fail if any task fails? I usually have some cleaning up tasks at the end of a DAG and as it is now, whenever the last task succeeds the whole DAG is marked as a success.
    filed under pythonairflow
  7. Yii2: Config params vs. const/define (stackoverflow.com)stack

    3 points by robsch in stackoverflow.com · 11y ago · stack

    When should I use what? I have the option to define constants in the index.php entry script file like it is recommended in Yii2 guide: constants . Or I could use the params in the configuration - explained in YII2 guide: params . Both are per application and not really global. C…