Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for output_types (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultCacheableOutputFilePropertySpec.java

        private final TreeType outputType;
    
        public DefaultCacheableOutputFilePropertySpec(
            String propertyName,
            @Nullable String propertySuffix,
            FileCollectionInternal outputFiles,
            TreeType outputType
        ) {
            super(propertyName, OutputNormalizer.INSTANCE, outputFiles);
            this.propertySuffix = propertySuffix;
            this.outputType = outputType;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:23 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        private final String name;
        private final Describable displayName;
        private final OutputType outputType;
    
        public SimpleReport(String name, Describable displayName, OutputType outputType) {
            this.name = name;
            this.displayName = displayName;
            this.outputType = outputType;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstyleTest.groovy

                reports.xml.outputType == Report.OutputType.FILE
                !reports.html.required.get()
                !reports.html.outputLocation.isPresent()
                reports.html.outputType == Report.OutputType.FILE
                !reports.sarif.required.get()
                !reports.sarif.outputLocation.isPresent()
                reports.sarif.outputType == Report.OutputType.FILE
                !ignoreFailures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalTransformers.java

        private static class CastingTransformer<O, I> implements InternalTransformer<O, I> {
            final Class<O> outputType;
    
            public CastingTransformer(Class<O> outputType) {
                this.outputType = outputType;
            }
    
            @Override
            public O transform(I input) {
                return Cast.cast(outputType, input);
            }
        }
    
        public static <T> InternalTransformer<String, T> asString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         *
         * @param outputType The type to cast the input to
         * @param object The object to be cast (must not be {@code null})
         * @param <O> The type to be cast to
         * @param <I> The type of the object to be vast
         * @return The input object, cast to the output type
         */
        public static <O, I> O cast(Class<O> outputType, I object) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

        }
    
        private static class CastingTransformer<O, I> implements Transformer<O, I> {
            final Class<O> outputType;
    
            public CastingTransformer(Class<O> outputType) {
                this.outputType = outputType;
            }
    
            @Override
            public O transform(I input) {
                return Cast.cast(outputType, input);
            }
        }
    
        public static <T> Transformer<String, T> asString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. build/pause/Makefile

    	docker buildx build --provenance=false --sbom=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS}/$(ARCH) \
    		-t $(IMAGE):$(TAG)-${OS}-$(ARCH) --build-arg BASE=${BASE} --build-arg ARCH=$(ARCH) .
    	touch $@
    
    .container-windows-$(ARCH): $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    	docker buildx build --provenance=false --sbom=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS}/$(ARCH) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/testonly/user-profile.psm1

    # Kubernetes releases depend on the release structure remaining stable.
    
    
    #Function to create the new local user first
    function New-LocalUser
    {
        [CmdletBinding()]
        [Alias()]
        [OutputType([int])]
        Param
        (
            # Param1 help description
            [Parameter(Mandatory=$true,
                       ValueFromPipelineByPropertyName=$true,
                       Position=0)]
            $userName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            outputs.fileProperties*.propertyName == ['$1']
            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a")]
            outputs.fileProperties*.outputFile == [file("a")]
            outputs.fileProperties*.outputType == [FILE]
        }
    
        def "can register output file with property name"() {
            when:
            outputs.file("a").withPropertyName("prop")
            then:
            outputs.files.files == files('a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedReport.java

        }
    
        public TaskGeneratedReport(final String name, OutputType outputType, final Task task) {
            super(name, new Describable() {
                @Override
                public String getDisplayName() {
                    return calculateDisplayName(name, task);
                }
            }, outputType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top