Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for DELETING (0.12 sec)

  1. tests/associations_has_many_test.go

    		t.Errorf("no error should happened when deleting pet, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Pets", 4, "after delete")
    
    	if err := DB.Model(&users).Association("Pets").Delete(users[0].Pets[0], users[1].Pets[1]); err != nil {
    		t.Errorf("no error should happened when deleting pet, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Pets", 2, "after delete")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		{Group: "apiregistration.k8s.io", Resource: "apiservices"}:             true,
    		{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: true,
    	}
    }
    
    // CRDFinalizer is a controller that finalizes the CRD by deleting all the CRs associated with it.
    type CRDFinalizer struct {
    	crdClient      client.CustomResourceDefinitionsGetter
    	crClientGetter CRClientGetter
    
    	crdLister listers.CustomResourceDefinitionLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    				earliest[expiry] = begin
    			}
    		}
    	}
    	for expiry, files := range countFiles {
    		if notNeeded(expiry, *todo) {
    			u.logger.Printf("Files for %s not needed, deleting %v", expiry, files)
    			// The report already exists.
    			// There's another check in createReport.
    			u.deleteFiles(files)
    			continue
    		}
    		fname, err := u.createReport(earliest[expiry], expiry, files, lastWeek)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/tokens_controller.go

    			retry = true
    		case sa == nil:
    			// Delete token
    			logger.V(4).Info("Service account does not exist, deleting token", "secret", klog.KRef(secretInfo.namespace, secretInfo.name))
    			if retriable, err := e.deleteToken(secretInfo.namespace, secretInfo.name, secretInfo.uid); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers.go

    		// remove it (the pod process is gone, but kube will keep the Pods around in
    		// a terminated || failed state - we should still do cleanup)
    		if isAnnotated && isTerminated {
    			log.Debugf("deleting pod %s from mesh, reason: isAnnotated(%v), isTerminated(%v)", newPod.Name, isAnnotated, isTerminated)
    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/delete_test.go

    		},
    		{
    			// delete success(?) - volume is deleted before doDelete() starts
    			name:            "8-6 - volume is deleted before deleting",
    			initialVolumes:  newVolumeArray("volume8-6", "1Gi", "uid8-6", "claim8-6", v1.VolumeBound, v1.PersistentVolumeReclaimDelete, classEmpty),
    			expectedVolumes: novolumes,
    			initialClaims:   noclaims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    	schema.GroupVersionKind
    
    	kubeClient clientset.Interface
    	podControl controller.PodControlInterface
    
    	eventBroadcaster record.EventBroadcaster
    
    	// A ReplicaSet is temporarily suspended after creating/deleting these many replicas.
    	// It resumes normal action after observing the watch events for them.
    	burstReplicas int
    	// To allow injection of syncReplicaSet for testing.
    	syncHandler func(ctx context.Context, rsKey string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    5. <<workerexecutor,`WorkerExecutor`>> - Allows a task to run work in parallel.
    6. <<filesystemoperations,`FileSystemOperations`>> - Allows a task to run operations on the filesystem such as deleting files, copying files or syncing directories.
    7. <<archiveoperations,`ArchiveOperations`>> - Allows a task to run operations on archive files such as ZIP or TAR files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top