Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,410 for deleteSV (0.22 sec)

  1. tools/convert_RbacConfig_to_ClusterRbacConfig.sh

    metadata:
      name: default
    ${SPEC}
    EOF
    
    # shellcheck disable=SC2181
    if [ $? -ne 0 ]
    then
      echo "failed to apply ClusterRbacConfig"
      exit 1
    fi
    
    echo "waiting for 15 seconds to delete RbacConfig"
    sleep 15
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. test/typeparam/setsimp.dir/a.go

    }
    
    // Add adds an element to a set.
    func (s Set[Elem]) Add(v Elem) {
    	s.m[v] = struct{}{}
    }
    
    // Delete removes an element from a set. If the element is not present
    // in the set, this does nothing.
    func (s Set[Elem]) Delete(v Elem) {
    	delete(s.m, v)
    }
    
    // Contains reports whether v is in the set.
    func (s Set[Elem]) Contains(v Elem) bool {
    	_, ok := s.m[v]
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 21:39:54 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. pkg/kube/inject/watcher_test.go

    				g.Expect(err).Should(BeNil())
    			case step.updated != nil:
    				_, err := cms.Update(context.TODO(), step.updated, metav1.UpdateOptions{})
    				g.Expect(err).Should(BeNil())
    			case step.deleted != nil:
    				g.Expect(cms.Delete(context.TODO(), step.deleted.Name, metav1.DeleteOptions{})).
    					Should(Succeed())
    			}
    
    			g.Eventually(func() *Config {
    				mu.Lock()
    				defer mu.Unlock()
    				return newConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    						klog.Warningf("[reset] Failed to delete contents of the etcd directory: %q, error: %v", etcdDataDir, err)
    					} else {
    						fmt.Printf("[reset] Deleted contents of the etcd data directory: %v\n", etcdDataDir)
    					}
    				}
    			} else {
    				fmt.Println("[reset] Would remove the etcd member on this node from the etcd cluster")
    				fmt.Printf("[reset] Would delete contents of the etcd data directory: %v\n", etcdDataDir)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/cleanup.go

    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    		for _, c := range i.ctx.Clusters().Remotes() {
    			i.cleanupCluster(c, &errG)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. cmd/batch-expire_test.go

            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          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: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. operator/pkg/controller/istiocontrolplane/errdict.go

    			"not be fully removed.",
    		LikelyCause: formatCauses(likelyCauseAPIServer),
    		Action:      "Delete and re-add the IstioOperator resource. " + actionIfErrPersistsCheckBugList,
    	}
    	operatorFailedToRemoveFinalizer = &structured.Error{
    		MoreInfo: "The finalizer set by the operator controller could not be removed " +
    			"when the IstioOperator resource was deleted.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/store.go

    		ikey := makeInstanceKey(i)
    		s.instancesByHostAndPort.Delete(hostPort{ikey, i.ServicePort.Port})
    		oldInstances := s.instances[ikey][key]
    		delete(s.instances[ikey], key)
    		if len(s.instances[ikey]) == 0 {
    			delete(s.instances, ikey)
    		}
    		delete(s.ip2instance, i.Endpoint.Address)
    		// Cleanup stale IPs, if the IPs changed
    		for _, oi := range oldInstances {
    			s.instancesByHostAndPort.Delete(hostPort{ikey, oi.ServicePort.Port})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/state/state_mem.go

    	klog.InfoS("Updated CPUSet assignments", "assignments", a)
    }
    
    func (s *stateMemory) Delete(podUID string, containerName string) {
    	s.Lock()
    	defer s.Unlock()
    
    	delete(s.assignments[podUID], containerName)
    	if len(s.assignments[podUID]) == 0 {
    		delete(s.assignments, podUID)
    	}
    	klog.V(2).InfoS("Deleted CPUSet assignment", "podUID", podUID, "containerName", containerName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/delete/DeleteSpecInternal.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.delete;
    
    import org.gradle.api.file.DeleteSpec;
    
    /**
     * Internal Representation of a {@link DeleteSpec}
     */
    public interface DeleteSpecInternal extends DeleteSpec {
    
        /**
         * @return the paths to be deleted.
         */
        Object[] getPaths();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
Back to top