Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for evacuatedX (0.23 sec)

  1. src/runtime/map_fast64.go

    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    				dst := &xy[useY]                 // evacuation destination
    
    				if dst.i == abi.MapBucketCount {
    					dst.b = h.newoverflow(t, dst.b)
    					dst.i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/map_fast32.go

    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    				dst := &xy[useY]                 // evacuation destination
    
    				if dst.i == abi.MapBucketCount {
    					dst.b = h.newoverflow(t, dst.b)
    					dst.i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/runtime/map_faststr.go

    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    				dst := &xy[useY]                 // evacuation destination
    
    				if dst.i == abi.MapBucketCount {
    					dst.b = h.newoverflow(t, dst.b)
    					dst.i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
         * @param action The action to execute.
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

                assert event.displayName == 'settings evaluated'
                assert event.descriptor.name == 'settings evaluated'
                assert event.descriptor.parent.name == 'some build'
            }
            1 * listener.statusChanged(_ as FinishEvent) >> { DefaultFinishEvent event ->
                assert event.eventTime == 1001
                assert event.displayName == 'settings evaluated'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

    import org.gradle.api.GradleException;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * This class keeps track of all objects being evaluated at the moment.
     * It helps to provide nicer error messages when the evaluation enters an endless cycle (A obtains a value of B which obtains a value of A).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         *
         * The given `baseDir` path is evaluated as per [file].
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
         * @return The file tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            } else null
        }
    
        fun evaluateAsKtConstantValue(
            fir: FirElement,
        ): KaConstantValue? {
            val evaluated = evaluate(fir) ?: return null
    
            val value = evaluated.value
            val psi = evaluated.psi as? KtElement
            return when (evaluated.kind) {
                ConstantValueKind.Byte -> KaConstantValue.KaByteConstantValue(value as Byte, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [KotlinInitScript.file].
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [KotlinInitScript.file].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [file].
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
         * @return The file tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top