Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,132 for deleteSV (0.21 sec)

  1. pkg/controller/serviceaccount/tokens_controller_test.go

    		},
    
    		"deleted serviceaccount with no secrets": {
    			DeletedServiceAccount: serviceAccount(emptySecretReferences()),
    			ExpectedActions:       []core.Action{},
    		},
    		"deleted serviceaccount with missing secrets": {
    			DeletedServiceAccount: serviceAccount(missingSecretReferences()),
    			ExpectedActions:       []core.Action{},
    		},
    		"deleted serviceaccount with non-token secrets": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path.go

    	}
    
    	return pv, nil
    }
    
    // hostPathDeleter deletes a hostPath PV from the cluster.
    // This deleter only works on a single host cluster and is for testing purposes only.
    type hostPathDeleter struct {
    	name string
    	path string
    	host volume.VolumeHost
    	volume.MetricsNil
    }
    
    func (r *hostPathDeleter) GetPath() string {
    	return r.path
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

        private static final String PACKAGE_INFO_CLASS_NAME = "package-info";
    
        private final Deleter deleter;
        private final FileOperations fileOperations;
        private final FileTree sourceTree;
        private final Iterable<FileChange> sourceChanges;
        private final boolean incremental;
    
        public AbstractRecompilationSpecProvider(
            Deleter deleter,
            FileOperations fileOperations,
            FileTree sourceTree,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // deleteVolume runs in worker thread and handles "volume deleted" event.
    func (ctrl *PersistentVolumeController) deleteVolume(ctx context.Context, volume *v1.PersistentVolume) {
    	logger := klog.FromContext(ctx)
    	if err := ctrl.volumes.store.Delete(volume); err != nil {
    		logger.Error(err, "Volume deletion encountered", "volumeName", volume.Name)
    	} else {
    		logger.V(4).Info("volume deleted", "volumeName", volume.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/graceful_termination_test.go

    							Weight:       0,
    							ActiveConn:   0,
    							InactiveConn: 10,
    						},
    					},
    				},
    			},
    			err: nil,
    		},
    		{
    			name: "graceful delete, real server has connections, but udp connections are deleted immediately",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "udp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

            fileOperations.mkdir(path)
    
        /**
         * Deletes files and directories.
         *
         * This will not follow symlinks. If you need to follow symlinks too use [delete].
         *
         * @param paths Any type of object accepted by [file]
         * @return true if anything got deleted, false otherwise
         */
        @Suppress("unused")
        fun delete(vararg paths: Any): Boolean =
            fileOperations.delete(*paths)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/eviction.go

    		// this can happen in cases where the PDB can be ignored, but there was a problem issuing the pod delete:
    		// maybe we conflicted too many times or we didn't have permission or something else weird.
    		return nil, err
    
    	case deletedPod:
    		// this happens when we successfully deleted the pod.  In this case, we're done executing because we've evicted/deleted the pod
    		return &metav1.Status{Status: metav1.StatusSuccess}, nil
    
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

        fun mkdir(path: Any): File
    
        /**
         * Deletes files and directories.
         *
         * This will not follow symlinks. If you need to follow symlinks too use [delete].
         *
         * @param paths Any type of object accepted by [file]
         * @return true if anything got deleted, false otherwise
         */
        fun delete(vararg paths: Any): Boolean
    
        /**
         * Deletes the specified files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. pkg/volume/hostpath/host_path_test.go

    		t.Fatal("Can't find the plugin by name")
    	}
    	logger, _ := ktesting.NewTestContext(t)
    	deleter, err := plug.NewDeleter(logger, spec)
    	if err != nil {
    		t.Errorf("Failed to make a new Deleter: %v", err)
    	}
    	if deleter.GetPath() != tempPath {
    		t.Errorf("Expected %s but got %s", tempPath, deleter.GetPath())
    	}
    	if err := deleter.Delete(); err != nil {
    		t.Errorf("Mock Recycler expected to return nil but got %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

        /**
         * Deletes files and directories.
         *
         * This will not follow symlinks. If you need to follow symlinks too use [KotlinInitScript.delete].
         *
         * @param paths Any type of object accepted by [KotlinInitScript.file]
         * @return true if anything got deleted, false otherwise
         */
        @Suppress("unused")
        fun delete(vararg paths: Any): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top