Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for DELETING (0.17 sec)

  1. cmd/erasure-server-pool.go

    		return objInfo, err
    	}
    
    	if !opts.DeletePrefix { // DeletePrefix handles dir object encoding differently.
    		object = encodeDirObject(object)
    	}
    
    	// Acquire a write lock before deleting the object.
    	lk := z.NewNSLock(bucket, object)
    	lkctx, err := lk.GetLock(ctx, globalDeleteOperationTimeout)
    	if err != nil {
    		return ObjectInfo{}, err
    	}
    	ctx = lkctx.Context()
    	defer lk.Unlock(lkctx)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for job %#v: %v", job, err))
    		return 0, metrics.JobSyncActionTracking, nil
    	}
    
    	if jobSuspended(job) {
    		logger.V(4).Info("Deleting all active pods in suspended job", "job", klog.KObj(job), "active", active)
    		podsToDelete := activePodsForRemoval(job, jobCtx.activePods, int(active))
    		jm.expectations.ExpectDeletions(logger, jobKey, len(podsToDelete))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			testKillTimeout = testTimeout + testWaitDelay
    		}
    	}
    
    	// Read testcache expiration time, if present.
    	// (We implement go clean -testcache by writing an expiration date
    	// instead of searching out and deleting test result cache entries.)
    	if dir, _ := cache.DefaultDir(); dir != "off" {
    		if data, _ := lockedfile.Read(filepath.Join(dir, "testexpire.txt")); len(data) > 0 && data[len(data)-1] == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	deletedPod := &example.Pod{}
    	if err := store.Delete(ctx, key, deletedPod, nil, storage.ValidateAllObjectFunc, originalPod); err != nil {
    		t.Errorf("Unexpected failure during deletion: %v", err)
    	}
    
    	// Now try deleting with stale object.
    	out := &example.Pod{}
    	if err := store.Delete(ctx, key, out, nil, storage.ValidateAllObjectFunc, originalPod); !storage.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top