Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 292 for corretto (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleVersions.java

     */
    public class GradleVersions {
    
        private GradleVersions() {
        }
    
        // We moved the API back into internal, so this isn't really correct.
        public static final String SUPPORTS_DEPLOYMENT_REGISTRY = ">=4.2";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1011 bytes
    - Viewed (0)
  2. tests/count_test.go

    		t.Errorf("Count() method should get correct value, expect: %v, got %v", count, len(users))
    	}
    
    	if err := DB.Model(&User{}).Where("name = ?", user1.Name).Or("name = ?", user3.Name).Count(&count).Find(&users).Error; err != nil {
    		t.Errorf(fmt.Sprintf("Count should work, but got err %v", err))
    	}
    
    	if count != int64(len(users)) {
    		t.Errorf("Count() method should get correct value, expect: %v, got %v", count, len(users))
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/mlir_to_graph_passes.td

    include "mlir/Pass/PassBase.td"
    
    def VerifyInputDialectToExecutorPass : Pass<"verify-input-dialect-to-executor-pass", "mlir::func::FuncOp"> {
      let summary = "Verify that TF dialect to executor converter receives the correct input.";
      let description = [{
        Verifies the input before exporting to TF executor. This includes checking whether the Ops are in TF functional, have device attributes & there are no tf_device.cluster_func ops.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 16:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginRequiredServicesIntegrationTest.groovy

        def setup() {
            settingsFile << plugin.pluginManagement() << plugin.plugins()
            plugin.publishDummyPlugin(executer)
        }
    
        def "required services are correct"() {
            given:
            buildFile << """
                def serviceRef = gradle.extensions.serviceRef
                task check {
                    doLast {
                        def service = serviceRef.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesRepositoriesIntegrationTest.groovy

        }
    
        @LeaksFileHandles
        @UsesSample("artifacts/defineRepository")
        def "can use repositories notation with #dsl dsl"() {
            // This test is not very strong. Its main purpose is to the for the correct syntax as we use many
            // code snippets from this build script in the user's guide.
            executer.inDirectory(sample.dir.file(dsl))
    
            expect:
            succeeds('lookup')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectResolver.java

            this.projectModelResolver = projectModelResolver;
        }
    
        public VisualStudioProjectConfiguration lookupProjectConfiguration(VisualStudioTargetBinary nativeBinary) {
            // Looks in the correct project registry for this binary
            VisualStudioExtension visualStudioExtension = getComponentModel(nativeBinary).realize("visualStudio", VisualStudioExtension.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/TaskVisibilityCrossVersionSpec.groovy

            group 'build'
        }
    }
    
    project(':b:c') {
        task t1 {
            group 'build'
        }
        task t2 {
            group 'build'
        }
    }'''
        }
    
        def "task visibility is correct"() {
            def publicTasks = rootProjectImplicitTasks - rootProjectImplicitInvisibleTasks + ['t2']
            def publicSelectors = rootProjectImplicitSelectors - rootProjectImplicitInvisibleSelectors + ['t1', 't2']
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top