Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for DELETING (1.37 sec)

  1. releasenotes/notes/43853.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 43853
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 13:54:23 UTC 2023
    - 272 bytes
    - Viewed (0)
  2. cmd/cloud-controller-manager/README.md

    Please refer to `k8s.io/cloud-provider/sample` if you do not have the requirement of adding/deleting controllers in CCM.
    
    ## Things you should NOT do
    
    1. Vendor in `k8s.io/cmd/cloud-controller-manager`.
    2. Directly modify anything under `k8s.io/cmd/cloud-controller-manager` in this repo. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 01 18:22:09 UTC 2021
    - 707 bytes
    - Viewed (0)
  3. pkg/controller/podgc/config/types.go

    type PodGCControllerConfiguration struct {
    	// terminatedPodGCThreshold is the number of terminated pods that can exist
    	// before the terminated pod garbage collector starts deleting terminated pods.
    	// If <= 0, the terminated pod garbage collector is disabled.
    	TerminatedPodGCThreshold int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 963 bytes
    - Viewed (0)
  4. src/main/java/jcifs/FileNotifyInformation.java

         * Changes include renaming, creating, or deleting a file.
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
         * return. Changes include creating or deleting a directory.
         */
        public static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    class GTEST_API_ String {
     public:
      // Static utility methods
    
      // Clones a 0-terminated C string, allocating memory using new.  The
      // caller is responsible for deleting the return value using
      // delete[].  Returns the cloned string, or NULL if the input is
      // NULL.
      //
      // This is different from strdup() in string.h, which allocates
      // memory using malloc().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/proxy/conntrack/cleanup.go

    			}
    		}
    	}
    
    	klog.V(4).InfoS("Deleting conntrack stale entries for services", "IPs", conntrackCleanupServiceIPs.UnsortedList())
    	for _, svcIP := range conntrackCleanupServiceIPs.UnsortedList() {
    		if err := ct.ClearEntriesForIP(svcIP, v1.ProtocolUDP); err != nil {
    			klog.ErrorS(err, "Failed to delete stale service connections", "IP", svcIP)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    class GTEST_API_ String {
     public:
      // Static utility methods
    
      // Clones a 0-terminated C string, allocating memory using new.  The
      // caller is responsible for deleting the return value using
      // delete[].  Returns the cloned string, or NULL if the input is
      // NULL.
      //
      // This is different from strdup() in string.h, which allocates
      // memory using malloc().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

                    markDirForDeletion(file);
                    break;
                case RegularFile:
                    if (fileSafeToDelete.test(file)) {
                        if (file.exists()) {
                            LOGGER.debug("Deleting stale output file '{}'.", file);
                            deleter.delete(file);
                            didWork = true;
                        }
                        markParentDirForDeletion(file);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    		return
    	}
    	for _, lease := range leases {
    		// evaluate lease from cache
    		if !isLeaseExpired(lease) {
    			continue
    		}
    		// double check latest lease from apiserver before deleting
    		lease, err := c.kubeclientset.CoordinationV1().Leases(c.leaseNamespace).Get(context.TODO(), lease.Name, metav1.GetOptions{})
    		if err != nil && !errors.IsNotFound(err) {
    			klog.ErrorS(err, "Error getting lease")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    	// So, deleting that pod couldn't make `pod` schedulable.
    	nodeInfo := framework.NodeInfo{UsedPorts: usedPorts}
    	if Fits(pod, &nodeInfo) {
    		logger.V(4).Info("the deleted pod and the target pod don't have any common port(s), returning QueueSkip as deleting this Pod won't make the Pod schedulable", "pod", klog.KObj(pod), "deletedPod", klog.KObj(deletedPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top