Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for checkZip (0.2 sec)

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

                }
                'org.gradle:other:preview-1' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    
            expect:
            succeeds "checkDep"
            resolve.expectGraph {
                root(':', 'org.gradle:testproject:1.0') {
                    module("org.gradle:test:1.45") {
                        module("org.gradle:other:preview-1")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. 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)
  3. test/method5.go

    	
    	t4 := T4{}
    	t3 := T3{&t4}
    	t2 := T2{&t3}
    	t1 := T1{t2}
    	CheckI("t4", t4, 40)
    	CheckI("&t4", &t4, 40)
    	CheckI("t3", t3, 40)
    	CheckI("&t3", &t3, 40)
    	CheckI("t2", t2, 40)
    	CheckI("&t2", &t2, 40)
    	CheckI("t1", t1, 40)
    	CheckI("&t1", &t1, 40)
    	
    	// x.M panics if x is an interface type and is nil,
    	// or if x.M expands to (*x).M where x is nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/GradleBuildScriptExecutionFromSubDirIntegTest.groovy

            buildFile """
                tasks.register("checkDir") {
                    def file = file("tmp/gradle")
                    doLast {
                        println file
                    }
                }
            """
            settingsFile << "include 'tmp'"
    
            when:
            def subdir = file("tmp")
            subdir.mkdirs()
            executer.inDirectory(subdir)
            succeeds ':checkDir'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiModelChecker.groovy

                    checkModel(actualItem, expectedItem, specs)
                }
                return
            }
    
            if (expected instanceof Map) {
                assert actual instanceof Map
                checkMap(actual, expected) { actualItem, expectedItem ->
                    checkModel(actualItem, expectedItem, specs)
                }
                return
            }
    
            for (def spec in specs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:26:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/dns.go

    	return doForward(ctx, cfg, c.e, c.makeRequest)
    }
    
    type dnsRequest struct {
    	hostname  string
    	dnsServer string
    	query     string
    	protocol  string
    }
    
    func checkIn(got string, want ...string) error {
    	for _, w := range want {
    		if w == got {
    			return nil
    		}
    	}
    	return fmt.Errorf("got value %q, wanted one of %v", got, want)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClass.kt

    package issue.pack;
    
    public class RowIcon {
        public static class RClass {}
    }
    
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon.RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 285 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromAnotherModule.kt

    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // MODULE: main(dep)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 316 bytes
    - Viewed (0)
  10. test/fixedbugs/issue7346.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 7346 : internal error "doasm" error due to checknil
    // of a nil literal.
    
    package main
    
    func main() {
    	_ = *(*int)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
Back to top