Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Transformed (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 2
            isTransformed("lib1.jar", "lib1.jar.value")
            isTransformed("lib2.jar", "lib2.jar.value")
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files 1: [lib1.jar.value, lib2.jar.value]") == 2
    
            output.count("Transformed") == 0
    
            where:
            type           | value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass transforms functional control flow operations in the TensorFlow
        dialect to their region-based counterparts, i.e., `tf.If` is transformed to
        `tf.IfRegion` and `tf.While` is transformed to `tf.WhileRegion`.
    
        For example, this functional operation
    
        ```mlir
          %0 = "tf.If"(%arg0, %arg1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * the transformer is capable of accepting null inputs. The transformed map might contain null
       * values if the transformer sometimes gives a null result.
       *
       * <p>The returned map is not thread-safe or serializable, even if the underlying map is.
       *
       * <p>The transformer is applied lazily, invoked when needed. This is necessary for the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * the transformer is capable of accepting null inputs. The transformed map might contain null
       * values if the transformer sometimes gives a null result.
       *
       * <p>The returned map is not thread-safe or serializable, even if the underlying map is.
       *
       * <p>The transformer is applied lazily, invoked when needed. This is necessary for the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            output.cancel(false);
            throw new MyRuntimeException();
          }
        }
        Transformer transformer = new Transformer();
        SettableFuture<Object> input = SettableFuture.create();
    
        ListenableFuture<Object> output = transform(input, transformer, directExecutor());
        transformer.output = output;
    
        input.set("foo");
        assertTrue(output.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            output.cancel(false);
            throw new MyRuntimeException();
          }
        }
        Transformer transformer = new Transformer();
        SettableFuture<Object> input = SettableFuture.create();
    
        ListenableFuture<Object> output = transform(input, transformer, directExecutor());
        transformer.output = output;
    
        input.set("foo");
        assertTrue(output.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    		// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    		case objabi.R_GOTPCREL:
    			if target.IsDynlinkingGo() && target.IsDarwin() && rs != 0 {
    				nExtReloc++
    				o = r.Add()
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <name>pomFile</name>
              <version>4.1.0+</version>
              <required>false</required>
              <description>Originating POM file</description>
              <type>DOM</type> <!-- This is transformed to a File/Path in the template -->
            </field>
    
            <!-- ====================================================================== -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that when the weight tensor for `stablehlo.dot_general` has a
    // `stablehlo.constant` -> `stablehlo.transpose` pattern, the
    // `stablehlo.constant` is directly transformed to `tfl.pseudo_qconst`, which
    // becomes the rhs of `tfl.fully_connected`. This is because
    // `tfl.fully_connected` accepts a [o, i] format for rhs, which
    // `stablehlo.constant` op already has before the transpose.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      for (auto pair : llvm::zip(op.getResults(), unpack_unary_op.getResults())) {
        OpResult old_result = std::get<0>(pair);  // result of original Unpack
        OpResult new_result = std::get<1>(pair);  // result of transformed Unpack
        for (Operation *user : llvm::make_early_inc_range(old_result.getUsers()))
          rewriter.replaceOp(user, ValueRange(new_result));
      }
    
      // Erase original unpack operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top