About 231,000 results
Open links in new tab
  1. Pipeline conditions - Azure Pipelines | Microsoft Learn

    Feb 27, 2025 · For Classic pipelines, you can specify some conditions under which tasks or jobs run in the Control Options of each task, and in the Additional options for a job in a release …

  2. What is the Java ?: operator called and what does it do?

    The conditional operator ? : uses the boolean value of one expression to decide which of two other expressions should be evaluated. The conditional operator is syntactically right …

  3. How do you use the ? : (conditional) operator in JavaScript?

    Jun 7, 2011 · The conditional (ternary) operator is the only JavaScript operator that takes three operands. This operator is frequently used as a shortcut for the if statement.

  4. Bicep logical operators - Azure Resource Manager

    Mar 28, 2025 · The logical operators evaluate boolean values, return non-null values, or evaluate a conditional expression. To run the examples, use Azure CLI or Azure PowerShell to deploy a …

  5. Linq: adding conditions to the where clause conditionally

    But here in Linq I can only think of using an IF condition where I will write the same query thrice, with each IF block having an additional condition. Is there a better way to do this? If you do not …

  6. Pattern: Logical operators in a policy definition - Azure Policy

    Mar 4, 2025 · A policy definition can contain several conditional statements. You might need each statement to be true or only need some of them to be true. To support these needs, the …

  7. Template expressions - Azure Pipelines | Microsoft Learn

    Jun 10, 2025 · Use template expressions to specify how values are dynamically resolved during pipeline initialization. Wrap your template expression inside this syntax: ${{ }}. Template …

  8. c# - ?: ?? Operators Instead Of IF|ELSE - Stack Overflow

    The conditional operator (?:) returns one of two values depending on the value of a Boolean expression. Following is the syntax for the conditional operator.

  9. How do I perform an IF...THEN in an SQL SELECT? - Stack Overflow

    Sep 15, 2008 · It's like the Excel or sheets IF statements where there is a conditional followed by the true condition and then the false condition: if(condition, true, false)

  10. Creating a new column based on if-elif-else condition

    Since pandas 2.2.0, you can use case_when (a syntax useful in SQL in the context in the OP). See this answer for a demo. To formalize some of the approaches laid out above: Create a …