Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Variable (0.2 sec)

  1. 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)
  2. src/cmd/go/alldocs.go

    // decisions about whether to reuse a cached test result.
    //
    // # Environment variables
    //
    // The go command and the tools it invokes consult environment variables
    // for configuration. If an environment variable is unset or empty, the go
    // command uses a sensible default setting. To see the effective setting of
    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		if cfg.Goos == "aix" {
    			return []string{"-maix64"}
    		}
    	}
    	return nil
    }
    
    // envList returns the value of the given environment variable broken
    // into fields, using the default value when the variable is empty.
    //
    // The environment variable must be quoted correctly for
    // quoted.Split. This should be done before building
    // anything, for example, in BuildInit.
    func envList(key, def string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface VarTypeMismatchOnOverride : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VarTypeMismatchOnOverride::class
            val variable: KaCallableSymbol
            val superVariable: KaCallableSymbol
        }
    
        interface VarOverriddenByVal : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VarOverriddenByVal::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtNamedDeclaration>(firDiagnostic, token), KaFirDiagnostic.PropertyTypeMismatchOnOverride
    
    internal class VarTypeMismatchOnOverrideImpl(
        override val variable: KaCallableSymbol,
        override val superVariable: KaCallableSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
        SettableFuture<String> future1 = SettableFuture.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
        SettableFuture<String> future1 = SettableFuture.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

            activated. On the other hand, {@code exists} will test for the existence of the file and if it is
            there, the profile will be activated.
            &lt;p>Variable interpolation for these file specifications is limited to {@code ${project.basedir}},
            system properties and user properties.&lt;/p></description>
          <fields>
            <field>
              <name>missing</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top