Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for LOGICAL (0.17 sec)

  1. pkg/scheduler/internal/cache/cache.go

    	// The size of assumedPods should be small
    	for key := range cache.assumedPods {
    		ps, ok := cache.podStates[key]
    		if !ok {
    			logger.Error(nil, "Key found in assumed set but not in podStates, potentially a logical error")
    			klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		}
    		if !ps.bindingFinished {
    			logger.V(5).Info("Could not expire cache for pod as binding is still in progress", "podKey", key, "pod", klog.KObj(ps.pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableList.java

          hashCode = ~~hashCode;
          // needed to deal with GWT integer overflow
        }
        return hashCode;
      }
    
      /*
       * Serializes ImmutableLists as their logical contents. This ensures that
       * implementation types do not leak into the serialized representation.
       */
      @J2ktIncompatible // serialization
      static class SerializedForm implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

          hashCode = ~~hashCode;
          // needed to deal with GWT integer overflow
        }
        return hashCode;
      }
    
      /*
       * Serializes ImmutableLists as their logical contents. This ensures that
       * implementation types do not leak into the serialized representation.
       */
      @J2ktIncompatible // serialization
      static class SerializedForm implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_static.go

    // conditions are met:
    //
    // - The pod QoS class is Guaranteed.
    // - The CPU request is a positive integer.
    //
    // The static policy maintains the following sets of logical CPUs:
    //
    //   - SHARED: Burstable, BestEffort, and non-integral Guaranteed containers
    //     run here. Initially this contains all CPU IDs on the system. As
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen.cc

    // o Calls to non-const methods require exclusive access to the object.
    // o Concurrent calls to const methods are OK, if those calls are made while it
    //   is guaranteed that no thread may call a non-const method.
    //
    // The logical function signature is:
    //   {{PROGRAM_SHAPE}}
    //
    // Memory stats:
    //   arg bytes total:    {{ARG_BYTES_TOTAL}}
    //   arg bytes aligned:  {{ARG_BYTES_ALIGNED}}
    //   temp bytes total:   {{TEMP_BYTES_TOTAL}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    org.hamcrest.core; import org.hamcrest.Description; import org.hamcrest.DiagnosingMatcher; import org.hamcrest.Factory; import org.hamcrest.Matcher; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Calculates the logical conjunction of multiple matchers. Evaluation is shortcut, so * subsequent matchers are not called if an earlier matcher returns <code>false</code>. */ public class AllOf<T> extends DiagnosingMatcher<T> { private final Iterable<Matcher<? super T>>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

        }
      }
    
      /*
       * This class is used to serialize all ImmutableSet instances, except for
       * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
       * captures their "logical contents" and they are reconstructed using public
       * static factories. This is necessary to ensure that the existence of a
       * particular implementation type is an implementation detail.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    func MutatorUtilizationV2(events []Event, flags UtilFlags) [][]MutatorUtil {
    	// Set up a bunch of analysis state.
    	type perP struct {
    		// gc > 0 indicates that GC is active on this P.
    		gc int
    		// series the logical series number for this P. This
    		// is necessary because Ps may be removed and then
    		// re-added, and then the new P needs a new series.
    		series int
    	}
    	type procsCount struct {
    		// time at which procs changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      abstract int indexOf(@CheckForNull Object target);
    
      /*
       * This class is used to serialize all ImmutableSortedSet instances,
       * regardless of implementation type. It captures their "logical contents"
       * only. This is necessary to ensure that the existence of a particular
       * implementation type is an implementation detail.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Monitor.java

     * common bugs: The {@code wait()} must be inside a {@code while} instead of an {@code if}, and
     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
     * logical conditions being awaited.
     *
     * <pre>{@code
     * public class SafeBox<V> {
     *   private V value;
     *
     *   public synchronized V get() throws InterruptedException {
     *     while (value == null) {
     *       wait();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
Back to top