Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for DELETING (0.19 sec)

  1. pkg/kube/multicluster/secretcontroller.go

    		if err := c.addSecret(key, scrt); err != nil {
    			return fmt.Errorf("error adding secret %s: %v", key, err)
    		}
    	} else {
    		log.Debugf("secret %s does not exist in informer cache, deleting it", key)
    		c.deleteSecret(key.String())
    	}
    	remoteClusters.Record(float64(c.cs.Len()))
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

            } else {
                // Jars that are in some mutable location (e.g. build/ directory) need to be copied to the global cache,
                // since daemon keeps them locked when loading them to a classloader, which prevents e.g. deleting the build directory on windows
                File copyOfOriginalFile = outputs.file(ORIGINAL_DIR_NAME + "/" + input.getName());
                GFileUtils.copyFile(input, copyOfOriginalFile);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                case RegularFile:
                    throw new IllegalStateException(
                        "Immutable workspace is occupied by a file: " + immutableLocation.getAbsolutePath() + ". " +
                            "Deleting the file in question can allow the content to be recreated.");
                case Missing:
                    return Optional.empty();
                default:
                    throw new AssertionError();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/deltatest.go

    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    		// Both SotW and Delta did not respond, nothing to compare
    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/controller/certificates/certificate_controller.go

    				csr, ok = tombstone.Obj.(*certificates.CertificateSigningRequest)
    				if !ok {
    					logger.V(2).Info("Tombstone contained object that is not a CSR", "object", obj)
    					return
    				}
    			}
    			logger.V(4).Info("Deleting certificate request", "csr", csr.Name)
    			cc.enqueueCertificateRequest(obj)
    		},
    	})
    	cc.csrLister = csrInformer.Lister()
    	cc.csrsSynced = csrInformer.Informer().HasSynced
    	return cc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	eventRecorder    record.EventRecorder
    
    	podControl controller.PodControlInterface
    	crControl  controller.ControllerRevisionControlInterface
    
    	// An dsc 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 syncDaemonSet for testing.
    	syncHandler func(ctx context.Context, dsKey string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. cmd/metacache-bucket.go

    }
    
    // cleanup removes redundant and outdated entries.
    func (b *bucketMetacache) cleanup() {
    	// Entries to remove.
    	remove := make(map[string]struct{})
    
    	// Test on a copy
    	// cleanup is the only one deleting caches.
    	caches, _ := b.cloneCaches()
    
    	for id, cache := range caches {
    		if !cache.worthKeeping() {
    			b.debugf("cache %s not worth keeping", id)
    			remove[id] = struct{}{}
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. 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)
Back to top