Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for test64i (0.12 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            performProfileActivation(parser.parse(options, new String[] {"-P", "test1,+test2,?test3,+?test4"}), activation);
            assertThat(activation.getRequiredActiveProfileIds(), containsInAnyOrder("test1", "test2"));
            assertThat(activation.getOptionalActiveProfileIds(), containsInAnyOrder("test3", "test4"));
    
            activation = new ProfileActivation();
            performProfileActivation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test4(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

        public void testPutAll() throws Exception {
            Map<String, String> m = new HashMap<String, String>();
            m.put("3", "test3");
            m.put("4", "test4");
            map.putAll(m);
            assertThat(map.get("3"), is("test3"));
            assertThat(map.get("4"), is("test4"));
            assertThat(map.size(), is(5));
        }
    
        /**
         * @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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            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 {
                    maven {
                        url = uri('$blockingServer.uri')
                        $authConfig
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/events_test.go

    					APIVersion: "other/v1beta1",
    					Kind:       "FooBar",
    					Namespace:  "bar",
    				},
    			},
    			false,
    		},
    		{
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test14",
    					Namespace: "foo",
    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "other/v1beta1",
    					Kind:       "FooBar",
    					Namespace:  "",
    				},
    			},
    			false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailure.java

     * @since 7.6
     */
    @Incubating
    public abstract class TestFailure {
    
        /**
         * Returns the list of causes.
         * <p>
         * The result is typically non-empty for multi-assertion failures, e.g. for {@code org.test4j.MultipleFailuresError}, where the individual failures are in the returned list.
         *
         * @return the cause failures.
         */
        public abstract List<TestFailure> getCauses();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    			NegotiatedSerializer:   codecs,
    			Scheme:                 scheme,
    		}
    	}
    
    	apis := []APIGroupInfo{
    		testAPI(schema.GroupVersion{Group: "", Version: "v1"}),
    		testAPI(schema.GroupVersion{Group: extensionsGroupName, Version: "v1"}),
    		testAPI(schema.GroupVersion{Group: "batch", Version: "v1"}),
    	}
    
    	err = s.InstallLegacyAPIGroup("/apiPrefix", &apis[0])
    	assert.NoError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/misc/DisposableUtilTest.java

            assertThat(count, is(3));
            assertThat(names, is("ba"));
            assertThat(DisposableUtil.disposables.size(), is(0));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void test4() throws Exception {
            DisposableUtil.add(new TestDisposable("a"));
            DisposableUtil.addFirst(new TestDisposable("b"));
            assertThat(DisposableUtil.disposables.size(), is(2));
            DisposableUtil.dispose();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. docs/tr/docs/project-generation.md

        * **TypeScript**.
        * **Nginx** tabanlı Docker sunucusu (Vue-router için yapılandırılmış).
        * Docker ile multi-stage yapı, böylece kodu derlemeniz, kaydetmeniz veya işlemeniz gerekmez.
        * Derleme zamanında Frontend testi (devre dışı bırakılabilir).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            sourceFile << """
        #import "test1"
        #include "test2"
        #import "test3"
        #include "test4"
        #import <system1>
        #import <system2>
        #include <system3>
        #import <system4>
        #include DEFINED1
        #import DEFINED2
    """
            then:
            includes == ['"test2"', '"test4"', '<system3>', 'DEFINED1'].collect { include(it) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top