Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,868 for revoked (0.16 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/SetPropertySetView.java

            boolean removed = set.remove(o);
            delegate.set(set);
            return removed;
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
            Set<? extends E> set = new LinkedHashSet<>(delegate.get());
            boolean removed = set.removeAll(c);
            delegate.set(set);
            return removed;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
        public static final String URL = "https://www.gradle.org";
    
        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/nilcheck_test.go

    	nilcheckelim(fun.f)
    
    	// clean up the removed nil check
    	fuse(fun.f, fuseTypePlain)
    	deadcode(fun.f)
    
    	CheckFunc(fun.f)
    	for _, b := range fun.f.Blocks {
    		if b == fun.blocks["secondCheck"] && isNilCheck(b) {
    			t.Errorf("secondCheck was not eliminated")
    		}
    	}
    }
    
    // TestNilcheckAddr verifies that nilchecks of OpAddr constructed values are removed.
    func TestNilcheckAddr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            List<String> modified = options.modified ?: []
            List<String> removed = options.removed ?: []
    
            succeeds("incremental")
            outputContains("incremental=$incremental")
            outputContains("added=$added")
            outputContains("modified=$modified")
            outputContains("removed=$removed")
        }
    
        String getTaskAction() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/well_known_taints.go

    	// and removed when node becomes schedulable.
    	TaintNodeUnschedulable = "node.kubernetes.io/unschedulable"
    
    	// TaintNodeMemoryPressure will be added when node has memory pressure
    	// and removed when node has enough memory.
    	TaintNodeMemoryPressure = "node.kubernetes.io/memory-pressure"
    
    	// TaintNodeDiskPressure will be added when node has disk pressure
    	// and removed when node has enough disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/ConnectionListener.kt

    abstract class ConnectionListener {
      /**
       * Invoked as soon as a call causes a connection to be started.
       */
      open fun connectStart(
        route: Route,
        call: Call,
      ) {}
    
      /**
       * Invoked when a connection fails to be established.
       */
      open fun connectFailed(
        route: Route,
        call: Call,
        failure: IOException,
      ) {}
    
      /**
       * Invoked as soon as a connection is successfully established.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    			status, exists := podWorkers.podSyncStatuses[podUID]
    			if tc.removed && exists {
    				t.Fatalf("Expected pod worker to be removed")
    			}
    			if !tc.removed && !exists {
    				t.Fatalf("Expected pod worker to not be removed")
    			}
    			if tc.removed {
    				return
    			}
    			if tc.expectGracePeriod > 0 && status.gracePeriod != tc.expectGracePeriod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>keys automatically wrapped in {@code WeakReference}
     *   <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference}
     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SortedMapDiffUtilTest.groovy

    class SortedMapDiffUtilTest extends Specification {
    
        def "diff #previous and #current"() {
            expect:
            diff(previous, current) == [removed: removed, updated: updated, added: added]
    
            where:
            previous             | current              | removed              | updated    | added
            ['a', 'b', 'c']      | ['b', 'c', 'd']      | ['a']                | ['b', 'c'] | ['d']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_toolchain.txt

    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    go get toolchain@none
    stderr '^go: removed toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    ! grep toolchain go.mod
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 22:42:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top