Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 827 for late (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependenciesMetadataAdapter.java

                // most cases. We could create an empty attribute set directly in the AbstractDependencyImpl,
                // but then it wouldn't be mutable. Therefore we proceed with "late injection" of the attributes
                ((AbstractDependencyImpl<?>) dependencyMetadata).setAttributes(attributesFactory.mutable());
            }
    
            T adapted = adapt(dependencyMetadata);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pkg/probe/http/request.go

    }
    
    // formatURL formats a URL from args.  For testability.
    func formatURL(scheme string, host string, port int, path string) *url.URL {
    	u, err := url.Parse(path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	//
    	// This construction of a URL may be wrong in some cases, but it preserves
    	// legacy prober behavior.
    	if err != nil {
    		u = &url.URL{
    			Path: path,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    (CMNWconst [c] x) && !isARM64addcon(int64(c))  => (CMNW x (MOVDconst [int64(c)]))
    
    (ADDSconstflags [c] x) && !isARM64addcon(c)  => (ADDSflags x (MOVDconst [c]))
    
    // These rules remove unneeded sign/zero extensions.
    // They occur in late lower because they rely on the fact
    // that their arguments don't get rewritten to a non-extended opcode instead.
    
    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top