Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 333 for DELETING (0.11 sec)

  1. pkg/controller/podgc/gc_controller.go

    	if quit {
    		return
    	}
    	// Delete orphaned pods
    	for _, pod := range pods {
    		if !deletedNodesNames.Has(pod.Spec.NodeName) {
    			continue
    		}
    		logger.V(2).Info("Found orphaned Pod assigned to the Node, deleting", "pod", klog.KObj(pod), "node", klog.KRef("", pod.Spec.NodeName))
    		condition := &v1.PodCondition{
    			Type:    v1.DisruptionTarget,
    			Status:  v1.ConditionTrue,
    			Reason:  "DeletionByPodGC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

                    @Override
                    public void run(BuildOperationContext context) throws IOException {
                        for (File file : filesToDelete) {
                            LOGGER.info("Deleting stale output file: {}", file.getAbsolutePath());
                            deleter.deleteRecursively(file);
                        }
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

            this.webapp = new WebAppContext()
            // The following code is because of a problem under Windows: the file descriptors are kept open under JDK 11
            // even after server shutdown, which prevents from deleting the test directory
            this.webapp.setInitParameter("org.eclipse.jetty.servlet.Default.useFileMappedBuffer", "false")
        }
    
        TestFile getCacheDir() {
            Preconditions.checkNotNull(cacheDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiModifiablePsiTestServiceRegistrar.kt

    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * Registers services which are required for PSI modification operations (such as deleting a PSI element) to complete without throwing
     * exceptions.
     */
    object AnalysisApiModifiablePsiTestServiceRegistrar : AnalysisApiTestServiceRegistrar() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 19:50:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/os/removeall_noat.go

    					err = err1
    				}
    				if err1 != nil {
    					numErr++
    				}
    			}
    
    			// If we can delete any entry, break to start new iteration.
    			// Otherwise, we discard current names, get next entries and try deleting them.
    			if numErr != reqSize {
    				break
    			}
    		}
    
    		// Removing files from the directory may have caused
    		// the OS to reshuffle it. Simply calling Readdirnames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. docs/features/caching.md

     - ... Standard Events...
     - ResponseBodyEnd _(0 bytes)_
     - **CacheHit**
     - ConnectionReleased
     - CallEnd
     
    ## Cache directory
    
    The cache directory must be exclusively owned by a single instance.
    
    Deleting the cache when it is no longer needed can be done.  However this may delete the purpose of the cache
    which is designed to persist between app restarts.
    
    ```kotlin
    cache.delete()
    ```
     
    ## Pruning the Cache
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. cni/pkg/iptables/iptables.go

    	configurator.ipt6V = ipt6Ver
    
    	return configurator, nil
    }
    
    func (cfg *IptablesConfigurator) DeleteInpodRules() error {
    	var inpodErrs []error
    
    	log.Debug("Deleting iptables rules")
    
    	inpodErrs = append(inpodErrs, cfg.executeDeleteCommands(), cfg.delInpodMarkIPRule(), cfg.delLoopbackRoute())
    	return errors.Join(inpodErrs...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.go

    	if pod.Name == "my-test-pod" {
    		// The pod is at the end of its lifecycle -- let's clean up the allocated
    		// resources. In this case, our clean up is simply deleting the key written
    		// in the Reserve operation.
    		state.Delete(framework.StateKey(pod.Name))
    	}
    }
    
    // PreBind is the function invoked by the framework at "prebind" extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

     * <pre class='autoTested'>
     * task makePretty(type: Delete) {
     *   delete 'uglyFolder', 'uglyFile'
     *   followSymlinks = true
     * }
     * </pre>
     *
     * Be default symlinks will not be followed when deleting files. To change this behavior call
     * {@link Delete#setFollowSymlinks(boolean)} with true. On systems that do not support symlinks,
     * this will have no effect.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    import java.util.function.Predicate
    
    /**
     * An abstract class for writing tests using ProjectBuilder.
     * The fixture automatically takes care of deleting files creating in the temporary project directory used by the Project instance.
     * <p>
     * ProjectBuilder internally uses native services.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top