Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,133 for deleteSV (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// returned error value err when the specified resource is not found.
    	// Delete *may* return the object that was deleted, or a status object indicating additional
    	// information about deletion.
    	// It also returns a boolean which is set to true if the resource was instantly
    	// deleted or false if it will be deleted asynchronously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/reconciler.go

    	}
    
    	return slices, totals
    }
    
    // finalize creates, updates, and deletes slices as specified
    func (r *reconciler) finalize(endpoints *corev1.Endpoints, slices slicesByAction) error {
    	// If there are slices to create and delete, recycle the slices marked for
    	// deletion by replacing creates with updates of slices that would otherwise
    	// be deleted.
    	recycleSlices(&slices)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    			}
    		}
    	}
    	return pmap
    }
    
    // deleteIP returns true if the pod and ip are really deleted.
    func (pc *PodCache) deleteIP(ip string, podKey types.NamespacedName) bool {
    	pc.Lock()
    	defer pc.Unlock()
    	if pc.podsByIP[ip].Contains(podKey) {
    		sets.DeleteCleanupLast(pc.podsByIP, ip, podKey)
    		delete(pc.IPByPods, podKey)
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	discoverResourcesFn func() ([]*metav1.APIResourceList, error)
    	// The finalizer token that should be removed from the namespace
    	// when all resources in that namespace have been deleted.
    	finalizerToken v1.FinalizerName
    }
    
    // Delete deletes all resources in the given namespace.
    // Before deleting resources:
    //   - It ensures that deletion timestamp is set on the
    //     namespace (does nothing if deletion timestamp is missing).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

                Set<File> ensureEmptyDirectories = new HashSet<>();
                deleter.ensureEmptyDirectory(stashDirectory);
                ensureEmptyDirectories.add(stashDirectory);
                deleter.ensureEmptyDirectory(backupDirectory);
                ensureEmptyDirectories.add(backupDirectory);
    
                // Delete any other file or directory
                try (Stream<Path> dirStream = Files.list(tempDir.toPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/sync/sync.go

    	return nil
    }
    
    // deleteOp handles deletion of a node.
    type deleteOp struct {
    	node *v1.Node
    }
    
    func (op *deleteOp) String() string {
    	if op.node == nil {
    		return fmt.Sprintf("deleteOp(nil)")
    	}
    	return fmt.Sprintf("deleteOp(%q,%v)", op.node.Name, op.node.Spec.PodCIDR)
    }
    
    func (op *deleteOp) run(logger klog.Logger, sync *NodeSync) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    To permanently delete an object you need to specify the version you want to delete, only the user with appropriate permissions can permanently delete a version.  As shown below DELETE request called with a specific version id permanently deletes an object from a bucket. Delete marker is not added for DELETE requests with version id.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/testing/testing.go

    	if r.fakeVolumeWatch != nil {
    		r.fakeVolumeWatch.Delete(volume.DeepCopy())
    	}
    }
    
    // DeleteClaimEvent simulates that a claim has been deleted in etcd and the
    // controller receives 'claim deleted' event.
    func (r *VolumeReactor) DeleteClaimEvent(claim *v1.PersistentVolumeClaim) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	// Remove the claim from list of resulting claims.
    	delete(r.claims, claim.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            def deleted = source "interface Deleted { }"
            outputs.snapshot { run language.compileTaskName }
    
            expect:
            deleted.delete()
            recompiledWithFailure('symbol: class Deleted', 'Sub')
    
            where:
            t         | r
            "Deleted" | "String"
            "String"  | "Deleted"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle.go

    	DeleteRestoredAction
    	// DeleteRestoredVersionAction deletes a particular version that was temporarily restored
    	DeleteRestoredVersionAction
    	// DeleteAllVersionsAction deletes all versions when an object expires
    	DeleteAllVersionsAction
    	// DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires
    	DelMarkerDeleteAllVersionsAction
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top