Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,868 for revoked (0.12 sec)

  1. tensorflow/c/experimental/ops/io_ops.cc

    //     "prefix", and
    //       if found proceed to read it as a V2 checkpoint;
    //     - Otherwise the V1 read path is invoked.
    //   Relying on this behavior is not recommended, as the ability to fall back to
    //   read V1 might be deprecated and eventually removed.
    //
    //   By default, restores the named tensors in full.  If the caller wishes to
    //   restore specific slices of stored tensors, "shape_and_slices" should be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

     *
     * <p>Implementations are thread-safe: A listener is notified by at most 1 thread at a time, and so do not need to be thread-safe. All listeners
     * of a given type receive events in the same order. Listeners can be added and removed at any time.
     */
    @ServiceScope(Scope.Global.class)
    public interface ListenerManager {
        /**
         * Adds a listener.  A single object can implement multiple interfaces, and all interfaces are registered by a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    // be invoked before default plugins, default plugins must be disabled and re-enabled here in desired order.
    type Plugins struct {
    	// PreEnqueue is a list of plugins that should be invoked before adding pods to the scheduling queue.
    	PreEnqueue PluginSet
    
    	// QueueSort is a list of plugins that should be invoked when sorting pods in the scheduling queue.
    	QueueSort PluginSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java

    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests {@code iterator} operations on a collection. Can't be invoked
     * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java

    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests {@code iterator} operations on a collection. Can't be invoked
     * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

        }
    
        override fun clearCaches() {
            cache.clear()
        }
    
        /**
         * Note: Races cannot happen because the listener is guaranteed to be invoked in a write action.
         */
        internal class SessionInvalidationListener(val project: Project) : LLFirSessionInvalidationListener {
            private val analysisSessionProvider: KaFirSessionProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                    "$thing ${describe(thing, desc)}: Is not annotated with @since 2.0."
                )
    
            fun removed(thing: String, desc: String): Pair<String, List<String>> =
                "$thing ${describe(thing, desc)}: Is not binary compatible." to listOf("$thing has been removed")
    
            private
            fun describe(thing: String, desc: String) =
                if (thing == "Field") desc else "com.example.$desc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. cni/test/install_cni.go

    				return nil
    			} else if op == "del" {
    				return fmt.Errorf("FAIL: File %v was not removed from %v", f, tempCNIBinDir)
    			}
    		} else {
    			if op == "add" {
    				return fmt.Errorf("FAIL: File %v was not added to %v", f, tempCNIBinDir)
    			} else if op == "del" {
    				t.Logf("PASS: File %v was removed from %v", f, tempCNIBinDir)
    				return nil
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    			options.KubeconfigPath,
    			options.DryRun,
    		},
    	}
    }
    
    func runRemoveETCDMemberPhase(c workflow.RunData) error {
    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("remove-etcd-member-phase phase invoked with an invalid data struct")
    	}
    	cfg := r.Cfg()
    
    	// Only clear etcd data when using local etcd.
    	klog.V(1).Infoln("[reset] Checking for etcd config")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. pkg/cache/ttlCache.go

    type entry struct {
    	value      any
    	expiration int64 // nanoseconds
    }
    
    // EvictionCallback is a function that will be called on entry eviction
    // from an ExpiringCache.
    //
    // This callback will be invoked immediately after the entry is deleted
    // from the `sync.Map` that backs this cache (using `Map.Delete()`). No
    // locks are held during the invocation of this callback. The callback
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top