Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for interop (0.14 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

        }
    
        /**
         * Creates a new exception from the specified interim result and its associated problems.
         *
         * @param result The interim result, may be {@code null}.
         */
        public ModelBuildingException(ModelBuildingResult result) {
            super(toMessage(result));
            this.result = result;
        }
    
        /**
         * Gets the interim result of the model building up to the point where it failed.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ant/properties/groovy/build.xml

    <project>
    <!-- tag::setproperty[] -->
    <echo>buildDir = ${buildDir}</echo>
    <!-- end::setproperty[] -->
    
    <!-- tag::getproperty[] -->
    <property name="antProp" value="a property defined in an Ant build"/>
    <!-- end::getproperty[] -->
    
    <!-- tag::setreference[] -->
    <path refid="classpath"/>
    <!-- end::setreference[] -->
    
    <!-- tag::getreference[] -->
    <path id="antPath" location="libs"/>
    <!-- end::getreference[] -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ant/properties/kotlin/build.xml

    <project>
    <!-- tag::setproperty[] -->
    <echo>buildDir = ${buildDir}</echo>
    <!-- end::setproperty[] -->
    
    <!-- tag::getproperty[] -->
    <property name="antProp" value="a property defined in an Ant build"/>
    <!-- end::getproperty[] -->
    
    <!-- tag::setreference[] -->
    <path refid="classpath"/>
    <!-- end::setreference[] -->
    
    <!-- tag::getreference[] -->
    <path id="antPath" location="libs"/>
    <!-- end::getreference[] -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      block->walk([&](Operation* op) {
        Operation* iter_op = op;
        while (iter_op && !llvm::isa<mlir::tf_device::ClusterOp>(iter_op)) {
          if (iter_op->hasAttrOfType<StringAttr>(kXlaOutsideCompilationAttr)) {
            return;
          }
          iter_op = iter_op->getParentOp();
        }
    
        if (!IsSupportedOp(*op, supported_ops, tf_dialect)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

        // We have to recurse, since we might have wrapped a side-effectful operator
        // in a tfl::CustomTfOp.
        if (op.walk([&](Operation *inner_op) {
                return op_has_side_effects_(inner_op) ? WalkResult::interrupt()
                                                      : WalkResult::advance();
              }).wasInterrupted()) {
          ops_with_side_effects.push_back(&op);
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                HashCode hash = streamHasher.hashCopy(input, output);
                chmodUnpackedFile(entry, file);
                String internedAbsolutePath = stringInterner.intern(file.getAbsolutePath());
                String internedFileName = stringInterner.intern(fileName);
                return new RegularFileSnapshot(internedAbsolutePath, internedFileName, hash, DefaultFileMetadata.file(output.getCount(), file.lastModified(), DIRECT));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    }
    
    func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	bad := false
    	if interior < x {
    		print("runtime: interior=", hex(interior), " x=", hex(x), "\n")
    		throw("found bad interior pointer")
    	}
    	off := interior - x
    	tp := span.typePointersOf(interior, size)
    	for i := off; i < off+size; i += goarch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      for (Operation* cluster_op : cluster_ops) {
        cluster_op->moveBefore(body, body->end());
        cluster_op->walk([&](Operation* inner_op) {
          inner_op->removeAttr(mlir::TF::kReplicationInfoAttr);
          inner_op->removeAttr(mlir::TF::kCompileDeviceTypeAttr);
    
          if (auto attr = inner_op->getAttrOfType<StringAttr>(kDeviceAttr)) {
            // Preserve device attribute if the op is placed on a replicated core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  10. docs/de/docs/benchmarks.md

    Beim Ansehen von Benchmarks und Vergleichen sollten Sie jedoch Folgende Punkte beachten.
    
    ## Benchmarks und Geschwindigkeit
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top