Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for DELETING (0.15 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// volume claims created from volumeClaimTemplates. By default, all persistent
    	// volume claims are created as needed and retained until manually deleted. This
    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    	// down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
    	// which is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
      // Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
      bool labelPods = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    		}
    		gset.Remove(group)
    		cache.iamUserGroupMemberships[member] = gset
    	}
    
    	cache.updatedAt = time.Now()
    	return gi.UpdatedAt, nil
    }
    
    // RemoveUsersFromGroup - removes users from group, deleting it if it is empty.
    func (store *IAMStoreSys) RemoveUsersFromGroup(ctx context.Context, group string, members []string) (updatedAt time.Time, err error) {
    	if group == "" {
    		return updatedAt, errInvalidArgument
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    			encounteredError = true
    		}
    	}
    	// Delete dummy interface created by ipvs Proxier.
    	nl := NewNetLinkHandle(false)
    	err := nl.DeleteDummyDevice(defaultDummyDevice)
    	if err != nil {
    		logger.Error(err, "Error deleting dummy device created by ipvs proxier", "device", defaultDummyDevice)
    		encounteredError = true
    	}
    	// Clear iptables created by ipvs Proxier.
    	encounteredError = cleanupIptablesLeftovers(ctx, ipt) || encounteredError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		}(index, disk)
    	}
    	wg.Wait()
    
    	// Reduce errors for each object
    	for objIndex := range objects {
    		diskErrs := make([]error, len(storageDisks))
    		// Iterate over disks to fetch the error
    		// of deleting of the current object
    		for i := range delObjErrs {
    			// delObjErrs[i] is not nil when disks[i] is also not nil
    			if delObjErrs[i] != nil {
    				diskErrs[i] = delObjErrs[i][objIndex]
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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