Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 556 for tc (0.03 sec)

  1. pkg/volume/util/atomic_writer_test.go

    			continue
    		}
    
    		checkVolumeContents(targetDir, tc.name, tc.first, t)
    		if !tc.shouldWrite {
    			continue
    		}
    
    		err = writer.Write(tc.next, nil)
    		if err != nil {
    			if tc.shouldWrite {
    				t.Errorf("%v: unexpected error writing: %v", tc.name, err)
    				continue
    			}
    		} else if !tc.shouldWrite {
    			t.Errorf("%v: unexpected success", tc.name)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher_test.go

    			}
    
    			_, ok := staged[tc.volID]
    			if ok && tc.stageUnstageSet && tc.volID != "" {
    				t.Errorf("found unexpected staged volume: %s", tc.volID)
    			} else if !ok && !tc.stageUnstageSet {
    				t.Errorf("could not find expected staged volume: %s", tc.volID)
    			}
    
    			if tc.jsonFile != "" && !tc.shouldFail {
    				dataPath := filepath.Join(dir, volDataFileName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_client_test.go

    			context.Background(),
    			tc.volID,
    			map[string]string{"device": "/dev/null"},
    			tc.stagingTargetPath,
    			tc.fsType,
    			api.ReadWriteOnce,
    			tc.secrets,
    			map[string]string{"attr0": "val0"},
    			tc.mountOptions,
    			tc.fsGroup,
    		)
    		checkErr(t, tc.mustFail, err)
    
    		volumeMountGroup := nodeClient.GetNodeStagedVolumes()[tc.volID].VolumeMountGroup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    		return
    	}
    
    	go wait.UntilWithContext(ctx, tc.evaluateSATokens, tc.syncInterval)
    
    	<-ctx.Done()
    }
    
    func (tc *LegacySATokenCleaner) evaluateSATokens(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    
    	now := tc.clock.Now().UTC()
    	trackedSince, err := tc.latestPossibleTrackedSinceTime(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san_test.go

    		},
    	}
    
    	for id, tc := range testCases {
    		actualIDs, err := ExtractIDs(tc.exts)
    		if !reflect.DeepEqual(actualIDs, tc.expectedIDs) {
    			t.Errorf("Case %q: unexpected identities: want %v but got %v", id, tc.expectedIDs, actualIDs)
    		}
    		if tc.expectedErrMsg != "" {
    			if err == nil {
    				t.Errorf("Case %q: no error message returned: want %s", id, tc.expectedErrMsg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction.go

    		tc.broadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: tc.client.CoreV1().Events("")})
    	} else {
    		logger.Error(nil, "kubeClient is nil", "controller", tc.name)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    	defer tc.broadcaster.Shutdown()
    	defer tc.nodeUpdateQueue.ShutDown()
    	defer tc.podUpdateQueue.ShutDown()
    
    	// wait for the cache to be synced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/runtime/runtime_test.go

    			shouldError: true,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			containerRuntime := NewContainerRuntime("")
    			mock := &fakeImpl{}
    			if tc.prepare != nil {
    				tc.prepare(mock)
    			}
    			containerRuntime.SetImpl(mock)
    
    			err := containerRuntime.Connect()
    
    			assert.Equal(t, tc.shouldError, err != nil)
    		})
    	}
    }
    
    func TestIsRunning(t *testing.T) {
    	for _, tc := range []struct {
    		name        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/version_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			output, err := kubeadmVersion(tc.input)
    			if (err != nil) != tc.parsingError {
    				t.Fatalf("expected error: %v, got: %v", tc.parsingError, err != nil)
    			}
    			if (output != tc.output) != tc.outputError {
    				t.Fatalf("expected output: %s, got: %s, for input: %s", tc.output, output, tc.input)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    	}
    
    	for i := range testCases {
    		tc := &testCases[i]
    		pr := &PortRange{}
    		var f flag.Value = pr
    		err := f.Set(tc.input)
    		if err != nil && tc.success {
    			t.Errorf("expected success, got %q", err)
    			continue
    		} else if err == nil && !tc.success {
    			t.Errorf("expected failure %#v", testCases[i])
    			continue
    		} else if tc.success {
    			if f.String() != tc.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/sync/sync_test.go

    		}
    
    		var hasError bool
    		for _, r := range tc.fake.results {
    			hasError = hasError || (r != nil)
    		}
    		if hasError != tc.wantError {
    			t.Errorf("%v, %v; hasError = %t, errors = %v, want %t",
    				tc.desc, tc.mode, hasError, tc.fake.events, tc.wantError)
    		}
    	}
    }
    
    func TestNodeSyncResync(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    	fake := &fakeAPIs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top