Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for testF (0.11 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            where:
            path1    | path2    | test1   | test2   | expectedEntries
            '/pathA' | '/pathA' | 'false' | 'false' | [[path: '/pathA', test: 'false']]
            '/pathA' | '/pathA' | 'false' | 'true'  | [[path: '/pathA', test: 'false']]
            '/pathA' | '/pathA' | 'true'  | 'false' | [[path: '/pathA', test: 'false']]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Rule
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/analyzer_test.go

    	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
    
    	"istio.io/istio/istioctl/pkg/util/configdump"
    )
    
    func TestNewAnalyzer(t *testing.T) {
    	tests := []struct {
    		name    string
    		input   *configdump.Wrapper
    		wantErr error
    	}{
    		{
    			name: "Test1",
    			input: &configdump.Wrapper{
    				ConfigDump: &envoy_admin.ConfigDump{
    					Configs: []*anypb.Any{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

            value = "ftp://123.123.123.123:21/test1/test.txt";
            ftpInfo = new FtpClient.FtpInfo(value);
            assertEquals("ftp://123.123.123.123/test1/test.txt", ftpInfo.toUrl());
            assertEquals("123.123.123.123:21", ftpInfo.getCacheKey());
            assertEquals("123.123.123.123", ftpInfo.getHost());
            assertEquals(21, ftpInfo.getPort());
            assertEquals("/test1", ftpInfo.getParent());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    "_id", "001", //
                    "config_id", "W01", //
                    "url", "http://test.com/001"//
            )));
            docList.add(new HashMap<>(Map.of(//
                    "_id", "002", //
                    "thumbnail", "http://test.com/002", //
                    "url", "http://test.com/002"//
            )));
            indexingHelper.sendDocuments(client, docList);
            assertEquals(0, docList.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    			panic("empty variant")
    		}
    		name := testName(test.pkg, test.variant)
    		t.addTest(name, heading, func(dt *distTest) error {
    			if skipFunc != nil {
    				msg, skip := skipFunc(dt)
    				if skip {
    					test.printSkip(t, msg)
    					return nil
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            testClassFile.assertHasTest('test1 < test2')
            testClassFile.assertHasFailure('test1 < test2', '<a failure>')
            testClassFile.assertHasStandardOutput('</html> & ')
            testClassFile.assertHasStandardError('</div> & ')
        }
    
        def encodesUnicodeCharactersInReport() {
            given:
            report = reportWithMaxThreads(1)
            def testTestResults = buildResults {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. pkg/util/sets/set_test.go

    }
    
    func TestEquals(t *testing.T) {
    	tests := []struct {
    		name   string
    		first  Set[string]
    		second Set[string]
    		want   bool
    	}{
    		{
    			"both nil",
    			nil,
    			nil,
    			true,
    		},
    		{
    			"unequal length",
    			New("test"),
    			New("test", "test1"),
    			false,
    		},
    		{
    			"equal sets",
    			New("test", "test1"),
    			New("test", "test1"),
    			true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    implementation(libs.test1) {
                        because("reason1")
    
                        exclude(group: "test-group", module: "test-module")
                        artifact {
                            name = "test-name"
                            classifier = "test-classifier"
                            extension = "test-ext"
                            type = "test-type"
                            url = "test-url"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertNull(System.getProperty("fess." + now));
            assertNull(System.getProperty("test." + now));
            appValue.set("=abc\nfess." + now + "=test1\ntest." + now + "=test2");
            helper.updateSystemProperties();
            assertEquals("test1", System.getProperty("fess." + now));
            assertEquals("test2", System.getProperty("test." + now));
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top