Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 237 for DELETING (0.17 sec)

  1. cni/pkg/repair/repaircontroller.go

    )
    
    func (c *Controller) deleteBrokenPod(pod *corev1.Pod) error {
    	m := podsRepaired.With(typeLabel.Value(deleteType))
    	repairLog.Infof("Pod detected as broken, deleting: %s/%s", pod.Namespace, pod.Name)
    
    	// Make sure we are deleting what we think we are...
    	preconditions := &metav1.Preconditions{
    		UID:             &pod.UID,
    		ResourceVersion: &pod.ResourceVersion,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    	if !mnt {
    		klog.V(4).Info(log("dir not mounted, deleting it [%s]", mountPath))
    		if err := os.Remove(mountPath); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to remove dir [%s]: %v", mountPath, err))
    		}
    		// remove volume data file as well
    		volPath := filepath.Dir(mountPath)
    		dataFile := filepath.Join(volPath, volDataFileName)
    		klog.V(4).Info(log("also deleting volume info data file [%s]", dataFile))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * Watching the build root directories is better since they are less likely to be deleted and
     * nearly no changes to the watched directories are necessary when running builds on the same project.
     *
     * To allow deleting the build root directories, we need to stop watching a build root directory if there are no more snapshots in the VFS inside,
     * since watched directories can't be deleted on Windows.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    								err := cluster.Kube().CoreV1().Services(echos.Namespace.Name()).Delete(
    									context.TODO(), common.ServiceB, metav1.DeleteOptions{})
    								if err != nil {
    									ctx.Fatalf("failed deleting service %s/%s in cluster %s: %v",
    										echos.Namespace, common.ServiceB, cluster.Name(), err)
    								}
    								retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pkg/controller/validatingadmissionpolicystatus/controller.go

    	}
    	defer c.policyQueue.Done(key)
    
    	err := func() error {
    		policy, err := c.policyInformer.Lister().Get(key)
    		if err != nil {
    			if kerrors.IsNotFound(err) {
    				// If not found, the policy is being deleting, do nothing.
    				return nil
    			}
    			return err
    		}
    		return c.reconcile(ctx, policy)
    	}()
    
    	if err == nil {
    		c.policyQueue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            invalidateBuildOutputCleanupState()
            waitForChangesToBePickedUp()
            withWatchFs().run ":producer", "--info"
            then:
            output.contains("Deleting stale output file: ${outputFile.absolutePath}")
            executedAndNotSkipped(":producer")
            outputFile.assertExists()
        }
    
        def "detects non-incremental cleanup of incremental tasks"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/util.go

    	defer func() {
    		e := ctx.ConfigKube(cluster).YAML("", dummyValidationVirtualService).Delete()
    		if e != nil {
    			scopes.Framework.Warnf("error deleting dummy virtual service for waiting the validation webhook: %v", e)
    		}
    	}()
    
    	scopes.Framework.Info("Creating dummy virtual service to check for validation webhook readiness")
    	return retry.UntilSuccess(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/controller/serviceaccount/tokens_controller.go

    			retry = true
    		case sa == nil:
    			// Delete token
    			logger.V(4).Info("Service account does not exist, deleting token", "secret", klog.KRef(secretInfo.namespace, secretInfo.name))
    			if retriable, err := e.deleteToken(secretInfo.namespace, secretInfo.name, secretInfo.uid); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pod/pod_manager.go

    	AddPod(pod *v1.Pod)
    	// UpdatePod updates the given pod in the manager.
    	UpdatePod(pod *v1.Pod)
    	// RemovePod deletes the given pod from the manager.  For mirror pods,
    	// this means deleting the mappings related to mirror pods.  For non-
    	// mirror pods, this means deleting from indexes for all non-mirror pods.
    	RemovePod(pod *v1.Pod)
    
    	// TranslatePodUID returns the actual UID of a pod. If the UID belongs to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. hack/verify-licenses.sh

    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
    mkdir -p "$ARTIFACTS/logs/"
    
    # Creating a new repository tree 
    # Deleting vendor directory to make go-licenses fetch license URLs from go-packages source repository
    git worktree add -f "${KUBE_TEMP}"/tmp_test_licenses/kubernetes HEAD >/dev/null 2>&1 || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top