Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for removeable (0.28 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

                return true;
              }
            }
            return false;
          }
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          try {
            return super.removeAll(checkNotNull(c));
          } catch (UnsupportedOperationException e) {
            Set<K> toRemove = Sets.newHashSet();
            for (Entry<K, V> entry : map().entrySet()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

                return true;
              }
            }
            return false;
          }
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          try {
            return super.removeAll(checkNotNull(c));
          } catch (UnsupportedOperationException e) {
            Set<K> toRemove = Sets.newHashSet();
            for (Entry<K, V> entry : map().entrySet()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    		switch {
    		case hasRule:
    			if ruleARN != opts.DestBucket {
    				// remove stale replication rule and replace rule with correct target ARN
    				if len(replicationConfig.Rules) > 1 {
    					err = replicationConfig.RemoveRule(opts)
    				} else {
    					replicationConfig = replication.Config{}
    				}
    				if err == nil {
    					err = replicationConfig.AddRule(opts)
    				}
    			} else {
    				err = replicationConfig.EditRule(opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	fakeClock            *testingclock.FakeClock
    	mounter              mount.Interface
    	volumePlugin         *volumetest.FakeVolumePlugin
    }
    
    func (tk *TestKubelet) Cleanup() {
    	if tk.kubelet != nil {
    		os.RemoveAll(tk.kubelet.rootDirectory)
    		tk.kubelet = nil
    	}
    }
    
    // newTestKubelet returns test kubelet with two images.
    func newTestKubelet(t *testing.T, controllerAttachDetachEnabled bool) *TestKubelet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	if podStatus, err := kl.podCache.Get(podID); err == nil {
    		// When an evicted or deleted pod has already synced, all containers can be removed.
    		removeAll := kl.podWorkers.ShouldPodContentBeRemoved(podID)
    		kl.containerDeletor.deleteContainersInPod(exitedContainerID, podStatus, removeAll)
    	}
    }
    
    // fastStatusUpdateOnce starts a loop that checks if the current state of kubelet + container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public Object set(int, Object); public void add(int, Object); public Object...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public Object set(int, Object); public void add(int, Object); public Object...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  8. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/Handshake;->get(Ljavax/net/ssl/SSLSession;)Lokhttp3/Handshake;
    HSPLokhttp3/Headers$Builder;-><init>()V
    HSPLokhttp3/Headers$Builder;->build()Lokhttp3/Headers;
    HSPLokhttp3/Headers$Builder;->removeAll(Ljava/lang/String;)Lokhttp3/Headers$Builder;
    HSPLokhttp3/Headers;-><init>([Ljava/lang/String;)V
    HSPLokhttp3/Headers;->get(Ljava/lang/String;)Ljava/lang/String;
    HSPLokhttp3/Headers;->name(I)Ljava/lang/String;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    // with aggressive buffering, cleaning incrementally like
    // this keeps the intermediate objects from hitting the disk.
    func (b *Builder) cleanup(a *Action) {
    	if !cfg.BuildWork {
    		b.Shell(a).RemoveAll(a.Objdir)
    	}
    }
    
    // Install the cgo export header file, if there is one.
    func (b *Builder) installHeader(ctx context.Context, a *Action) error {
    	sh := b.Shell(a)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * [Kubelet] Add alpha support for `--cgroups-per-qos` using the configured `--cgroup-driver`. Disabled by default. (...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top