Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 333 for DELETING (0.23 sec)

  1. pkg/test/framework/components/istio/cleanup.go

    		// This includes things like leader election locks (allowing next test to start without 30s delay),
    		// custom cacerts, custom kubeconfigs, etc.
    		// We avoid deleting the whole namespace since its extremely slow in Kubernetes (30-60s+)
    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. cluster/gce/upgrade-aliases.sh

        routes+=( "${route}" )
      done < <(gcloud compute routes list \
        --project="${PROJECT}" --filter='description=k8s-node-route' \
        --format='value(name)')
      while (( "${#routes[@]}" > 0 )); do
          echo Deleting k8s node routes "${routes[*]::${batch}}"
          gcloud compute routes delete --project "${PROJECT}" --quiet "${routes[@]::${batch}}"
          routes=( "${routes[@]:${batch}}" )
      done
    }
    
    detect-project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller.go

    		if err := c.addSecret(key, scrt); err != nil {
    			return fmt.Errorf("error adding secret %s: %v", key, err)
    		}
    	} else {
    		log.Debugf("secret %s does not exist in informer cache, deleting it", key)
    		c.deleteSecret(key.String())
    	}
    	remoteClusters.Record(float64(c.cs.Len()))
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    		// remove it (the pod process is gone, but kube will keep the Pods around in
    		// a terminated || failed state - we should still do cleanup)
    		if isAnnotated && isTerminated {
    			log.Debugf("deleting pod %s from mesh, reason: isAnnotated(%v), isTerminated(%v)", newPod.Name, isAnnotated, isTerminated)
    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/delete_test.go

    		},
    		{
    			// delete success(?) - volume is deleted before doDelete() starts
    			name:            "8-6 - volume is deleted before deleting",
    			initialVolumes:  newVolumeArray("volume8-6", "1Gi", "uid8-6", "claim8-6", v1.VolumeBound, v1.PersistentVolumeReclaimDelete, classEmpty),
    			expectedVolumes: novolumes,
    			initialClaims:   noclaims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

            } else {
                // Jars that are in some mutable location (e.g. build/ directory) need to be copied to the global cache,
                // since daemon keeps them locked when loading them to a classloader, which prevents e.g. deleting the build directory on windows
                File copyOfOriginalFile = outputs.file(ORIGINAL_DIR_NAME + "/" + input.getName());
                GFileUtils.copyFile(input, copyOfOriginalFile);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. operator/pkg/metrics/monitoring.go

    	)
    
    	// ResourceDeletionTotal indicates the number of resources deleted
    	// by the operator in response to CR update or delete operation (like
    	// ingress-gateway which was enabled could be disabled and this requires
    	// deleting ingress-gateway deployment).
    	ResourceDeletionTotal = monitoring.NewSum(
    		"resource_deletion_total",
    		"Number of resources deleted by the operator",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                case RegularFile:
                    throw new IllegalStateException(
                        "Immutable workspace is occupied by a file: " + immutableLocation.getAbsolutePath() + ". " +
                            "Deleting the file in question can allow the content to be recreated.");
                case Missing:
                    return Optional.empty();
                default:
                    throw new AssertionError();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltatest.go

    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    		// Both SotW and Delta did not respond, nothing to compare
    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/attacher.go

    	err := detacher.manager.DetachDisk(*unMounter, deviceMountPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to detach disk: %s\nError: %v", deviceMountPath, err)
    	}
    	klog.V(4).Infof("iscsi: %q is unmounted, deleting the directory", deviceMountPath)
    	err = os.RemoveAll(deviceMountPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to delete the directory: %s\nError: %v", deviceMountPath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top