Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,523 for late (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-compat/src/main/resources/META-INF/maven/plugin.xml

            <forkId implementation="int" default-value="-1">${forkId}</forkId>
          </configuration>
        </mojo>
        <mojo>
          <goal>resolve-late-bound-plugin</goal>
          <description>Resolve a late-bound plugin during a build, right before it is to be used.</description>
          <requiresDirectInvocation>false</requiresDirectInvocation>
          <requiresProject>false</requiresProject>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.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. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    func NewHandler(ops ...Operation) *Handler {
    	operations := sets.NewString()
    	for _, op := range ops {
    		operations.Insert(string(op))
    	}
    	return &Handler{
    		operations: operations,
    	}
    }
    
    // SetReadyFunc allows late registration of a ReadyFunc to know if the handler is ready to process requests.
    func (h *Handler) SetReadyFunc(readyFunc ReadyFunc) {
    	h.readyFunc = readyFunc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. src/net/http/httptest/server.go

    			// requests) and new connections (those which connected
    			// but never sent a request). StateNew connections are
    			// super rare and have only been seen (in
    			// previously-flaky tests) in the case of
    			// socket-late-binding races from the http Client
    			// dialing this server and then getting an idle
    			// connection before the dial completed. There is thus
    			// a connected connection in StateNew with no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. 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)
Back to top