Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 627 for transformations (0.22 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

        def attributeMatcher = Mock(AttributeMatcher)
        def transformRegistry = Mock(VariantTransformRegistry)
    
        ConsumerProvidedVariantFinder transformations
    
        def setup() {
            def schema = Mock(AttributesSchemaInternal)
            schema.matcher() >> attributeMatcher
            transformations = new ConsumerProvidedVariantFinder(transformRegistry, schema, AttributeTestUtil.attributesFactory())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/transformer_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

            def transformations = server.expectConcurrentAndBlock(3, buildNames.collect { it + "-1.0.jar" } as String[])
            def buildHandles = builds.collect {
                executer.inDirectory(it).withTasks("resolve").start()
            }
    
            for (build in builds) {
                transformations.waitForAllPendingCalls()
                Thread.sleep(1000)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/CachedClasspathTransformer.java

            BuildLogic, None
        }
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, StandardTransform transform);
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, ClassTransform additional);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/overview.md

    compilers. This means it consists of a specification for intermediate
    representations (IR) and a code toolkit to perform transformations on that
    representation. (In compiler parlance, as you move from higher-level
    representations to lower-level representations, these transformations can be
    called “lowerings”)
    
    MLIR is highly influenced by [LLVM](https://llvm.org/) and unabashedly reuses
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "transformation_operations_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListenerTest.groovy

            getId() >> artifactId
            getFileSource() >> source
            getFile() >> artifactFile
        }
        def artifacts = Mock(ResolvedArtifactSet.Artifacts)
    
        def "adds expensive artifact transformations to the build operation queue"() {
            when:
            listener.visitArtifacts(artifacts)
            def artifacts = result.build()
    
            then:
            artifacts.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. test/fixedbugs/gcc61248.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61248: Transformations to recover calls made them fail typechecking in gccgo.
    
    package main
    
    func main() {
    	var f func(int, interface{})
    	go f(0, recover())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 336 bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

         * <p>
         * Transformations do not need to create a new problem, they can also modify the given problem.
         *
         * @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)
Back to top