Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,907 for late (0.04 sec)

  1. src/time/sleep_test.go

    		for j := 0; j < timerCount; j++ {
    			j := j
    			expectedWakeup := Now().Add(delay)
    			AfterFunc(delay, func() {
    				late := Since(expectedWakeup)
    				if late < 0 {
    					late = 0
    				}
    				stats[j].count++
    				stats[j].sum += float64(late.Nanoseconds())
    				if late > stats[j].max {
    					stats[j].max = late
    				}
    				atomic.AddInt32(&count, 1)
    				for atomic.LoadInt32(&count) < int32(timerCount) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/compile.go

    	{"schedule", "regalloc"},
    	// the rules in late lower run after the general rules.
    	{"lower", "late lower"},
    	// late lower may generate some values that need to be CSEed.
    	{"late lower", "lowered cse"},
    	// checkLower must run after lowering & subsequent dead code elim
    	{"lower", "checkLower"},
    	{"lowered deadcode", "checkLower"},
    	{"late lower", "checkLower"},
    	// late nilcheck needs instructions to be scheduled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m8/ToolingApiEclipseModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        def "can customize model late in the configuration phase"() {
            projectDir.file('build.gradle').text = """
    apply plugin: 'java'
    
    gradle.projectsEvaluated {
        ${mavenCentralRepository()}
    }
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/SocketPolicy.kt

      /**
       * Close connection after reading the request but before writing the response. Use this to
       * simulate late connection pool failures.
       */
      object DisconnectAfterRequest : SocketPolicy
    
      /**
       * Half close connection (InputStream for client) after reading the request but before
       * writing the response. Use this to simulate late connection pool failures.
       */
      object HalfCloseAfterRequest : SocketPolicy
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

    configureIde(TestType.INTEGRATION)
    
    createTestTask("integMultiVersionTest", "forking", sourceSet, TestType.INTEGRATION) {
        // This test task runs only multi-version tests and is intended to be used in the late pipeline to sweep up versions not previously tested
        includeSpockAnnotation("org.gradle.integtests.fixtures.compatibility.MultiVersionTestCategory")
        (options as JUnitPlatformOptions).includeEngines("spock")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 21 22:31:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                gradle.taskGraph.whenReady { project.version = 'late' }
                artifacts { compile aJar }
    '''
            file('b/build.gradle') << '''
                apply plugin: 'base'
                version = 'early'
                configurations { compile }
                task bJar(type: Jar) { }
                gradle.taskGraph.whenReady { project.version = 'transitive-late' }
                artifacts { compile bJar }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/nowb.go

    }
    
    // recordCall records a call from ODCLFUNC node "from", to function
    // symbol "to" at position pos.
    //
    // This should be done as late as possible during compilation to
    // capture precise call graphs. The target of the call is an LSym
    // because that's all we know after we start SSA.
    //
    // This can be called concurrently for different from Nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/DeferrableTest.groovy

            then:
            thrown NullPointerException
    
            when:
            deferrable.completeAndGet()
            then:
            thrown NullPointerException
        }
    
        def "mapping deferred to null fails late"() {
            when:
            def deferrable = Deferrable.deferred(() -> "value").map(result -> null)
            then:
            noExceptionThrown()
    
            when:
            def result = deferrable.getCompleted()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

     *   and therefore these locations should not be watched to cut down on the number of watchers needed.
     *
     * - Locations known to be modified during a build might receive late file events that would invalidate VFS state we just
     *   captured after the changes; to avoid this, after a known modification we assume no further modifications will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/JavaLibraryResolutionAttributesOrderingIntegrationTest.groovy

     * beforeLocking callback method is called, the previous incorrect behavior of the ArtifactView was to select without
     * considering these attributes.  This has been corrected to use a "live" view
     * of the attributes, to ensure that late changes to the attributes are reflected in the selection.
     *
     * These tests use the `java-library` plugin and should resolve the secondary "classes" variant of the producer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top