Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 886 for checkdead (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            and:
            requestedModule.pom.expectGet()
            requestedModule.artifact.expectGet()
            transitiveModule.pom.expectGet()
            transitiveModule.artifact.expectGet()
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:unspecified") {
                    module("groupA:artifactA:1.2") {
                        module("groupB:artifactB:1.4")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
         * @throws Exception if the precondition cannot be checked
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients_test.cc

      CheckGrad({false, false, false},
                test::AsTensor<int>({15, 18, 21, 24}, {2, 2}));
    }
    
    TEST_F(StopGradientSingleOutputMultiEdgeTest, StopGradFirstEdge) {
      CheckGrad({true, false, false},
                test::AsTensor<int>({14, 16, 18, 20}, {2, 2}));
    }
    
    TEST_F(StopGradientSingleOutputMultiEdgeTest, StopGradSecondEdge) {
      CheckGrad({false, true, false},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    expectResolve()
                }
                'org:bar:1.0' {
                    expectGetMetadata()
                    expectGetArtifact(classifier: 'classy')
                }
            }
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:foo:1.0") {
                        module("org:bar:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

            def resolve = new ResolveTestFixture(buildFile, "compile")
            resolve.prepare()
            resolve.expectDefaultConfiguration("runtime")
    
            when:
            succeeds 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:[1.1]", "org.test:projectA:1.1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

                        }
                    }
                }
            """
            file("dep/build.gradle") << blueAndRedVariants()
    
            when:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    project(':dep', "test:dep:unspecified") {
                        variant "${color}Variant", [color: color]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                module('kotlin') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
                module('annotations') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:core:2.9.4", "org:core:2.7.9") {
                        forced()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenGradleMetadataRedirectionIntegrationTest.groovy

                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.pom.expectGet()
            mainModule.artifact.expectGet()
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:main:1.0')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            }
    
            then:
            fails ':checkDeps'
            failureHasCause("Could not find any version that matches org.utils:api:${selector}.")
    
            when:
            resetExpectations()
            repositoryInteractions {
                'org.utils:api' {
                    expectHeadVersionListing()
                }
            }
    
            then:
            fails ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    api "org:foo"
                }
            """
            checkConfiguration("compileClasspath")
    
            when:
            module.pom.expectGet()
            module.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.test:test:1.9") {
                    project(":platform", "org.test:platform:1.9") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top