Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,029 for transform2 (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FlatMapProvider.java

            T unpackedValue = value.getWithoutSideEffect();
            Provider<? extends S> transformedProvider = transformer.transform(unpackedValue);
            if (transformedProvider == null) {
                return Providers.notDefined();
            }
    
            // Note, that the potential side effect of the transformed provider
            // is going to be executed before this fixed side effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
         */
        String getArtifactName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            public T getWithoutSideEffect() throws IllegalStateException {
                return result;
            }
    
            @Override
            public <R> Value<R> transform(Transformer<? extends R, ? super T> transformer) {
                R transformResult = transformer.transform(result);
                if (transformResult == null || sideEffect == null) {
                    return Value.ofNullable(transformResult);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                // 1. serialize a task that uses the transformed artifact
                // 2. serialize a task whose serialization triggers execution of that transform
                // 3. serialize another task that uses the transformed artifact
                // In addition, the 1st and 3rd tasks need to resolve different variants that share the same transform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/PCHUtilsTest.groovy

        }
    
        def "transforms pre-compiled header spec to contain generated source files" () {
            given:
            def tempDir = tmpDirProvider.createDir("temp")
            def pchSourceDir = tempDir.createDir("pchGenerated")
            def headerDir = tmpDirProvider.createDir("headers")
            def sourceFile = headerDir.createFile("test.h")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top