Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,410 for deleteSV (0.23 sec)

  1. pkg/controller/bootstrap/tokencleaner.go

    		if len(secret.UID) > 0 {
    			options.Preconditions = &metav1.Preconditions{UID: &secret.UID}
    		}
    		err := tc.client.CoreV1().Secrets(secret.Namespace).Delete(ctx, secret.Name, options)
    		// NotFound isn't a real error (it's already been deleted)
    		// Conflict isn't a real error (the UID precondition failed)
    		if err != nil && !apierrors.IsConflict(err) && !apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/registry/scheduling/priorityclass/storage/storage.go

    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"pc"}
    }
    
    // Delete ensures that system priority classes are not deleted.
    func (r *REST) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
    	for _, spc := range schedulingapiv1.SystemPriorityClasses() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/InsecureRecursiveDeleteException.java

    import javax.annotation.CheckForNull;
    
    /**
     * Exception indicating that a recursive delete can't be performed because the file system does not
     * have the support necessary to guarantee that it is not vulnerable to race conditions that would
     * allow it to delete files and directories outside of the directory being deleted (i.e., {@link
     * SecureDirectoryStream} is not supported).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/config/plan.go

    import (
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    )
    
    // Plan for configuration that can be applied or deleted as an atomic unit.
    // A Plan is initially created by a Factory, but then can continually be
    // appended to before finally calling Apply or Delete.
    type Plan interface {
    	// Factory for appending to this Config.
    	Factory
    
    	// Copy returns a deep copy of this Plan.
    	Copy() Plan
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. cmd/peer-s3-server.go

    	if err := listAllBuckets(ctx, localDrives, healBuckets, quorum); err != nil {
    		return nil, err
    	}
    
    	// include deleted buckets in listBuckets output
    	deletedBuckets := map[string]VolInfo{}
    
    	if opts.Deleted {
    		// lists all deleted buckets across drives.
    		if err := listDeletedBuckets(ctx, localDrives, deletedBuckets, quorum); err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            then:
            succeeds("echo")
            executedAndNotSkipped(":echo")
            output.contains("text: original")
            when: "symlink is deleted"
            symlink.delete()
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":echo")
            output.contains("text: missing")
            when: "symlink is created"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/ipset/testing/fake.go

    }
    
    // DestroySet is part of interface.  It deletes both the entries and the set itself.
    func (f *FakeIPSet) DestroySet(set string) error {
    	delete(f.Sets, set)
    	delete(f.Entries, set)
    	return nil
    }
    
    // DestroyAllSets is part of interface.
    func (f *FakeIPSet) DestroyAllSets() error {
    	f.Sets = nil
    	f.Entries = nil
    	return nil
    }
    
    // CreateSet is part of interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            !result.didWork
        }
    
        def deletes() {
            def fileToBeDeleted = tmpDir.file("file")
            def fileCollection = Stub(FileCollectionInternal)
            fileCollectionFactory.resolving(["file"] as Object[]) >> fileCollection
            fileCollection.iterator() >> [fileToBeDeleted].iterator()
            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_drivers_store.go

    	if s.store == nil {
    		s.store = store{}
    	}
    
    	s.store[driverName] = driver
    }
    
    // Delete lets you delete a CSI Driver by name.
    // This method is protected by a mutex.
    func (s *DriversStore) Delete(driverName string) {
    	s.Lock()
    	defer s.Unlock()
    
    	delete(s.store, driverName)
    }
    
    // Clear deletes all entries in the store.
    // This methiod is protected by a mutex.
    func (s *DriversStore) Clear() {
    	s.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

        private final Deleter deleter;
        private final OutputChangeListener outputChangeListener;
        private final Step<? super C, ? extends R> delegate;
    
        public RemovePreviousOutputsStep(
            Deleter deleter,
            OutputChangeListener outputChangeListener,
            Step<? super C, ? extends R> delegate
        ) {
            this.deleter = deleter;
            this.outputChangeListener = outputChangeListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top