Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for actualCert (0.23 sec)

  1. pilot/pkg/credentials/kube/secrets_test.go

    			var actualKey []byte
    			var actualCert []byte
    			if certInfo != nil {
    				actualKey = certInfo.Key
    				actualCert = certInfo.Cert
    			}
    			if tt.key != string(actualKey) {
    				t.Errorf("got key %q, wanted %q", string(actualKey), tt.key)
    			}
    			if tt.cert != string(actualCert) {
    				t.Errorf("got cert %q, wanted %q", string(actualCert), tt.cert)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/certificates_test.go

    			actualSpecified := test.specifiedFn(test.config)
    			if actualSpecified != test.expectedSpecified {
    				t.Error(actualSpecified)
    			}
    
    			actualCert, actualKey := test.filesFn(test.config)
    			if actualCert != test.expectedCert {
    				t.Error(actualCert)
    			}
    			if actualKey != test.expectedKey {
    				t.Error(actualKey)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/priority_test.go

    		actualResult, actualErr := mapper.ResourceFor(schema.GroupVersionResource{})
    		if e, a := tc.result, actualResult; e != a {
    			t.Errorf("%s: expected %v, got %v", tc.name, e, a)
    		}
    		if len(tc.err) == 0 && actualErr == nil {
    			continue
    		}
    		if len(tc.err) == 0 && actualErr != nil {
    			t.Errorf("%s: unexpected err: %v", tc.name, actualErr)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 06 15:24:58 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/parallelize/error_channel_test.go

    func TestErrorChannel(t *testing.T) {
    	errCh := NewErrorChannel()
    
    	if actualErr := errCh.ReceiveError(); actualErr != nil {
    		t.Errorf("expect nil from err channel, but got %v", actualErr)
    	}
    
    	err := errors.New("unknown error")
    	errCh.SendError(err)
    	if actualErr := errCh.ReceiveError(); actualErr != err {
    		t.Errorf("expect %v from err channel, but got %v", err, actualErr)
    	}
    
    	ctx, cancel := context.WithCancel(context.Background())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 17:39:23 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper_test.go

    		},
    	}
    
    	for _, tc := range tcs {
    		actualResult, actualErr := tc.mapper.ResourceFor(tc.input)
    		if e, a := tc.result, actualResult; e != a {
    			t.Errorf("%s: expected %v, got %v", tc.name, e, a)
    		}
    		switch {
    		case tc.err == nil && actualErr == nil:
    		case tc.err == nil:
    			t.Errorf("%s: unexpected error: %v", tc.name, actualErr)
    		case actualErr == nil:
    			t.Errorf("%s: expected error: %v got nil", tc.name, tc.err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 01:49:02 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/endpoint_test.go

    			if actualHost != rt.expectedHost {
    				t.Errorf("%s returned invalid host %s, expected %s", rt.name, actualHost, rt.expectedHost)
    				return
    			}
    
    			if actualPort != rt.expectedPort {
    				t.Errorf("%s returned invalid port %s, expected %s", rt.name, actualPort, rt.expectedPort)
    			}
    		})
    	}
    }
    
    func TestParsePort(t *testing.T) {
    
    	var tests = []struct {
    		name          string
    		port          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/testFixtures/groovy/org/gradle/plugin/devel/tasks/TaskValidationReportFixture.groovy

                    .sort()
                    .join(PROBLEM_SEPARATOR)
                    .replaceAll("\r\n", "\n")
                    .replaceAll("\n+", "\n")
    
    
            def actualText = reportText
            assert actualText == expectedReportContents
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/container/cache_test.go

    	// object with id filled.
    	actualStatus, actualErr := cache.Get(podID)
    	assert.Equal(t, status, actualStatus)
    	assert.Equal(t, nil, actualErr)
    }
    
    func TestDelete(t *testing.T) {
    	cache := &cache{pods: map[types.UID]*data{}}
    	// Write a new pod status into the cache.
    	podID, status := getTestPodIDAndStatus(3)
    	cache.Set(podID, status, nil, time.Time{})
    	actualStatus, actualErr := cache.Get(podID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 20:23:12 UTC 2020
    - 6K bytes
    - Viewed (0)
  9. pkg/kubelet/util/queue/work_queue_test.go

    	expectedSet := sets.New[string]()
    	for _, u := range expected {
    		expectedSet.Insert(string(u))
    	}
    	actualSet := sets.New[string]()
    	for _, u := range actual {
    		actualSet.Insert(string(u))
    	}
    	if !expectedSet.Equal(actualSet) {
    		t.Errorf("Expected %#v, got %#v", sets.List(expectedSet), sets.List(actualSet))
    	}
    }
    
    func TestGetWork(t *testing.T) {
    	q, clock := newTestBasicWorkQueue()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. cmd/object-api-putobject_test.go

    		objInfo, actualErr := obj.PutObject(context.Background(), testCase.bucketName, testCase.objName, in, ObjectOptions{UserDefined: testCase.inputMeta})
    		if actualErr != nil && testCase.expectedError == nil {
    			t.Errorf("Test %d: %s: Expected to pass, but failed with: error %s.", i, instanceType, actualErr.Error())
    			continue
    		}
    		if actualErr == nil && testCase.expectedError != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top