Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for Variable (0.14 sec)

  1. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        )
    
        /**
         * Represents a local variable reassignment.
         */
        public class VariableReassignment(
            /** The reassignment expression. */
            public val expression: KtExpression,
    
            /** Reassigned variable symbol. */
            public val variable: KaVariableLikeSymbol,
    
            /** `true` if the variable is both read and set (as in `x += y` or `x++`). */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

    
    /**
     * A signature of a variable-like symbol. This includes properties, enum entries local variables, etc.
     */
    public abstract class KaVariableLikeSignature<out S : KaVariableLikeSymbol> : KaCallableSignature<S>() {
        /**
         * A name of the variable with respect to the `@ParameterName` annotation. Can be different from the [KaVariableLikeSymbol.name].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/compile/CodeFragmentCapturedValue.kt

        }
    
        /** Represents a local variable or a parameter. */
        public class Local(
            name: Name,
            isMutated: Boolean,
            isCrossingInlineBounds: Boolean,
        ) : CodeFragmentCapturedValue(name.asString(), isMutated, isCrossingInlineBounds)
    
        /** Represents a delegated local variable (`val local by...`). */
        public class LocalDelegate(
            name: Name,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/incrementPostfix.txt

      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x++
          isAugmented = true
          variable = var x: kotlin.Int,
        VariableReassignment:
          expression = x++
          isAugmented = true
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 571 bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirPsiBasedPropertySymbolPointer.kt

        override fun restoreSymbol(analysisSession: KaSession): KaKotlinPropertySymbol? =
            when (val variable = with(analysisSession) { variableSymbolPointer.restoreSymbol() }) {
                is KaKotlinPropertySymbol -> variable
                is KaValueParameterSymbol -> variable.generatedPrimaryConstructorProperty
                else -> null
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

        /**
         * Adds the environment variables in the form of properties whose keys are prefixed with {@code env.}, e.g. {@code
         * env.PATH}. Unlike native environment variables, properties are always case-sensitive. For the sake of
         * determinism, the environment variable names will be normalized to upper case on platforms with case-insensitive
         * variable lookup.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/variables/destructuredReassignment.txt

      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x = 1
          isAugmented = false
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 392 bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    its initialization expression has no <i>dependencies</i> on uninitialized variables.
    Initialization proceeds by repeatedly initializing the next package-level
    variable that is earliest in declaration order and ready for initialization,
    until there are no variables ready for initialization.
    </p>
    
    <p>
    If any variables are still uninitialized when this
    process ends, those variables are part of one or more initialization cycles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/variables/simpleReassignment.txt

      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x = 1
          isAugmented = false
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 392 bytes
    - Viewed (0)
Back to top