Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for evacuatedX (0.34 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.go

    					} else {
    						if hash&newbit != 0 {
    							useY = 1
    						}
    					}
    				}
    
    				if evacuatedX+1 != evacuatedY || evacuatedX^1 != evacuatedY {
    					throw("bad evacuatedN")
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY
    				dst := &xy[useY]                 // evacuation destination
    
    				if dst.i == abi.MapBucketCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

                // user logic registered _after_ listener registered
                gradle.projectsEvaluated {
                    println "projects evaluated"
                    System.err.println "projects evaluated"
                }
            """
    
            runAndFail("t")
    
            then:
            outputContains("projects evaluated")
            output.matches("""(?s).*
    1 actionable task: 1 executed.*
    failure message: Execution failed for task ':t'.
    .*""")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/ProjectEvaluationListener.java

         *
         * @param project The which is to be evaluated. Never null.
         */
        void beforeEvaluate(Project project);
    
        /**
         * <p>This method is called when a project has been evaluated, and before the evaluated project is made available to
         * other projects.</p>
         *
         * @param project The project which was evaluated. Never null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

    import org.gradle.api.artifacts.repositories.MavenArtifactRepository
    
    
    /**
     * Adds and configures a Maven repository.
     *
     * The provided [url] value is evaluated as per [org.gradle.api.Project.uri]. This means, for example, you can pass in a `File` object, or a relative path to be evaluated relative
     * to the project directory.
     *
     * @param url the base URL of this repository. This URL is used to find both POMs and artifact files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

    public interface BuildListener {
    
        /**
         * Called when the build settings are about to be loaded and evaluated.
         *
         * @param settings The settings. Never null.
         * @since 6.0
         */
        default void beforeSettings(Settings settings) {}
    
        /**
         * <p>Called when the build settings have been loaded and evaluated. The settings object is fully configured and is
         * ready to use to load the build projects.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/resources/ResourceHandler.java

         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link org.gradle.api.Project#file(Object)}.
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top