Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for transforming (0.34 sec)

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

                    abstract Provider<FileSystemLocation> getInput()
    
                    void transform(TransformOutputs outputs) {
                        def inputFile = input.get().asFile
                        println "Transforming " + inputFile.name
                        def outputFile = outputs.file(inputFile.name + ".green")
                        outputFile.text = "green"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/BinaryDiffUtils.groovy

                }
    
                // swap cost/newcost arrays
                int[] swap = cost; cost = newcost; newcost = swap;
            }
    
            // the distance is the cost for transforming all letters in both strings
            return cost[len0 - 1];
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 14 11:47:34 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

     * for equality with the argument passed to {@code leaveDynamicCall}.
     * <p>
     * The implementations should be thread-safe and should support tracking the context in multiple threads.
     */
    // TODO: consider transforming this to a more generic tool for tracking the events
    //       of entering and leaving some generic context (marked with a key?)
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface DynamicCallContextTracker {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run(":app:toBeFinalized", "withDependency")
    
            def lib1Message = "Transforming lib1.jar with MakeGreen"
            def lib2Message = "Transforming lib2.jar with MakeGreen"
    
            then:
            if (!GradleContextualExecuter.configCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

                // Not supported on Java 6
            }
        }
    
        public GroovyCompileTransformingClassLoader(ClassLoader parent, ClassPath classPath) {
            super("groovy-compile-transforming-loader", parent, classPath);
        }
    
        @Override
        protected byte[] transform(String className, byte[] bytes) {
            // First scan for annotation, and short circuit transformation if not present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    #include "tensorflow/compiler/mlir/tf2xla/api/v2/device_type.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Run all the passes involved in transforming the graph before execution so
    // that it is suitable for targeting devices when called with the TF 2 Function
    // API. Users that need clustering with the Session API should use the v1 Bridge
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStep.java

            if (LOGGER.isInfoEnabled()) {
                LOGGER.info("Transforming {} with {}", subjectToTransform.getDisplayName(), transform.getDisplayName());
            }
    
            InputFingerprinter inputFingerprinter = context != null ? context.getService(InputFingerprinter.class) : globalInputFingerprinter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/transform/transform.go

    // Writer wraps another io.Writer by transforming the bytes read.
    // The user needs to call Close to flush unwritten bytes that may
    // be buffered.
    type Writer struct {
    	w   io.Writer
    	t   Transformer
    	dst []byte
    
    	// src[:n] contains bytes that have not yet passed through t.
    	src []byte
    	n   int
    }
    
    // NewWriter returns a new Writer that wraps w by transforming the bytes written
    // via t. It calls Reset on t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

                    }
            }
    
        override val visibility: Visibility
            get() = withValidityAssertion {
                // TODO: We should use resolvedStatus, because it can be altered by status-transforming compiler plugins. See KT-58572
                when (val possiblyRawVisibility = firSymbol.fir.visibility) {
                    Visibilities.Unknown -> if (firSymbol.fir.isLocal) Visibilities.Local else Visibilities.Public
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // Writer wraps another io.Writer by transforming the bytes read.
    // The user needs to call Close to flush unwritten bytes that may
    // be buffered.
    type Writer struct {
    	w   io.Writer
    	t   Transformer
    	dst []byte
    
    	// src[:n] contains bytes that have not yet passed through t.
    	src []byte
    	n   int
    }
    
    // NewWriter returns a new Writer that wraps w by transforming the bytes written
    // via t. It calls Reset on t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top