Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 439 for Variable (1.28 sec)

  1. 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)
  2. src/cmd/go/testdata/script/env_write.txt

    # Now override it to something writable.
    env GOENV=$WORK/envdir/go/env
    go env GOENV
    stdout envdir[\\/]go[\\/]env
    
    # go env shows all variables
    go env
    stdout GOARCH=
    stdout GOOS=
    stdout GOROOT=
    
    # go env ignores invalid flag in GOFLAGS environment variable
    env GOFLAGS='=true'
    go env
    
    # checking errors
    ! go env -w
    stderr 'go: no KEY=VALUE arguments given'
    ! go env -u
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/link/doc.go

    	-V
    		Print linker version and exit.
    	-X importpath.name=value
    		Set the value of the string variable in importpath named name to value.
    		This is only effective if the variable is declared in the source code either uninitialized
    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/cmd/internal/cov/covcmd/cmddefs.go

    	// if panic paths are instrumented, or if the instrumenter
    	// eliminates redundant counters).
    	Strategy string
    
    	// Prefix assigned to the names of counter variables generated
    	// during instrumentation by cmd/cover.
    	CounterPrefix string
    
    	// Name chosen for the package ID variable generated during
    	// instrumentation.
    	PkgIdVar string
    
    	// Counter mode (e.g. set/count/atomic)
    	CounterMode string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

         * mean one can assign `null` to a variable of this type because it may be unknown if this type can accept `null`. For example, a public value
         * of type `T:Any?` can potentially be null. But one can not assign `null` to such a variable because the instantiated type may not be
         * nullable.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    	}
    	return def, false
    }
    
    var SumdbDir = gopathDir("pkg/sumdb")
    
    // GetArchEnv returns the name and setting of the
    // GOARCH-specific architecture environment variable.
    // If the current architecture has no GOARCH-specific variable,
    // GetArchEnv returns empty key and value.
    func GetArchEnv() (key, val string, changed bool) {
    	switch Goarch {
    	case "arm":
    		return "GOARM", GOARM, goARMChanged
    	case "arm64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSimpleVariableAccess.kt

    public sealed class KaSimpleVariableAccess {
        public object Read : KaSimpleVariableAccess()
    
        public class Write(
            /**
             * [KtExpression] that represents the new value that should be assigned to this variable. Or null if the assignment is incomplete
             * and misses the new value.
             */
            public val value: KtExpression?,
        ) : KaSimpleVariableAccess()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 705 bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        public enum class Kind { SUPER_CALL, THIS_CALL }
    }
    
    /**
     * An access to variables (including properties).
     */
    public sealed class KaVariableAccessCall : KaCallableMemberCall<KaVariableLikeSymbol, KaVariableLikeSignature<KaVariableLikeSymbol>>()
    
    /**
     * A simple read or write to a variable or property.
     */
    public class KaSimpleVariableAccessCall(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/dwarf.go

    	ChildIndex      int32 // child DIE index in abstract function
    	IsInAbstract    bool  // variable exists in abstract function
    	ClosureOffset   int64 // if non-zero this is the offset of this variable in the closure struct
    }
    
    // A Scope represents a lexical scope. All variables declared within a
    // scope will only be visible to instructions covered by the scope.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/config.go

    // so the ctxt.LinkMode variable has an initial value from the -linkmode
    // flag and the iscgo, externalobj, and unknownObjFormat variables are set.
    func determineLinkMode(ctxt *Link) {
    	extNeeded, extReason := mustLinkExternal(ctxt)
    	via := ""
    
    	if ctxt.LinkMode == LinkAuto {
    		// The environment variable GO_EXTLINK_ENABLED controls the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top