Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 211 for TRANSFORMED (1.29 sec)

  1. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/features/withstaticreference/WithExtensionReferences.java

     * that "matches" the original interceptor's signature as if it was an extension (i.e. receiver is
     * transformed to the first argument, and the callable kind becomes static). For Groovy properties,
     * the name of the callable is also transformed from "foo" to "getFoo".
     * It is possible to specify the custom name for the extension implementation, if needed.
     */
    public @interface WithExtensionReferences {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

         * Base class implementation applies the {@link ClassTransform} to the code.
         *
         * @param builder the builder for the transformed output
         * @param classEntry the entry to process
         * @throws IOException if reading or writing entry fails
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	//
    	// A nil error means that all of the transformed bytes (whether freshly
    	// transformed from src or left over from previous Transform calls)
    	// were written to dst. A nil error can be returned regardless of
    	// whether atEOF is true. If err is nil then nSrc must equal len(src);
    	// the converse is not necessarily true.
    	//
    	// ErrShortDst means that dst was too short to receive all of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/ChainingTransformerTest.groovy

            transformer.transform('original') == 'b'
    
        }
    
        def 'can use a Closure as a Transformer'() {
            when:
            transformer.add { it + ' transformed'}
    
            then:
            transformer.transform('original') == 'original transformed'
        }
    
        def 'uses original object when Closure returns null'() {
            when:
            transformer.add { null }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/const_op.cc

      }
      if (!inp.node_name().empty()) {
        return NodeBuilder::NodeOut(inp.node_name(), inp.index(), inp.data_type());
      }
      auto transformed = Input{
          Const(scope.NewSubScope("Const"), Input::Initializer(inp.tensor()))};
      return NodeBuilder::NodeOut{transformed.node(), transformed.index()};
    }
    
    std::vector<NodeBuilder::NodeOut> AsNodeOutList(const Scope& scope,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 20:58:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FlatMapProvider.java

                return Providers.notDefined();
            }
    
            // Note, that the potential side effect of the transformed provider
            // is going to be executed before this fixed side effect.
            // It is not possible to preserve linear execution order in the general case,
            // as the transformed provider can have side effects hidden under other wrapping providers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

            encoder.writeSmallInt(transformed.getConfigurationNames().size());
            for (String configurationName: transformed.getConfigurationNames()) {
                ConfigurationMetadata configuration = transformed.getConfiguration(configurationName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/TransformedModelDslBacking.java

            this.modelRegistry = modelRegistry;
            this.ruleFactory = new ClosureBackedRuleFactory(relativeFilePathResolver);
        }
    
        /**
         * Invoked by transformed DSL configuration rules
         */
        public void configure(String modelPathString, Closure<?> closure) {
            ModelPath modelPath = ModelPath.path(modelPathString);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

                        to.attribute(artifactType, 'size')
                    }
                }
    
                def transformed = configurations.compile.incoming.artifactView { attributes.attribute(artifactType, 'size') }.files
    
                task resolve(type: ShowFilesTask) {
                    inFiles.from(transformed)
                }
    
                abstract class MakeSize implements TransformAction<None> {
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

                            println "Transformed artifact: \${it.file.name} (\${it.id.componentId}), location: \${it.file.absolutePath}"
                        }
                    }
                }
            """
            expect:
            execute(buildA, "resolve")
            assertTaskExecuted(":buildB", ":jar")
            assertTaskExecuted(":buildC", ":jar")
    
            outputContains("Transformed artifact: buildB-1.0.jar.xform (project :buildB)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top