Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 172 for testOk2 (0.11 sec)

  1. src/cmd/internal/pkgpath/pkgpath_test.go

    func TestV1(t *testing.T) {
    	for _, test := range symbolTests {
    		if got, want := toSymbolV1(test.input), test.v1; got != want {
    			t.Errorf("toSymbolV1(%q) = %q, want %q", test.input, got, want)
    		}
    	}
    }
    
    func TestV2(t *testing.T) {
    	for _, test := range symbolTests {
    		if got, want := toSymbolV2(test.input), test.v2; got != want {
    			t.Errorf("toSymbolV2(%q) = %q, want %q", test.input, got, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 18:26:59 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng3586</groupId>
      <artifactId>test2</artifactId>
      <version>1.0</version>
    
      <name>Maven Integration Test :: MNG-3586</name>
      <description>
        Test that plugin dependencies with scope system are part of the plugin class realm.
      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

                    }
                }
    """
    
            when:
            def m1 = mavenHttpRepo.module("test", "test1", "1.2")
            m1.pom.expectGetMissing()
            def m2 = mavenHttpRepo.module("test", "test2", "1.2")
            m2.pom.expectGetUnauthorized()
            def m3 = mavenHttpRepo.module("test", "test3", "1.2").publish()
            m3.pom.expectGet()
    
            fails("show")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      static FilePath GetCurrentDir();
    
      // Given directory = "dir", base_name = "test", number = 0,
      // extension = "xml", returns "dir/test.xml". If number is greater
      // than zero (e.g., 12), returns "dir/test_12.xml".
      // On Windows platform, uses \ as the separator rather than /.
      static FilePath MakeFileName(const FilePath& directory,
                                   const FilePath& base_name,
                                   int number,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. test/ken/chan.go

    			break
    		}
    	}
    	changeNproc(-1)
    }
    
    // direct send to direct recv
    func test1(c *Chan) {
    	changeNproc(2)
    	go send(c)
    	go recv(c)
    }
    
    // direct send to select recv
    func test2(c int) {
    	ca := mkchan(c, 4)
    
    	changeNproc(4)
    	go send(ca[0])
    	go send(ca[1])
    	go send(ca[2])
    	go send(ca[3])
    
    	changeNproc(1)
    	go sel(ca[0], ca[1], ca[2], ca[3], nc, nc, nc, nc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5755.dir/a.go

    func (f foo5) F() { return }
    func (f foo6) F() { return }
    func (f foo7) F() { return }
    func (f foo8) F() { return }
    func (f foo9) F() { return }
    
    func Test1(s string) I  { return foo1(s) }
    func Test2(s string) I  { return foo2(s) }
    func Test3(s string) I  { return foo3(s) }
    func Test4(s string) I  { return foo4(s) }
    func Test5(s []byte) I  { return foo5(s) }
    func Test6(s []rune) I  { return foo6(s) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 28 21:29:13 UTC 2013
    - 1.3K 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. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4000</groupId>
      <artifactId>test2</artifactId>
      <version>0.1</version>
    
      <name>Maven Integration Test :: MNG-4000</name>
      <description>
        Test that plugin executions without id are not lost among other plugin executions.
      </description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top