Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for checkDep (1.57 sec)

  1. pkg/proxy/winkernel/proxier.go

    			allEndpointsNonServing = proxier.isAllEndpointsNonServing(svcName, svcInfo.localTrafficDSR)
    			someEndpointsServing = !allEndpointsNonServing
    			klog.V(4).InfoS("Terminating status checked for all endpoints", "svcClusterIP", svcInfo.ClusterIP(), "allEndpointsTerminating", allEndpointsTerminating, "allEndpointsNonServing", allEndpointsNonServing, "localTrafficDSR", svcInfo.localTrafficDSR)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                  per_tensor.getZeroPoint(), per_tensor.getStorageTypeMin() - 1,
                  per_tensor.getStorageTypeMax());
            } else {
              return;  // Should not reach here, as it's already checked.
            }
            auto new_output_type = new_qtype.castFromExpressedType(
                mlir::quant::UniformQuantizedType::castToExpressedType(
                    value.getType()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    import java.util.Set;
    import java.util.Vector;
    import junit.framework.AssertionFailedError;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Iterators}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    // it might need to be added.
    // TODO(aix): Handles dynamic symbols without library.
    func (f *xcoffFile) adddynimpsym(ctxt *Link, s loader.Sym) {
    	// Check that library name is given.
    	// Pattern is already checked when compiling.
    	ldr := ctxt.loader
    	if ctxt.IsInternal() && ldr.SymDynimplib(s) == "" {
    		ctxt.Errorf(s, "imported symbol must have a given library")
    	}
    
    	sb := ldr.MakeSymbolUpdater(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      (void)LiftArgRetResourcesForFunction(cond, remaining_resource_data_types,
                                           [&](int64_t index, Value value) {
                                             // We already checked that cond should
                                             // not have variable writes.
                                             assert(false && "Should not happen");
                                           });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	} else if savedCondition != nil && currentReadyCondition != nil && savedCondition.LastHeartbeatTime != currentReadyCondition.LastHeartbeatTime {
    		var transitionTime metav1.Time
    		// If ReadyCondition changed since the last time we checked, we update the transition timestamp to "now",
    		// otherwise we leave it as it is.
    		if savedCondition.LastTransitionTime != currentReadyCondition.LastTransitionTime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	if !existed {
    		l.symsByName[ver][name] = i
    		addToGlobal()
    		return i
    	}
    	// symbol already exists
    	if osym.Dupok() {
    		if l.flags&FlagStrictDups != 0 {
    			l.checkdup(name, r, li, oldi)
    		}
    		// Fix for issue #47185 -- given two dupok symbols with
    		// different sizes, favor symbol with larger size. See
    		// also issue #46653.
    		szdup := l.SymSize(oldi)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * `java.net.URL` it's possible to create an awkward URL like `http:/` with scheme and path but no
     * hostname. Building APIs that consume such malformed values is difficult!
     *
     * This class has a modern API. It avoids punitive checked exceptions: [toHttpUrl] throws
     * [IllegalArgumentException] on invalid input or [toHttpUrlOrNull] returns null if the input is an
     * invalid URL. You can even be explicit about whether each component has been encoded already.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if opts.SendInitialEvents != nil && *opts.SendInitialEvents {
    		// Here be dragons:
    		// Since the etcd feature checker needs to check all members
    		// to determine whether a given feature is supported,
    		// we may receive a positive response even if the feature is not supported.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

    import java.util.Set;
    import java.util.SortedMap;
    import java.util.SortedSet;
    import java.util.TreeMap;
    import java.util.concurrent.ConcurrentMap;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Maps}.
     *
     * @author Kevin Bourrillion
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
Back to top