Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,122 for transform1 (0.23 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Transform.
    func (c Caser) Reset() { c.t.Reset() }
    
    // Transform implements the transform.Transformer interface and transforms the
    // given input to the case form implemented by c.
    func (c Caser) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return c.t.Transform(dst, src, atEOF)
    }
    
    // Span implements the transform.SpanningTransformer interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            def outputJar = testDir.file("transformed.jar")
            return new JarTestFixture(transform(factory, originalJar, outputJar), 'UTF-8', null, /* checkManifest */ false)
        }
    
        private TestFile transformDirectory(TransformFactoryType factory, File originalDir) {
            def outputDir = testDir.file("transformed")
            return new TestFile(transform(factory, originalDir, outputDir))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            output.count("> Transform lib1.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib1.jar (project :lib) with MakeGreenToYellowThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeGreenToYellowThings") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

         *
         * @param problem the problem to transform
         * @param id the operation id associated with the problem
         * @return the transformed problem
         */
        Problem transform(Problem problem, OperationIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.classpath.ClasspathWalker;
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    
    import java.io.File;
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    When a user runs a Gradle build Gradle it uses transformed plugin jars. 
    The whole transformation process normally happens on the first use of a build or when a plugin jar is added to the build script classpath.
    We transform the jar and cache transformed jars for future use.
    
    We transform plugins classpath, TestKit classpath and buildscript classes separately. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                TransformWorkspaceIdentity transformWorkspaceIdentity,
                Transform transform,
                ComponentIdentifier componentIdentifier
            ) {
                this.inputArtifact = inputArtifact;
                this.transformWorkspaceIdentity = transformWorkspaceIdentity;
                this.transform = transform;
                this.componentIdentifier = componentIdentifier;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            this.typeRegistry = typeRegistry;
            this.transform = transform;
        }
    
        @Override
        public final void transform(File destination) {
            resultBuilder().accept(destination, builder -> {
                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-nnapi.mlir

    // RUN: tac-opt-all-backends -tfl-device-transform-nnapi %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @mean_4d_keepdim(%arg0: tensor<1x48x48x512xf32>) -> tensor<1x1x1x512xf32> {
      %cst = arith.constant dense<[1, 2]> : tensor<2xi32>
      %0 = "tfl.mean"(%arg0, %cst) {keep_dims = true} : (tensor<1x48x48x512xf32>, tensor<2xi32>) -> tensor<1x1x1x512xf32>
      func.return %0 : tensor<1x1x1x512xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

            this.shouldLoadTransformedClass = shouldLoadTransformedClass;
            this.transform = transform;
            this.source = source;
            this.typeRegistry = typeRegistry;
        }
    
        @Override
        protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
            if (shouldLoadTransformedClass.test(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top