Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 104 of 104 for InputFile (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

         *     These two types are typically used for {@literal @}{@link org.gradle.api.tasks.InputFile} and {@literal @}{@link org.gradle.api.tasks.InputDirectory} properties.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

                        .details("A property of type '" + ModelType.of(valueType).getDisplayName() + "' annotated with @Input cannot determine how to interpret the file")
                        .solution("Annotate with @InputFile for regular files")
                        .solution("Annotate with @InputFiles for collections of files")
                        .solution("If you want to track the path, return File.absolutePath as a String and keep @Input")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/test/framework/tools/featuresgen/cmd/root.go

    )
    
    func Execute() {
    	if err := rootCmd.Execute(); err != nil {
    		fmt.Println("Error running featuresgen:")
    		panic(err)
    	}
    }
    
    func init() {
    	rootCmd.Flags().StringVarP(&input, "inputFile", "i", "features.yaml", "the YAML file to use as input")
    	rootCmd.Flags().StringVarP(&output, "outputFile", "o", "features.gen.go", "output Go file with labels as string consts")
    }
    
    // Parses a map in the yaml file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    * The `implementation-class` property references a valid class file in the jar.
    * Each property getter or the corresponding field must be annotated with a property annotation like `@InputFile` and `@OutputDirectory`.
    Properties that don't participate in up-to-date checks should be annotated with `@Internal`.
    
    Any failed validations will result in a warning message.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top