Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for movbe (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    //                 pack,   axis = 1
    //                   |
    //               value   [5, 8, 9]
    //
    //   This can actually be simplified into just:
    //
    //           =>   Value [5, 8, 9]
    // TODO(b/133341698): Move to tablegen when variadic is supported.
    struct RemoveRedundantUnpackPack : public RewritePattern {
      explicit RemoveRedundantUnpackPack(MLIRContext* context)
          : RewritePattern(PackOp::getOperationName(), 2, context) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	// and modload.PackageNotInModuleError; and the malformed module path errors
    	// produced in golang.org/x/mod/module.CheckMod) implement an interface
    	// to make it easier to check for them? That would save us from having to
    	// move the modload errors into this package to avoid a package import cycle,
    	// and from having to export an error type for the errors produced in build.
    	if !isMatchErr && (nogoErr != nil || isScanErr) {
    		stk.Push(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          echo -e "${color_red:-}Failed to create firewall ${NODE_TAG}-http-alt in ${NETWORK_PROJECT}" >&2
          exit 1
        fi
        sleep 5
      done
    
      # Open up the NodePort range
      # TODO(justinsb): Move to main setup, if we decide whether we want to do this by default.
      start=$(date +%s)
      gcloud compute firewall-rules create \
        --project "${NETWORK_PROJECT}" \
        --target-tags "${NODE_TAG}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    # endif  // GTEST_HASH_CXXABI_H_
    
    namespace testing {
    namespace internal {
    
    // GetTypeName<T>() returns a human-readable name of type T.
    // NB: This function is also used in Google Mock, so don't move it inside of
    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
Back to top