Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 266 for xremove (0.24 sec)

  1. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertTrue(cycle.hasNext());
        try {
          cycle.remove();
          fail("no exception thrown");
        } catch (IllegalStateException expected) {
        }
      }
    
      public void testCycleRemoveSameElementTwice() {
        Iterator<String> cycle = Iterators.cycle("a", "b");
        cycle.next();
        cycle.remove();
        try {
          cycle.remove();
          fail("no exception thrown");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  2. cmd/iam.go

    			}
    
    			// Policies mapped to the DN's are the same, so we remove the extra
    			// ones from the map.
    			for i := 1; i < len(origKeys); i++ {
    				delete(policyMap, origKeys[i])
    
    				// Remove the mapping from storage by setting the policy to "".
    				if entityKeysInStorage.Contains(origKeys[i]) {
    					// Ignore any deletion error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            masterParent2Parent2.artifacts.remove masterParent2Parent2.artifacts.toList().first()
    
            then:
            allArtifacts.size() == 5
            removed == ["p2p2-1"]
    
            when:
            removed.clear()
            masterParent1.extendsFrom = []
    
            then:
            allArtifacts.size() == 3
            removed == ["p1p1-1", "p1p2-1"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        @CheckForNull
        public V remove(@CheckForNull Object key) {
          synchronized (mutex) {
            return delegate().remove(key);
          }
        }
    
        @Override
        public boolean remove(@CheckForNull Object key, @CheckForNull Object value) {
          synchronized (mutex) {
            return delegate().remove(key, value);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    E.g. if you want build-cache entries to be retained for 30 days, **remove** any calls to the deprecated method:
    ```kotlin
    buildCache {
        local {
            // Remove this line
            removeUnusedEntriesAfterDays = 30
        }
    }
    ```
    
    add a file like this in `~/.gradle/init.d`:
    ```kotlin
    beforeSettings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. pkg/apis/certificates/validation/validation_test.go

    		errs: []string{
    			`status.conditions: Forbidden: updates may not add a condition of type "Approved"`,
    		},
    	}, {
    		name:   "remove Approved condition",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

            return table->lookupNearestSymbolFrom<func::FuncOp>(*this, flat_sym_ref);
          return SymbolTable::lookupNearestSymbolFrom<func::FuncOp>(*this, flat_sym_ref);
        }
        // TODO(b/204997177): Deprecate and remove.
        func::FuncOp branch_function(int index) { return ResolveBranchFunction(nullptr, index); }
    
        // Resolve all branch functions.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    		}
    	}
    
    	if status.restartRequested {
    		klog.V(4).InfoS("Pod has been terminated but another pod with the same UID was created, remove history to allow restart", "podUID", uid)
    	} else {
    		klog.V(4).InfoS("Pod has been terminated and is no longer known to the kubelet, remove all history", "podUID", uid)
    	}
    	delete(p.podSyncStatuses, uid)
    	p.cleanupPodUpdates(uid)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	if len(lines[0]) == 0 && len(lines) > 1 {
    		lines = lines[1:]
    	}
    	// Create prefix made of tabs that we want to remove.
    	var prefix []byte
    	for _, c := range lines[0] {
    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	klog.V(3).InfoS("Endpoint cleanup", "endpointInfo", ep)
    	if !ep.IsLocal() && ep.refCount != nil {
    		*ep.refCount--
    
    		// Remove the remote hns endpoint, if no service is referring it
    		// Never delete a Local Endpoint. Local Endpoints are already created by other entities.
    		// Remove only remote endpoints created by this service
    		if *ep.refCount <= 0 && !ep.IsLocal() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top