Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,401 for delete1 (0.29 sec)

  1. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    type LegacySATokenCleanerOptions struct {
    	// CleanUpPeriod is the period of time since the last usage of an legacy token before it can be deleted.
    	CleanUpPeriod time.Duration
    	SyncInterval  time.Duration
    }
    
    // LegacySATokenCleaner is a controller that deletes legacy serviceaccount tokens that are not in use for a specified period of time.
    type LegacySATokenCleaner struct {
    	client           clientset.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher.go

    	// when we received a deleted event during attachment, fail fast
    	if attachment == nil {
    		klog.Error(log("VolumeAttachment [%s] has been deleted, will not continue to wait for attachment", volumeHandle))
    		return false, errors.New("volume attachment has been deleted")
    	}
    	// if being deleted, fail fast
    	if attachment.GetDeletionTimestamp() != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Delete takes name of the customResourceDefinition and deletes it. Returns an error if one occurs.
    func (c *customResourceDefinitions) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error {
    	return c.client.Delete().
    		Resource("customresourcedefinitions").
    		Name(name).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

                            canBeDeleted &= markerFile.delete();
                        }
                    }
                    if (canBeDeleted) {
                        if (FileUtils.deleteQuietly(checksumDir)) {
                            parentsOfDeletedDistributions.add(checksumDir.getParentFile());
                        } else {
                            LOGGER.info("Distribution for {} at {} was not completely deleted.", version, checksumDir);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-minio-idp.sh

    fi
    
    ./mc rm minio3/newbucket/README.md
    sleep 5
    
    ./mc stat minio2/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    ./mc stat minio1/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    ./mc mb --with-lock minio3/newbucket-olock
    sleep 5
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go

    		case watchEvent := <-noxuNamespacedWatch.ResultChan():
    			if e, a := watch.Deleted, watchEvent.Type; e != a {
    				t.Errorf("expected %v, got %v", e, a)
    				break
    			}
    			name, err := meta.NewAccessor().Name(watchEvent.Object)
    			if err != nil {
    				t.Errorf("unable to retrieve object name:%v", err)
    			}
    			if instances[name].Deleted {
    				t.Errorf("Delete event already registered for %q", name)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 11:58:05 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    				expectObserveRemoval: sets.New("shirt1", "shirt2"), // shirt 1 is deleted, shirt 2 is updated to not match the selector
    			},
    			{
    				version:              version,
    				fieldSelector:        "spec.quantity=2",
    				expectedByName:       sets.New("shirt1", "shirt3"),
    				expectObserveRemoval: sets.New("shirt1"), // shirt 1 is deleted
    			},
    			{
    				version:        version,
    				fieldSelector:  "spec.size=M",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. pkg/controller/daemon/update.go

    	// * Expect manage loop will handle failed pods
    	// * Deleted pods do not count as unavailable so that updates make progress when nodes are down
    	// Invariants:
    	// * A node with an unavailable old pod is a candidate for immediate new pod creation
    	// * An old available pod is deleted if a new pod is available
    	// * No more than maxSurge new pods are created for old available pods at any one time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    //       purge:
    //           # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
    //           # retainVersions: 5 # keep the latest 5 versions of the object.
    //
    //     - type: deleted # objects with delete marker as their latest version
    //       name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    	}
    
    	log.Debug("in pod mode - removing pod from ztunnel")
    	if err := s.ztunnelServer.PodDeleted(ctx, string(pod.UID)); err != nil {
    		log.Errorf("failed to delete pod from ztunnel: %v", err)
    	}
    	return nil
    }
    
    // Delete pod from mesh: pod is deleted. iptables rules will die with it, we just need to update ztunnel
    func (s *NetServer) DelPodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top