Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,032 for corretto (0.11 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

        }
    
        @Test
        fun `maps resolution errors to document errors`() {
            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("correct") { }
                addAndConfigure("lambda missing")
                addAndConfigure("incorrect signature", 1) {
                    number = 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/artifactreuse/AbstractCacheReuseCrossVersionIntegrationTest.groovy

        /**
         * **** README ****
         *
         * If this test fails:
         *  1. Make sure DefaultGradleDistribution.getArtifactCacheLayoutVersion settings are correct
         *  2. Think about improving this test so that we don't have to manually fix things ;)
         */
        void setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesStatusIntegrationTest.groovy

            mavenHttpRepo
        }
    
        String getRepoDeclaration() {
    """
    repositories {
        maven {
            url "$repo.uri"
        }
    }
    """
        }
    
        def "snapshot and release versions have correct status"() {
            given:
            repo.module('group1', 'projectA', '1.0').publish().allowAll()
            repo.module('group2', 'projectB', '2.0-SNAPSHOT').publish().allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            def pmdTask = project.tasks.getByName("pmdMain")
            expect:
            pmdTask.classpath.files == (mainSourceSet.output + mainSourceSet.compileClasspath).files
        }
    
        def "tool configuration has correct attributes"() {
            expect:
            with(project.configurations.pmd.attributes) {
                assert getAttribute(Category.CATEGORY_ATTRIBUTE).name == Category.LIBRARY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/go/printer/printer_test.go

    const (
    	export checkMode = 1 << iota
    	rawFormat
    	normNumber
    	idempotent
    	allowTypeParams
    )
    
    // format parses src, prints the corresponding AST, verifies the resulting
    // src is syntactically correct, and returns the resulting src or an error
    // if any.
    func format(src []byte, mode checkMode) ([]byte, error) {
    	// parse src
    	f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top