Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for foo20 (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    			},
    		},
    		{
    			name: "invalid request",
    			errorExpressions: map[string]string{
    				"request.foo1 == 'nope'":                 "undefined field 'foo1'",
    				"request.resource.foo2 == 'nope'":        "undefined field 'foo2'",
    				"request.requestKind.foo3 == 'nope'":     "undefined field 'foo3'",
    				"request.requestResource.foo4 == 'nope'": "undefined field 'foo4'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_test.go

    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 0)
    	pod.OwnerReferences = nil
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	om.setsIndexer.Add(set)
    	om.setsIndexer.Add(set2)
    	clone := *pod
    	clone.Labels = map[string]string{"foo2": "bar2"}
    	fakeResourceVersion(&clone)
    	ssc.updatePod(logger, &clone, pod)
    	if got, want := ssc.queue.Len(), 2; got != want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            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))
            variant2.artifacts.add(Stub(PublishArtifact))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. 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);
                    }
                }
            """
    
            file("src/test/java/example2/MyOtherTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pkg/volume/util/atomic_writer_test.go

    			first: map[string]FileProjection{
    				"foo": {Mode: 0644, Data: []byte("foo")},
    				"bar": {Mode: 0644, Data: []byte("bar")},
    			},
    			next: map[string]FileProjection{
    				"foo": {Mode: 0644, Data: []byte("foo2")},
    				"bar": {Mode: 0640, Data: []byte("bar2")},
    			},
    			shouldWrite: true,
    		},
    		{
    			name: "no update",
    			first: map[string]FileProjection{
    				"foo": {Mode: 0644, Data: []byte("foo")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/proxy/servicechangetracker_test.go

    			service: makeTestService("ns2", "external-name", func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeExternalName
    				svc.Spec.ClusterIP = "172.16.55.4" // Should be ignored
    				svc.Spec.ExternalName = "foo2.bar.com"
    				svc.Spec.Ports = addTestPort(svc.Spec.Ports, "portz", "UDP", 1235, 5321, 0)
    			}),
    			expected: map[ServicePortName]*BaseServicePortInfo{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	"net/url"
    	"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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// major version, then minor version. An example sorted list of versions:
    	// v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
    	// +listType=atomic
    	Versions []CustomResourceDefinitionVersion `json:"versions" protobuf:"bytes,7,rep,name=versions"`
    
    	// conversion defines conversion settings for the CRD.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top