Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for movbe (0.08 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    			fakeClock := manager.failedPodsBackoff.Clock
    
    			// Move just before the backoff end time
    			fakeClock.Sleep(delay - 1*time.Nanosecond)
    			if !manager.failedPodsBackoff.IsInBackOffSinceUpdate(backoffKey, fakeClock.Now()) {
    				t.Errorf("Backoff delay didn't last the whole waitout period.")
    			}
    
    			// Move to the backoff end time
    			fakeClock.Sleep(1 * time.Nanosecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
    };
    
    class ConvertNonTrivialConvOp
        : public OpConversionPattern<mhlo::ConvolutionOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
      // TODO(b/302150407): we should move to use direct legalization to TFlite
      // instead going through TF in the future
      LogicalResult matchAndRewrite(
          mhlo::ConvolutionOp conv_op, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
        return h ^ (h >>> 16);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      local container_runtime_name="${CONTAINER_RUNTIME_NAME:-containerd}"
      systemctl stop "$container_runtime_name"
      # Some images remount the container runtime root dir.
      umount "/var/lib/${container_runtime_name}" || true
      # Move the container runtime's directory to the new location to preserve
      # preloaded images.
      if [ ! -d "${ephemeral_mountpoint}/${container_runtime_name}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	configMapManager configmap.Manager
    
    	// volumeManager observes the set of running pods and is responsible for attaching, mounting,
    	// unmounting, and detaching as those pods move through their lifecycle. It periodically
    	// synchronizes the set of known volumes to the set of actually desired volumes and cleans up
    	// any orphaned volumes. The volume manager considers the podWorker to be authoritative for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	}
    
    	copyMemoryBlocks := make([]state.Block, len(mb2))
    	copy(copyMemoryBlocks, mb2)
    	for _, block := range mb1 {
    		for i, copyBlock := range copyMemoryBlocks {
    			if reflect.DeepEqual(block, copyBlock) {
    				// move the element that equals to the block to the end of the slice
    				copyMemoryBlocks[i] = copyMemoryBlocks[len(copyMemoryBlocks)-1]
    
    				// remove the last element from our slice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
            </field>
            <field>
              <name>message</name>
              <version>4.0.0+</version>
              <description>An additional message to show the user about the move, such as the reason.</description>
              <type>String</type>
            </field>
          </fields>
        </class>
        <class>
          <name>Extension</name>
          <version>4.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // TODO(hinsu): Remove tests for ops without custom verifiers. These tests were
    // added along with manual op definition and are obsolete now that the op
    // definitions are auto-generated.
    
    // TODO(hinsu): Move attribute and type tests to types.mlir file.
    //===--------------------------------------------------------------------===//
    //  Test TF TensorProto attributes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          }
          result.replaceAllUsesWith(result_to_extern_value[result]);
          for (Region* branch : branches)
            branch->front().getTerminator()->eraseOperand(next_index);
        }
    
        // Move region bodies to the new op.
        for (auto region_index : llvm::seq<int>(0, branches.size()))
          new_op.getRegion(region_index).takeBody(op.getRegion(region_index));
    
        op.erase();
        return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	// to be nil when the set is small and should be scanned. This works even if
    	// the set grows over the threshold with delete handles outstanding because
    	// an element can only move to a lower index. So if it starts with a nil
    	// position, it'll always be in a low index and thus scannable. But that
    	// can be done in a follow-up change.
    	idxPtr := &idx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top