Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       *
       * <p>Cancellation does not propagate from the output future to a callable that has begun to
       * execute, but if the output future is cancelled before {@link Callable#call()} is invoked,
       * {@link Callable#call()} will not be invoked.
       */
      public <T extends @Nullable Object> ListenableFuture<T> submit(
          Callable<T> callable, Executor executor) {
        checkNotNull(callable);
        checkNotNull(executor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                current = nextEntry(currentEntries);
            }
    
            void removed() {
                DefaultFileChange removed = DefaultFileChange.removed(previous.getKey(), propertyTitle, previous.getValue().getType(), previous.getValue().getNormalizedPath());
                changeConsumer.visitChange(removed);
                previous = nextEntry(previousEntries);
            }
    
            void modified() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    func runKubeletFinalizeEnableClientCertRotationWrapped(c workflow.RunData) error {
    	if enableClientCertRotationRun {
    		return nil
    	}
    	klog.Warning("The phase 'experimental-cert-rotation' is deprecated and will be removed in a future release. " +
    		"Use 'enable-client-cert-rotation' instead")
    	return runKubeletFinalizeEnableClientCertRotation(c)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top