Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for pub2 (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            and:
            def pub1 = publications.publications.find { it.id.group == "test.org" }
            pub1 != null
            pub1.id.name == "test-module"
            pub1.id.version == "1.1"
    
            and:
            def pub2 = publications.publications.find { it.id.group == "test.groupId" }
            pub2 != null
            pub2.id.name == "test-artifactId"
            pub2.id.version == "1.2"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. cmd/testdata/invalid_test_key.pub

    Sveinn <******@****.***> 1717573873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 569 bytes
    - Viewed (0)
  3. cmd/testdata/dillon_test_key.pub

    Sveinn <******@****.***> 1717573873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 99 bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2/sub2","Output":"        --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2/sub2","Output":"            foo_test.go:26: output from sub2 test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:32: output after sub test\n"}
    {"Action":"pass","Test":"TestOutputWithSubtest/sub_test2/sub2"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. pkg/volume/util/nested_volumes_test.go

    								{MountPath: "/ignore", Name: "vol2"},
    								{MountPath: "/mnt/sub1/sub2/sub3", Name: "vol3"},
    								{MountPath: "/mnt/sub1/sub2/sub4", Name: "vol4"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip", Name: "vol5"},
    								{MountPath: "/mnt/sub1/sub2/sub4/skip2", Name: "vol5a"},
    								{MountPath: "/mnt/sub1/sub2/sub6", Name: "vol6"},
    								{MountPath: "/mnt7", Name: "vol7"},
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue29755.test

    === RUN   TestOutputWithSubtest
    === RUN   TestOutputWithSubtest/sub_test
    === RUN   TestOutputWithSubtest/sub_test/sub2
    === RUN   TestOutputWithSubtest/sub_test2
    === RUN   TestOutputWithSubtest/sub_test2/sub2
    --- FAIL: TestOutputWithSubtest (0.00s)
        foo_test.go:6: output before sub tests
        foo_test.go:10: output from root test
        foo_test.go:15: output from root test
        --- PASS: TestOutputWithSubtest/sub_test (0.00s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnMultipleFailuresIntegrationTest.groovy

            buildC = multiProjectBuild('buildC', ['sub1', 'sub2', 'sub3']) {
                buildFile << """
                    allprojects {
                        ${javaProject()}
                    }
    
                    test.dependsOn 'sub1:test', 'sub2:test', 'sub3:test'
                """
                file('sub1/src/test/java/SampleTestC_Sub1.java') << junitTestClass('SampleTestC_Sub1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:27 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/InitScriptIntegrationTest.groovy

            output.contains("order: beforeSettings - settings.gradle - settingsEvaluated")
            output.contains("subprojects: :sub1 - :sub2")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can apply settings plugin from init script"() {
            given:
            createDirs("sub1", "sub2")
            def pluginBuilder = new PluginBuilder(file("plugin"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

                    it.tasks.register("myTask") {
                    }
                }
            """
            ['foo', 'bar', 'included/sub1', 'included/sub2'].each { file(it).mkdirs() }
            file('included/settings.gradle') << """
                include 'sub1', 'sub2'
            """
            file('included/build.gradle') << """
                tasks.register("myTask") {
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/crypto/x509/example_test.go

    	}
    
    	pub, err := x509.ParsePKIXPublicKey(block.Bytes)
    	if err != nil {
    		panic("failed to parse DER encoded public key: " + err.Error())
    	}
    
    	switch pub := pub.(type) {
    	case *rsa.PublicKey:
    		fmt.Println("pub is of type RSA:", pub)
    	case *dsa.PublicKey:
    		fmt.Println("pub is of type DSA:", pub)
    	case *ecdsa.PublicKey:
    		fmt.Println("pub is of type ECDSA:", pub)
    	case ed25519.PublicKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top