Results for build-agent
I have two dfs. one df has only 1 and 0 (df_one_zero). and another one has the different values df_value_total. These two has thousand rows and column...
i am trying to build a pascal triangle but output is not as expected i want output as triangle = [] for i in range(num_rows): row = [1] * (i + 1) fo...
I have an Excel worksheet (TAB1) that lists items like this. Class Type AA A AB B AC A AD C So, there are unique Class values, but t...
I'm using vite global import feature to register some functions in globalProperties in vue 3 app to achive global $filters array in main.ts. It works ...
I'm migrating from Ivy+Ant to Maven and I'm quite new to Maven so bear with me... I need to 'filter' a single source file (.java) containing a placeho...
I have a Linux(RHEL) runner and creating a CI/CD pipeline to build the project using .yml file from GitLab. When I try to run the pipeline using .yml ...
I have a Linux(RHEL) runner and creating a CI/CD pipeline to build the project using .yml file from GitLab. When I try to run the pipeline using .yml ...
I'm trying to compile a relatively simple CMake project in C++, it was working previously on a different computer, but I recently switched and it no l...
I have a custom modal / full screen react component that uses position: fixed to ensure that it always take up the full screen. However, this componen...
I am trying to set up a pipeline for an iOS application using Fastlane and Match and I have followed the following guide. Azure iOS Pipeline Guide Is ...
In my Postgres database i have created the schema named pet and ran liquibase migration to create schema, tables and types but while starting my sprin...
I developed a fairly long build script. Now I need to add a set of unit tests to build.rs file. I tried to do the same as I do for regular files: // b...
I want to create one strict script that gets data from the table from database1 saves it on some variable, and then inserts this data to another table...
A Linux toolchain I'm managing contains a legacy .Net application. This is fine on Ubuntu, where an official Mono runtime environment to run .Net appl...
I can get a list of all columns in all tables, on SQL Server 2019 (v15.04): SELECT DISTINCT TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA....
I can get a list of all columns in all tables, on SQL Server v15.04 SELECT distinct ,TABLE_NAME ,COLUMN_NAME FROM INFORMATION_SCHEMA.CO...
I'm not very good with CMake and so I am trying to create a minimalistic example of what I would like to achieve. I wish to write a library, which is ...
I have a declarative pipeline, that is making use of shared library to zip the checked-out repo, and set some environment variable like env.VERSION. T...
We have a repo in BitBucket and are using pipelines in Azure DevOps to build the repo. In BitBucket we can see the status of the last build from the p...
I try to convert github action to jenkins pipeline. This github action generate a native image via Jib. This is the commande line mvn package -Pnative...
My goal is to take additional arguments passed through the ellipsis ... (see ?dots for more info) and build a new generic function with the parameters...
We have a repository hosted in BitBucket with the build pipelines in Azure DevOps. In the yaml file for the pipeline we have a pr trigger defined. pr:...
Given a circular array A, how would you construct a segment tree off of A? Do you use two separate arrays for the segment tree or some other method? I...
My project is developed in Qt C++ in Windows environment. I want to build on Github actions by using msbuild and windeployqt. This is my example yml s...
When trying to generate an APK file fro an android app, I get these errors: Missing class com.android.org.conscrypt.SSLParametersImpl (referenced from...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?