Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hasSource (0.11 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

            getSignatures().add(signature);
        }
    
        private void removeSignature(final Buildable source) {
            getSignatures().removeIf(hasSource(source));
        }
    
        private Predicate<Signature> hasSource(Buildable source) {
            return signature -> signature.getSource().equals(source);
        }
    
        /**
         * Changes the signatory of the signatures.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                        if (isExternalArtifactId(artifact)) {
                            sources.withSource(ModuleDescriptorHashModuleSource.class, hashSource -> {
                                if (hashSource.isPresent()) {
                                    boolean changingModule = requestMetaData.isChanging() || hashSource.get().isChangingModule();
                                    if (!changingModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            """
        }
    
        String generatePomXML(Integer subProjectNumber, DependencyTree dependencyTree) {
            def body = ""
            def isParent = subProjectNumber == null || config.subProjects == 0
            def hasSources = subProjectNumber != null || config.subProjects == 0
            if (isParent) {
                if (config.subProjects != 0) {
                    body += """
                        <modules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. 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