Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 220 for xremove (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public Iterator<E> iterator() {
          return delegate().iterator(); // manually synchronized
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().remove(o);
          }
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          synchronized (mutex) {
            return delegate().removeAll(c);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

          --feature-gates="${FEATURE_GATES}" \
          --external-hostname="${EXTERNAL_HOSTNAME}" \
          --requestheader-username-headers=X-Remote-User \
          --requestheader-group-headers=X-Remote-Group \
          --requestheader-extra-headers-prefix=X-Remote-Extra- \
          --requestheader-client-ca-file="${CERT_DIR}/request-header-ca.crt" \
          --requestheader-allowed-names=system:auth-proxy \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Must be empty before the object is deleted from the registry. Each entry
    	// is an identifier for the responsible component that will remove the entry
    	// from the list. If the deletionTimestamp of the object is non-nil, entries
    	// in this list can only be removed.
    	// Finalizers may be processed and removed in any order.  Order is NOT enforced
    	// because it introduces significant risk of stuck finalizers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top