Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setFileCollectionFactory (0.27 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

        PlatformToolProvider getPlatformToolProvider();
    
        void setPlatformToolProvider(PlatformToolProvider toolProvider);
    
        void setResolver(NativeDependencyResolver resolver);
    
        void setFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
        File getPrimaryOutput();
    
        Collection<NativeDependencySet> getLibs(DependentSourceSet sourceSet);
    
        Collection<NativeLibraryBinary> getDependentBinaries();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            nativeBinary.setTargetPlatform(platform);
            nativeBinary.setBuildType(buildType);
            nativeBinary.setFlavor(flavor);
            nativeBinary.setResolver(resolver);
            nativeBinary.setFileCollectionFactory(fileCollectionFactory);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            this.resolver = resolver;
        }
    
        protected FileCollectionFactory getFileCollectionFactory() {
            return fileCollectionFactory;
        }
    
        @Override
        public void setFileCollectionFactory(FileCollectionFactory fileCollectionFactory) {
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        @Override
        protected BinaryBuildAbility getBinaryBuildAbility() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top