Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 533 for Transformed (0.46 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

            project.dependencies.registerTransform(actionType) {
                it.from.attribute(artifactType, 'jar')
                it.to.attribute(artifactType, 'transformed')
            }
            return variantTransformRegistry.registrations[currentRegisteredTransforms].transformStep
        }
    
        private Try<ImmutableList<File>> invokeTransform(TransformStep transform, File inputArtifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

            result1.output.count("Transforming thing.jar to Red") == 1
            result2.output.count("Transforming") == 1
            result2.output.count("Transforming thing.jar to Blue") == 1
        }
    
        def "file is transformed once only by concurrent builds"() {
            given:
            // Run two builds concurrently
            buildFile << """
    task block1 {
        doLast {
            ${server.callFromBuild("block1")}
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/symkind.go

    	objabi.SSEHUNWINDINFO:          SSEHUNWINDINFO,
    }
    
    // ReadOnly are the symbol kinds that form read-only sections. In some
    // cases, if they will require relocations, they are transformed into
    // rel-ro sections using relROMap.
    var ReadOnly = []SymKind{
    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    	SGCBITS,
    	SRODATA,
    	SFUNCTAB,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ListsTest.java

        try {
          list.add("5");
          fail("transformed list is addable");
        } catch (UnsupportedOperationException expected) {
        }
        list.remove(0);
        assertEquals(asList("2", "3", "4"), list);
        list.remove("3");
        assertEquals(asList("2", "4"), list);
        try {
          list.set(0, "5");
          fail("transformed list is setable");
        } catch (UnsupportedOperationException expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ListsTest.java

        try {
          list.add("5");
          fail("transformed list is addable");
        } catch (UnsupportedOperationException expected) {
        }
        list.remove(0);
        assertEquals(asList("2", "3", "4"), list);
        list.remove("3");
        assertEquals(asList("2", "4"), list);
        try {
          list.set(0, "5");
          fail("transformed list is setable");
        } catch (UnsupportedOperationException expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            if (classPath instanceof TransformedClassPath && !(this instanceof InstrumentingClassLoader)) {
                throw new IllegalArgumentException("Cannot build a non-instrumenting class loader " + name + " out of transformed class path");
            }
        }
    
        private VisitableURLClassLoader(String name, URL[] classpath, ClassLoader parent) {
            super(classpath, parent);
            this.name = name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler.go

    // For the managed fields that have a replicas path it performs two changes:
    //  1. APIVersion is changed to the APIVersion of the scale subresource
    //  2. Replicas path of the main resource is transformed to the replicas path of
    //     the scale subresource
    func (h *ScaleHandler) ToSubresource() ([]metav1.ManagedFieldsEntry, error) {
    	managed, err := internal.DecodeManagedFields(h.parentEntries)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
        /**
         * Add a compilation source root to the given project for the given scope.
         * The path will be transformed into an absolute path and added to the list for the given scope,
         * if not already present.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            }
            ClasspathFileTransformer transformer = fileTransformerFor(transform);
            return parallelTransformExecutor.transformAll(
                urls,
                (url, seen) -> cachedURL(url, transformer, seen, InstrumentationTypeRegistry.empty())
            );
        }
    
        private ClassPath transformFiles(ClassPath classPath, ClasspathFileTransformer transformer) {
            return DefaultClassPath.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        }
    
        @ToBeImplemented
        @Issue('https://github.com/gradle/gradle/issues/29147')
        def "can connect transformed incoming elements of a configuration to task input ListProperty"() {
            withZipArtifactProducingSubprojects 'p1', 'p2'
            withIdentityTransform()
            buildFile '''
                apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top