Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 706 for checkdup (0.13 sec)

  1. .github/workflows/tests.yml

        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v4
          with:
            go-version: ${{ matrix.go }}
    
        - name: Check out code into the Go module directory
          uses: actions/checkout@v4
    
        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

                this.metadata = md
            }
    
            void declaresChecksum(String checksum, String algorithm = "sha1") {
                def expectedChecksum = metadata.checksums.find { it.kind == ChecksumKind.valueOf(algorithm) }.value
                assert expectedChecksum == checksum : "On ${metadata.artifactName}, expected a ${algorithm} checksum of ${checksum} but was ${expectedChecksum}"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/RemoteProject.groovy

            }
            return tmpDir
        }
    
        @TypeChecked(TypeCheckingMode.SKIP)
        static File checkout(FileSystemOperations fsOps, ExecOperations execOps, String remoteUri, String ref, File checkoutDir) {
            cleanTemporaryDir(fsOps, checkoutDir)
            execOps.exec {
                commandLine = ["git", "clone", "--no-checkout", remoteUri, checkoutDir.absolutePath]
                errorOutput = System.out
            }
            execOps.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

            and:
            def module = ivyHttpRepo.module('group', 'projectA', '1.2').publish()
            module.ivyFile.text = "<ivy-module>"
    
            when:
            module.ivy.expectGet()
    
            then:
            fails "checkDeps"
            failedResolve.assertFailurePresent(failure)
            failure
                .assertResolutionFailure(":compile")
                .assertHasCause("Could not parse Ivy file ${module.ivy.uri}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExclusiveRepositoryContentFilteringIntegrationTest.groovy

                }
            """
    
            when:
            foo.ivy.expectGet()
            foo.artifact.expectGet()
            bar.pom.expectGet()
            bar.artifact.expectGet()
    
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:foo:1.0')
                    module('other:bar:2.0')
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    			},
    		},
    		{
    			"Restore checkpoint with invalid checksum",
    			`{
    				"policyName": "none",
    				"defaultCPUSet": "4-6",
    				"entries": {},
    				"checksum": 1337
    			}`,
    			"none",
    			containermap.ContainerMap{},
    			"checkpoint is corrupted",
    			&stateMemory{},
    		},
    		{
    			"Restore checkpoint with invalid JSON",
    			`{`,
    			"none",
    			containermap.ContainerMap{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnChangingVersionsResolveIntegrationTest.groovy

                'org:test:1.0'()
            }
    
            when:
            repositoryInteractions {
                'org:test:1.0' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve org:test:1.0: Resolution strategy disallows usage of changing versions")
        }
    
        def "fails to resolve a transitive changing dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
                            branch = 'previous'
                        }
                        assert sourceFile.text == 'hello world'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top