Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for corretto (0.51 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessConcurrencyTest.groovy

    
    import java.util.concurrent.Executors
    import java.util.concurrent.TimeUnit
    
    class DefaultFileSystemAccessConcurrencyTest extends AbstractFileSystemAccessTest {
    
        def "parallel invalidation yields correct results"() {
            def dir = temporaryFolder.createDir("some/deep/hierarchy")
            (1..1000).each {
                def subdir = dir.file(it)
                subdir.file("in-dir.txt").createFile()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/PhasedActionEventConsumer.java

    import org.gradle.tooling.internal.provider.serialization.PayloadSerializer;
    
    /**
     * Consumer of events from phased actions. This consumer deserializes the results and forward them to the correct listener.
     */
    public class PhasedActionEventConsumer implements BuildEventConsumer {
        private final PhasedActionResultListener phasedActionResultListener;
        private final PayloadSerializer payloadSerializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnumBuildOptionTest.groovy

    import spock.lang.Specification
    
    class EnumBuildOptionTest extends Specification {
        def option = new MyEnumBuildOption()
    
        def "reasonable error message when user doesn't select a correct value"() {
            def receiver = Mock(Dummy)
    
            when:
            option.applyFromProperty([test: 'thou'], receiver)
    
            then:
            1 * receiver.accept(MyEnum.THOU)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/icu.go

    // Ideally these functions would be defined in a test file, but go test doesn't
    // allow CGO in tests. The build tag should ensure either way that these
    // functions will not end up in the package.
    
    // TODO: Ensure that the correct ICU version is set.
    
    /*
    #cgo LDFLAGS: -licui18n.57 -licuuc.57
    #include <stdlib.h>
    #include <unicode/ustring.h>
    #include <unicode/utypes.h>
    #include <unicode/localpointer.h>
    #include <unicode/ucasemap.h>
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    // rewrite the graph to use pipelining for better device utilization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

            "(Scala Compiler interface compilation took ([0-9]+ hrs )?([0-9]+ mins )?[0-9.]+ secs\n\n)" +
                "|(\\[Warn] : -target is deprecated: Use -release instead to compile against the correct platform API.\none warning found\n\n)",
            Pattern.MULTILINE
        )
    
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/CompositeCleanupActionTest.groovy

            getBaseDir() >> temporaryFolder.getTestDirectory()
            getDisplayName() >> "My Cache"
        }
        def progressMonitor = Stub(CleanupProgressMonitor)
    
        def "calls configured cleanup actions for correct dirs"() {
            given:
            def firstCleanupAction = Mock(CleanupAction)
            def secondCleanupAction = Mock(CleanupAction)
            def subDir = temporaryFolder.file("subDir")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
     * Symbol's properties are not affected by its source representation.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

            run "publish"
    
            then: "module is published with artifacts"
            def ivyModule = ivyRepo.module("org.gradle.test", "publishEar", "1.9")
            ivyModule.assertPublishedAsEarModule()
    
            and: "correct configurations and dependencies declared"
            with(ivyModule.parsedIvy) {
                configurations.keySet() == ["default", "master"] as Set
                configurations.default.extend == ["master"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top