Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,060 for transforms (0.17 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Build operations and data types for artifact transforms.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 767 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ExecutePlannedTransformStepBuildOperationDetails.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import com.google.common.collect.ImmutableMap;
    import org.gradle.internal.operations.trace.CustomOperationTraceSerialization;
    import org.gradle.operations.dependencies.transforms.ExecutePlannedTransformStepBuildOperationType;
    import org.gradle.operations.dependencies.transforms.PlannedTransformStepIdentity;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

                if (!transform.requiresInputChanges()) {
                    // Non-incremental project artifact transforms also run in an immutable workspace
                    identityCache = immutableWorkspaceServices.getIdentityCache();
                    execution = new NormalizedIdentityImmutableTransformExecution(
                        transform,
                        inputArtifact,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

            }
        }
    
        /**
         * A getClass() transformer.
         *
         * @param <T> The type of the object
         * @return A getClass() transformer.
         */
        public static <T> Transformer<Class<T>, T> type() {
            return new Transformer<Class<T>, T>() {
                @Override
                public Class<T> transform(T original) {
                    @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    LogicalResult CanonicalizeScatterUpdates(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

    </table>
    </div>
    <div class="tab" id="tab3">
    <h2>Artifact Transforms</h2>
    <table>
    <thead>
    <tr>
    <th>Transform</th>
    <th class="numeric">Duration</th>
    </tr>
    </thead>
    <tr>
    <td>All transforms</td>
    <td class="numeric">31.000s</td>
    </tr>
    <tr>
    <td>some other transform</td>
    <td class="numeric">19.000s</td>
    </tr>
    <tr>
    <td>some transform</td>
    <td class="numeric">12.000s</td>
    </tr>
    </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FilterChain.java

                    }
                }
            });
        }
    
        public void add(final Transformer<String, String> transformer) {
            transformers.add(new Transformer<Reader, Reader>() {
                @Override
                public Reader transform(Reader reader) {
                    return new LineFilter(reader, transformer);
                }
            });
        }
    
        public void add(final Closure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    
    namespace mlir {
    namespace TFDevice {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/InstrumentedSuperTypesMergeTask.kt

     * limitations under the License.
     */
    
    package gradlebuild.instrumentation.tasks
    
    import gradlebuild.instrumentation.transforms.InstrumentationMetadataTransform.Companion.DIRECT_SUPER_TYPES_FILE
    import gradlebuild.instrumentation.transforms.InstrumentationMetadataTransform.Companion.INSTRUMENTED_CLASSES_FILE
    import org.gradle.api.DefaultTask
    import org.gradle.api.file.ConfigurableFileCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top