Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for foo327 (0.28 sec)

  1. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    				Spec:       api.NodeSpec{Unschedulable: true},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo2", "Ready,SchedulingDisabled", "<none>", "<unknown>", ""}}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    """
        }
    
        def "reports a strictly on a transitive"() {
            given:
            def foo12 = mavenRepo.module("org", "foo", "1.2").publish()
            mavenRepo.module("org", "foo", "1.5").publish()
            mavenRepo.module("org", "bar", "1.0").dependsOn(foo12).publish()
            buildFile << """
                apply plugin: 'java-library'
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    		len(csr.Attributes[0].Value) != 1 ||
    		len(csr.Attributes[0].Value[0]) != 2 {
    		t.Errorf("bad attributes: %#v\n", csr.Attributes)
    	}
    
    	sanContents2, err := marshalSANs([]string{"foo2.example.com"}, nil, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Extensions in Attributes should override those in ExtraExtensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{"foo": "bar"},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "foo2",
    					Namespace: "ns",
    					Labels:    map[string]string{"foo": "bar"},
    				},
    			},
    			expectedName: "",
    		},
    		// matching ns and labels returns
    		{
    			job: &batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "ns1", CreationTimestamp: now, UID: types.UID("newer")},
    				Other:      "foo",
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "ns2", CreationTimestamp: now, UID: types.UID("older")},
    				Other:      "bar",
    			},
    		},
    	}
    	storage["simple"] = &simpleStorage
    	handler := handle(storage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	objB, err := registry.Create(testContext, podB.DeepCopy(), rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	if objB.(*example.Pod).Name != "foo2" && objB.(*example.Pod).GenerateName != "foo" {
    		t.Errorf("Unexpected object: %+v", objB)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		return Header{
    			"User-Agent": {"foo2"},
    			"Other":      {"bar2"},
    		}, nil
    	}
    
    	res, err := c.Get("https://dummy.tld/") // https to force a CONNECT
    	if err == nil {
    		res.Body.Close()
    		t.Errorf("unexpected success")
    	}
    
    	r := <-reqc
    	if got, want := r.Header.Get("User-Agent"), "foo2"; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    		makeTestService("somewhere-else", "external-name", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.30.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top