Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for foo_3 (0.04 sec)

  1. pkg/controller/statefulset/stateful_set_test.go

    	ssc, _, om, _ := newFakeStatefulSetController(ctx)
    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	set3 := newStatefulSet(3)
    	set3.Name = "foo3"
    	set3.Spec.Selector.MatchLabels = map[string]string{"foo3": "bar"}
    	pod := newStatefulSetPod(set1, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    	om.setsIndexer.Add(set3)
    
    	// Make pod an orphan. Expect matching sets to be queued.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

       * each of {@code streamA} and {@code streamB} to {@code function}.
       *
       * <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")}.
       *
    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. pkg/volume/util/atomic_writer_test.go

    					"bar": {Mode: 0644, Data: []byte("bar")},
    				},
    				{
    					"foo": {Mode: 0400, Data: []byte("foo2")},
    					"bar": {Mode: 0400, Data: []byte("bar2")},
    				},
    				{
    					"foo": {Mode: 0600, Data: []byte("foo3")},
    					"bar": {Mode: 0600, Data: []byte("bar3")},
    				},
    			},
    		},
    		{
    			name: "update 2",
    			payloads: []map[string]FileProjection{
    				{
    					"foo/bar.txt": {Mode: 0644, Data: []byte("foo/bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                    assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
                    assertTestNotExecuted(className: "example.MyTest", methodName: "foo3", task: ":secondTest")
                    assertTestNotExecuted(className: "example.MyTest", methodName: "foo4", task: ":secondTest")
                    assert events.tests.size() == (supportsEfficientClassFiltering() ? 5 : 6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. tests/test_generate_unique_id_function.py

    from fastapi import APIRouter, FastAPI
    from fastapi.routing import APIRoute
    from fastapi.testclient import TestClient
    from pydantic import BaseModel
    
    
    def custom_generate_unique_id(route: APIRoute):
        return f"foo_{route.name}"
    
    
    def custom_generate_unique_id2(route: APIRoute):
        return f"bar_{route.name}"
    
    
    def custom_generate_unique_id3(route: APIRoute):
        return f"baz_{route.name}"
    
    
    class Item(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	touch(t, filepath.Join(td, "dir", "subdir", "foo3"))
    	touch(t, filepath.Join(td, "dir", "foo4"))
    	touch(t, filepath.Join(td, "dir2", "bar"))
    	touch(t, filepath.Join(td, "last"))
    
    	remainingWereSkipped := true
    	walker := func(path string) error {
    		if strings.HasSuffix(path, "foo2") {
    			return filepath.SkipAll
    		}
    
    		if strings.HasSuffix(path, "foo3") ||
    			strings.HasSuffix(path, "foo4") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            ComponentUtil.setFessConfig(null);
        }
    
        public void test_processGoogleOffOn() throws Exception {
            final String data =
                    "<html><body>foo1<!--googleoff: index-->foo2<a href=\"index.html\">foo3</a>foo4<!--googleon: index-->foo5</body></html>";
            final Document document = getDocument(data);
    
            final FessXpathTransformer transformer = new FessXpathTransformer();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update_test.go

    	expectSyncDaemonSets(t, manager, ds, podControl, 0, 5, 0)
    
    	setPodReadiness(t, manager, true, 5, func(_ *v1.Pod) bool { return true })
    	ds.Spec.MinReadySeconds = 15
    	ds.Spec.Template.Spec.Containers[0].Image = "foo3/bar3"
    	manager.dsStore.Update(ds)
    
    	manager.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(300, 0))
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 3, 0, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top