Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for foo6 (0.1 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/impl/PropertiesAsMapTest.java

    class PropertiesAsMapTest {
    
        @Test
        void testPropertiesAsMap() {
            Properties props = new Properties();
            props.setProperty("foo1", "bar1");
            props.setProperty("foo2", "bar2");
            PropertiesAsMap pam = new PropertiesAsMap(props);
            assertEquals(2, pam.size());
            Set<Entry<String, String>> set = pam.entrySet();
            assertNotNull(set);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

       *
       * <p>For example:
       *
       * <pre>{@code
       * Streams.zip(
       *   Stream.of("foo1", "foo2", "foo3"),
       *   Stream.of("bar1", "bar2"),
       *   (arg1, arg2) -> arg1 + ":" + arg2)
       * }</pre>
       *
       * <p>will return {@code Stream.of("foo1:bar1", "foo2:bar2")}.
       *
       * <p>The resulting stream will only be as long as the shorter of the two input streams; if one
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/mock/discovery_mock.go

    	ReplicatedFooServiceName = host.Name("foo.default.svc.cluster.local")
    	ReplicatedFooServiceV1   = MakeService(ServiceArgs{
    		Hostname: ReplicatedFooServiceName,
    		Address:  "10.3.0.0",
    		ServiceAccounts: []string{
    			"spiffe://cluster.local/ns/default/sa/foo1",
    			"spiffe://cluster.local/ns/default/sa/foo-share",
    		},
    		ClusterID: "",
    	})
    	ReplicatedFooServiceV2 = MakeService(ServiceArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "foo-ns",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/admin/foot.jsp

    Shinsuke Sugaya <******@****.***> 1676636021 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 823 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            given:
            buildTestFixture.withBuildInSubDir()
            def build1 = singleProjectBuild("build1") {
                buildFile << "task foo1"
            }
            def build2 = singleProjectBuild("build2") {
                buildFile << "task foo2"
            }
    
            when:
            def allProgress = new CopyOnWriteArrayList<String>()
    
            concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            variant1.attributes.attribute(Attribute.of("foo1", String), "bar1")
            variant1.artifacts.add(Stub(PublishArtifact))
    
            conf2.artifacts.add(Mock(PublishArtifact))
            ConfigurationVariant variant2 = conf2.outgoing.getVariants().create("variant2")
            variant2.attributes.attribute(Attribute.of("foo2", String), "bar2")
            variant2.artifacts.add(Stub(PublishArtifact))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo2() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo3() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/hoge.html";
            file = fileTransformer.createFile(path);
            resultFile = new File(fileTransformer.baseDir, path);
            assertEquals(resultFile, file);
            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/foo2/hoge.html";
            file = fileTransformer.createFile(path);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		ds1 := newDaemonSet("foo1")
    		ds1.Spec.UpdateStrategy = *strategy
    		ds2 := newDaemonSet("foo2")
    		ds2.Spec.UpdateStrategy = *strategy
    		ds3 := newDaemonSet("foo3")
    		ds3.Spec.UpdateStrategy = *strategy
    		ds3.Spec.Selector.MatchLabels = simpleDaemonSetLabel2
    		err = manager.dsStore.Add(ds1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top