Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 333 for DELETING (0.13 sec)

  1. guava/src/com/google/common/io/FileBackedOutputStream.java

     * in CVE number once it's available.)
     *
     * <p>Temporary files created by this stream may live in the local filesystem until either:
     *
     * <ul>
     *   <li>{@link #reset} is called (removing the data in this stream and deleting the file), or...
     *   <li>this stream (or, more precisely, its {@link #asByteSource} view) is finalized during
     *       garbage collection, <strong>AND</strong> this stream was not constructed with {@linkplain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/controller/podgc/metrics/metrics.go

    	DeletingPodsErrorTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      podGCController,
    			Name:           "force_delete_pod_errors_total",
    			Help:           "Number of errors encountered when forcefully deleting the pods since the Pod GC Controller started.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"namespace", "reason"},
    	)
    )
    
    const (
    	// Possible values for the "reason" label in the above metrics.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. pkg/controller/bootstrap/tokencleaner.go

    	logger := klog.FromContext(ctx)
    	secret := o.(*v1.Secret)
    	ttl, alreadyExpired := bootstrapsecretutil.GetExpiration(secret, time.Now())
    	if alreadyExpired {
    		logger.V(3).Info("Deleting expired secret", "secret", klog.KObj(secret))
    		var options metav1.DeleteOptions
    		if len(secret.UID) > 0 {
    			options.Preconditions = &metav1.Preconditions{UID: &secret.UID}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

            this.usedGradleVersions = usedGradleVersions;
        }
    
        @Nonnull
        @Override
        public String getDisplayName() {
            return "Deleting unused Gradle distributions in " + distsDir;
        }
    
        @Override
        public boolean execute(@Nonnull CleanupProgressMonitor progressMonitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. tests/fuzz/aggregate_controller_fuzzer.go

    // that targets the add and delete registry apis
    // of the aggregate controller. It does so by
    // creating a controller with a pseudo-random
    // Options{} and create pseudo-random service
    // registries and deleting them.
    func FuzzAggregateController(data []byte) int {
    	ops := map[int]string{
    		0: "AddRegistry",
    		1: "DeleteRegistry",
    	}
    	maxOps := 2
    	f := fuzz.NewConsumer(data)
    	opts := aggregate.Options{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

                objects.objectSummaries.each { S3ObjectSummary summary ->
                    println "-- Deleting object ${summary.getKey()}"
                    DeleteObjectRequest deleteObjectRequest = new DeleteObjectRequest(bucketName, summary.getKey())
                    s3Client.amazonS3Client.deleteObject(deleteObjectRequest)
                }
    
                println("Deleting bucket: ${bucketName}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. tests/associations_has_one_test.go

    	// Replace -> same as append
    
    	// Delete
    	if err := DB.Model(&users).Association("Account").Delete(&users[0].Account); err != nil {
    		t.Errorf("no error should happened when deleting account, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Account", 2, "after delete")
    
    	// Clear
    	DB.Model(&users).Association("Account").Clear()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/UnusedVersionsCacheCleanup.java

            }
            return false;
        }
    
        @Override
        protected void handleDeletion(File cacheDir) {
            LOGGER.debug("Deleting unused versioned cache directory at {}", cacheDir);
        }
    
        @Override
        protected int deleteEmptyParentDirectories(File baseDir, File dir) {
            // do not delete parent dirs
            return 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/FileBackedOutputStream.java

     * in CVE number once it's available.)
     *
     * <p>Temporary files created by this stream may live in the local filesystem until either:
     *
     * <ul>
     *   <li>{@link #reset} is called (removing the data in this stream and deleting the file), or...
     *   <li>this stream (or, more precisely, its {@link #asByteSource} view) is finalized during
     *       garbage collection, <strong>AND</strong> this stream was not constructed with {@linkplain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	if err != nil {
    		t.Errorf("Did not expect an error %v", err)
    	}
    }
    
    // TestAdmissionNamespaceForceLiveLookup verifies live lookups are done after deleting a namespace
    func TestAdmissionNamespaceForceLiveLookup(t *testing.T) {
    	namespace := "test"
    	getCalls := int64(0)
    	phases := map[string]v1.NamespacePhase{namespace: v1.NamespaceActive}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top