Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for checkMap (0.17 sec)

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

                .dependsOn(ivyModule)
                .publish()
    
            buildFile << """
    dependencies {
        conf 'org.test:maven:1.0'
    }
    """
            expect:
            succeeds 'checkDep'
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('org.test:maven:1.0:runtime') {
                        module('org.test:ivy:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

            runtime 'org.test:m2:1.0'
            master 'org.test:m3:1.0'
            other 'org.test.ignore-me:1.0'
            "default" 'org.test:dont-ignore-me:1.0'
        }
    }
    """
            expect:
            succeeds 'child1:checkDep'
            resolve.expectGraph {
                root(':child1', 'testproject:child1:') {
                    module('org.test:maven:1.0') {
                        edge('org.test:replaced:1.0', ':child2', 'testproject:child2:') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // encounters an error reading the zip file.
    //
    // Note that CheckZip does not read individual files, so [Unzip] may still fail
    // when CheckZip is successful due to I/O errors.
    func CheckZip(m module.Version, zipFile string) (CheckedFiles, error) {
    	f, err := os.Open(zipFile)
    	if err != nil {
    		return CheckedFiles{}, err
    	}
    	defer f.Close()
    	_, cf, err := checkZip(m, f)
    	return cf, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                dependencies {
                    conf 'org:${chain[0]}:1.0'
                }
            """
            expectChainInteractions(REPO_TYPES, chain, testVariant)
    
            then:
            succeeds 'checkDep'
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:${chain[0]}:1.0:${RepositoryInteractionDependencyResolveIntegrationTest.expectedConfiguration(chain[0], testVariant)}") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    static void ValidateAPI(const TF_FilesystemPluginOps* ops) {
      CheckAPI(ops->filesystem_ops_api, TF_FILESYSTEM_OPS_API, "filesystem");
    
      if (ops->random_access_file_ops != nullptr)
        CheckAPI(ops->random_access_file_ops_api, TF_RANDOM_ACCESS_FILE_OPS_API,
                 "random access file");
    
      if (ops->writable_file_ops != nullptr)
        CheckAPI(ops->writable_file_ops_api, TF_WRITABLE_FILE_OPS_API,
                 "writable file");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/cover/testdata/main.go

    func check(line, count uint32) {
    	b := block{
    		count,
    		line,
    	}
    	counters[b] = true
    }
    
    // checkVal is a version of check that returns its extra argument,
    // so it can be used in conditionals.
    func checkVal(line, count uint32, val int) int {
    	b := block{
    		count,
    		line,
    	}
    	counters[b] = true
    	return val
    }
    
    var PASS = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                }
                id('org.test:moduleB:1.0') {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    
            then:
            succeeds 'checkDep'
            def expectedVariant = variantToTest
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org.test:moduleA:1.0:$expectedVariant") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. test/chan/powser2.go

    		a := make([]*rat, N)
    		d := Diff(Ones)
    		for i := 0; i < N; i++ {
    			a[i] = itor(int64(i + 1))
    		}
    		checka(d, a, "Diff") // 1 2 3 4 5
    		in := Integ(zero, Ones)
    		a[0] = zero // integration constant
    		for i := 1; i < N; i++ {
    			a[i] = i2tor(1, int64(i))
    		}
    		checka(in, a, "Integ")                               // 0 1 1/2 1/3 1/4 1/5
    		check(Cmul(neg(one), Twos), itor(-2), 10, "CMul")    // -1 -1 -1 -1 -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            repositoryInteractions {
                'a:a:1.0' { expectResolve() }
                'b:b:1.0' { expectResolve() }
                'c:c:1.0' { expectResolve() }
            }
    
            when:
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("a:a:1.0") {
                        module("b:b:1.0")
                        module("c:c:1.0")
                    }
    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. src/cmd/compile/internal/ssa/func_test.go

    // TODO(matloob): Allow values and predecessors to be in different
    // orders if the CFG are otherwise equivalent.
    func Equiv(f, g *Func) bool {
    	valcor := make(map[*Value]*Value)
    	var checkVal func(fv, gv *Value) bool
    	checkVal = func(fv, gv *Value) bool {
    		if fv == nil && gv == nil {
    			return true
    		}
    		if valcor[fv] == nil && valcor[gv] == nil {
    			valcor[fv] = gv
    			valcor[gv] = fv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top