Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for DELETING (0.13 sec)

  1. pkg/controlplane/apiserver/aggregator.go

    		}
    		go func() {
    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/volume/volume.go

    	// deletedVolumeInUseError returned from this function will not be reported
    	// as error and it will be sent as "Info" event to the PV being deleted. The
    	// volume controller will retry deleting the volume in the next periodic
    	// sync. This can be used to postpone deletion of a volume that is being
    	// detached from a node. Deletion of such volume would fail anyway and such
    	// error would confuse users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_node_ilm_action_count_delete_action`                  | Total action outcome of lifecycle checks since server start for deleting object                            |
    | `minio_node_ilm_action_count_delete_version_action`          | Total action outcome of lifecycle checks since server start for deleting a version                         |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		return err
    	} else if expiredAt == nil {
    		return nil
    	}
    
    	// The Job's TTL is assumed to have expired, but the Job TTL might be stale.
    	// Before deleting the Job, do a final sanity check.
    	// If TTL is modified before we do this check, we cannot be sure if the TTL truly expires.
    	// The latest Job may have a different UID, but it's fine because the checks will be run again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pkg/controller/resourcequota/resource_quota_monitor.go

    	return nil, fmt.Errorf("unable to monitor quota for resource %q", resource.String())
    }
    
    // SyncMonitors rebuilds the monitor set according to the supplied resources,
    // creating or deleting monitors as necessary. It will return any error
    // encountered, but will make an attempt to create a monitor for each resource
    // instead of immediately exiting on an error. It may be called before or after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    		// - Update. Updating on an existing Pod's labels (e.g., removal) may make
    		// an unschedulable Pod schedulable.
    		// - Delete. An unschedulable Pod may fail due to violating an existing Pod's topology spread constraints,
    		// deleting an existing Pod may make it schedulable.
    		{Event: framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.All}, QueueingHintFn: pl.isSchedulableAfterPodChange},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one.go

    	// Case 1: pod is being deleted.
    	if pod.DeletionTimestamp != nil {
    		fwk.EventRecorder().Eventf(pod, nil, v1.EventTypeWarning, "FailedScheduling", "Scheduling", "skip schedule deleting pod: %v/%v", pod.Namespace, pod.Name)
    		klog.FromContext(ctx).V(3).Info("Skip schedule deleting pod", "pod", klog.KObj(pod))
    		return true
    	}
    
    	// Case 2: pod that has been assumed could be skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/tape.h

      std::vector<TapeTensor> output_tensor_info;
      std::vector<int64_t> input_tensor_id;
    
      // TODO(apassos) consider narrowing down this interface.
      BackwardFunction* backward_function;
    
      // Should be called before deleting the backward function. TODO(apassos) use
      // unique_ptrs to ensure this happens.
      std::function<void(BackwardFunction*)> backward_function_deleter;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  9. internal/kms/kms.go

    // and options for creating keys.
    type CreateKeyRequest struct {
    	// Name is the name of the key that gets created.
    	Name string
    }
    
    // DeleteKeyRequest is a structure containing fields
    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// managed by the attach/detach attached controller, this is a no-op.
    	// If no volume with the name volumeName exists in the list of managed
    	// volumes under the specified node, this is a no-op.
    	// If after deleting the pod, the specified volume contains no other child
    	// pods, the volume is also deleted.
    	DeletePod(podName types.UniquePodName, volumeName v1.UniqueVolumeName, nodeName k8stypes.NodeName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top