Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasSource (0.1 sec)

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

                return "Link files for " + DefaultSharedLibraryBinarySpec.this.getDisplayName();
            }
    
            @Override
            protected boolean hasOutputs() {
                return hasSources() && !isResourceOnly();
            }
    
            @Override
            protected Set<File> getOutputs() {
                return Collections.singleton(getSharedLibraryLinkFile());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpec.java

            }
    
            @Override
            protected boolean hasOutputs() {
                return hasSources() || !additionalLinkFiles.isEmpty();
            }
    
            @Override
            protected Set<File> getOutputs() {
                Set<File> allFiles = new LinkedHashSet<File>();
                if (hasSources()) {
                    allFiles.add(getStaticLibraryFile());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeLibraryBinarySpec.java

            return getComponentAs(NativeLibrarySpec.class);
        }
    
        @Override
        public NativeLibrarySpec getLibrary() {
            return getComponentAs(NativeLibrarySpec.class);
        }
    
        protected boolean hasSources() {
            for (LanguageSourceSet sourceSet : getInputs()) {
                if (!sourceSet.getSource().isEmpty()) {
                    return true;
                }
                if (sourceSet.hasBuildDependencies()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top