Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for tst2 (0.09 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            given:
            def testEvent1 = new TestEvent('Gradle Test Executor 1', 'org.gradle.Test1')
            def testEvent2 = new TestEvent('Gradle Test Executor 2', 'org.gradle.Test2')
            def testDescriptor1 = createTestDescriptor(testEvent1)
            def testDescriptor2 = createTestDescriptor(testEvent2)
    
            when:
            testWorkerProgressListener.started(testDescriptor1, createTestStartEvent())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            map = new ArrayMap<String, String>();
            map.put(null, null);
            map.put("1", "test");
            map.put("2", "test2");
        }
    
        /**
         * @throws Exception
         */
        @After
        public void tearDown() throws Exception {
            map = null;
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

            outputContains("ids: [test-lib.jar, a.jar (project :a), a-lib.jar, test-1.0.jar (org:test:1.0), b.jar (project :b), b-lib.jar, test2-1.0.jar (org:test2:1.0)]")
            outputContains("unique ids: [test-lib.jar, a.jar (project :a), a-lib.jar, test-1.0.jar (org:test:1.0), b.jar (project :b), b-lib.jar, test2-1.0.jar (org:test2:1.0)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    				{Cells: []interface{}{"test1", "1/1", "podPhase", int64(5), "20h"}},
    				{Cells: []interface{}{"test2", "1/2", "podPhase", int64(30), "21h"}},
    				{Cells: []interface{}{"test3", "4/4", "podPhase", int64(1), "22h"}},
    			},
    			options: PrintOptions{},
    			expected: `NAME    READY   STATUS
    test1   1/1     podPhase
    test2   1/2     podPhase
    test3   4/4     podPhase
    `,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

        String getAuthConfig() { '' }
    
        def "downloads artifacts in parallel from a Maven repo - #expression"() {
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
    
            buildFile << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

                    foo = "test2"
    
                    bar {
                        baz = "fizz"
                    }
                }
            """
    
            when:
            run(":printTestSoftwareTypeExtensionConfiguration", ":printAnotherSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
            outputContains("""foo = test2\nbaz = fizz""")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath_linux_test.go

    			func(base string) error {
    				/* test1/dir points to test2 and test2/dir points to test1 */
    				if err := os.MkdirAll(filepath.Join(base, "test1"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.MkdirAll(filepath.Join(base, "test2"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.Symlink(filepath.Join(base, "test2"), filepath.Join(base, "test1/dir")); err != nil {
    					return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            and: "both tests are run"
            def xmlResults = getTestResultsFileAsXml(dslDir, "org.gradle.testng.TestFactory")
            assertTestsRunCount(xmlResults, 4)
            xmlResults.testcase.@name*.text() == ["test1", "test2", "test1", "test2"]
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        @UsesSample("java/basic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            }
            FileUtils.copyFile(file('test1.tar'), file('test2.tar'));
    
            and: "where a build edits each archive differently via a visitor"
            file('build.gradle') << """
                ${defineUpdateTask('tar')}
                ${defineVerifyTask('tar')}
    
                def theArchive1 = rootProject.file('test1.tar')
                def theArchive2 = rootProject.file('test2.tar')
    
                tasks.register('update1', UpdateTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/encoding/base64/base64_test.go

    			dst2, err := tt.enc.AppendDecode(dst[:0:len(p.decoded)], []byte(encoded))
    			testEqual(t, "AppendDecode(%q) = error %v, want %v", p.encoded, err, error(nil))
    			testEqual(t, `AppendDecode("", %q) = %q, want %q`, p.encoded, string(dst2), p.decoded)
    			if len(dst) > 0 && len(dst2) > 0 && &dst[0] != &dst2[0] {
    				t.Errorf("unexpected capacity growth: got %d, want %d", cap(dst2), cap(dst))
    			}
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top