Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for NAME_ONLY (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

         * @deprecated Use {@link #getDir()} instead to get the root of the nested build.
         * This method will be removed in Gradle 9.0.
         */
        @Nullable
        @Optional
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFile
        @Deprecated
        public File getBuildFile() {
            logBuildFileDeprecation();
            return DeprecationLogger.whileDisabled(() ->
                getStartParameter().getBuildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
         */
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFiles
        @Deprecated
        public FileCollection getArtifacts() {
            return getProject().files();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

                    interface Parameters extends TransformParameters {
                        @Input
                        Property<String> getTargetColor()
                    }
    
                    @PathSensitive(PathSensitivity.NAME_ONLY)
                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    @Inject abstract InputChanges getInputChanges()
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

        @Inject
        public abstract ObjectFactory getObjects();
    
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputArtifact
        public abstract Provider<FileSystemLocation> getInput();
    
        protected void doTransform(File artifactToTransform, TransformOutputs outputs) {
            createInstrumentationClasspathMarker(outputs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/rc/tasks/WindowsResourceCompile.java

        }
    
    
        /**
         * The set of dependent headers. This is used for up-to-date checks only.
         *
         * @since 4.5
         */
        @Incremental
        @InputFiles
        @PathSensitive(PathSensitivity.NAME_ONLY)
        protected FileCollection getHeaderDependencies() {
            return incrementalCompiler.getHeaderFiles();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                .put(InputNormalizer.ABSOLUTE_PATH, FINGERPRINTING_STRATEGY_ABSOLUTE_PATH)
                .put(InputNormalizer.RELATIVE_PATH, FINGERPRINTING_STRATEGY_RELATIVE_PATH)
                .put(InputNormalizer.NAME_ONLY, FINGERPRINTING_STRATEGY_NAME_ONLY)
                .put(InputNormalizer.IGNORE_PATH, FINGERPRINTING_STRATEGY_IGNORED_PATH)
                .build();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

         *
         * @since 4.3
         */
        // TODO - allow @InputFile and @SkipWhenEmpty to be attached to getExecutableFile()
        @SkipWhenEmpty
        @Nullable
        @Optional
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFile
        protected File getInputFileIfExists() {
            RegularFileProperty sourceFile = getExecutableFile();
            if (sourceFile.isPresent() && sourceFile.get().getAsFile().exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

            return moduleName;
        }
    
        /**
         * The modules required to compile the source.
         *
         * @since 4.4
         */
        @InputFiles
        @PathSensitive(PathSensitivity.NAME_ONLY)
        public ConfigurableFileCollection getModules() {
            return modules;
        }
    
        /**
         * Returns the Swift language level to use to compile the source files.
         *
         * @since 4.6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

         *
         * @since 4.4
         */
        @Internal
        public ListProperty<Publication> getPublications() {
            return publications.get();
        }
    
        @InputFiles
        @PathSensitive(PathSensitivity.NAME_ONLY)
        FileCollection getArtifacts() {
            return variantFiles;
        }
    
        /**
         * Returns the {@link FileCollectionFactory} to use for generation.
         *
         * @since 4.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

        @Inject
        protected abstract ObjectFactory getObjects();
    
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputArtifact
        public abstract Provider<FileSystemLocation> getInput();
    
        @Override
        public void transform(TransformOutputs outputs) {
            File artifact = getInput().get().getAsFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top