Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,401 for delete1 (0.18 sec)

  1. 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)
  2. pkg/controller/garbagecollector/graph_builder.go

    					if len(matchingDependents) > 0 {
    						// mark the observed deleted identity as absent
    						gb.absentOwnerCache.Add(deletedIdentity)
    						// attempt to delete dependents that do match the verified deleted identity
    						for _, dep := range matchingDependents {
    							gb.attemptToDelete.Add(dep)
    						}
    					}
    
    					// if the delete event verified existingNode.identity doesn't exist...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pilot/pkg/serviceregistry/aggregate/controller.go

    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    // DeleteRegistry deletes specified registry from the aggregated controller
    func (c *Controller) DeleteRegistry(clusterID cluster.ID, providerID provider.ID) {
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    
    	if len(c.registries) == 0 {
    		log.Warnf("Registry list is empty, nothing to delete")
    		return
    	}
    	index, ok := c.getRegistryIndex(clusterID, providerID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            boolean expectMoreChanges = (changesCount > changesLimit)
    
            when:
            succeeds("theTask")
            inputFiles.each { it.delete() }
    
            then:
            buildTriggeredAndSucceeded()
            sendEOT()
            assertReportsChanges(inputFiles.collect { new ChangeEntry('deleted', it) }, expectMoreChanges)
    
            where:
            changesCount << [1, changesLimit, 11]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

        private final Deleter deleter;
        private final FileSystemAccess fileSystemAccess;
    
        private final ImmutableWorkspaceMetadataStore workspaceMetadataStore;
        private final OutputSnapshotter outputSnapshotter;
        private final Step<? super PreviousExecutionContext, ? extends CachingResult> delegate;
    
        public AssignImmutableWorkspaceStep(
            Deleter deleter,
            FileSystemAccess fileSystemAccess,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. cmd/bucket-object-lock.go

    		case objectlock.RetGovernance:
    			// In governance mode, users can't overwrite or delete an object
    			// version or alter its lock settings unless they have special
    			// permissions. With governance mode, you protect objects against
    			// being deleted by most users, but you can still grant some users
    			// permission to alter the retention settings or delete the object
    			// if necessary. You can also use governance mode to test retention-period
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/kubelet/pod/pod_manager.go

    	if kubetypes.IsMirrorPod(pod) {
    		mirrorPodUID := kubetypes.MirrorPodUID(pod.UID)
    		delete(pm.mirrorPodByUID, mirrorPodUID)
    		delete(pm.mirrorPodByFullName, podFullName)
    		delete(pm.translationByUID, mirrorPodUID)
    	} else {
    		delete(pm.podByUID, kubetypes.ResolvedPodUID(pod.UID))
    		delete(pm.podByFullName, podFullName)
    	}
    }
    
    func (pm *basicManager) GetPods() []*v1.Pod {
    	pm.lock.RLock()
    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. cmd/erasure-healing.go

    	// After this point, only have to repair data on disk - so
    	// return if it is a dry-run
    	if dryRun {
    		return result, nil
    	}
    
    	if !latestMeta.XLV1 && !latestMeta.Deleted && disksToHealCount > latestMeta.Erasure.ParityBlocks {
    		// Allow for dangling deletes, on versions that have DataDir missing etc.
    		// this would end up restoring the correct readable versions.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top