Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Source (0.64 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                        computationBroadcaster.getSource().beforeValueObtained();
                        try {
                            ValueSource<T, P> source = source();
                            sourceRef.set(source);
                            return source.obtain();
                        } finally {
                            computationBroadcaster.getSource().afterValueObtained();
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

            private final ModelType<T> internalView;
    
            private InternalViewRegistration(ModelRuleDescriptor source, ModelType<T> internalView) {
                this.source = source;
                this.internalView = internalView;
            }
    
            public ModelRuleDescriptor getSource() {
                return source;
            }
    
            public ModelType<T> getInternalView() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

        }
    
        /**
         * Creates a new rule source instance to be applied to a model element.
         *
         * @throws InvalidModelRuleDeclarationException On badly formed rule source class.
         */
        public <T> ExtractedRuleSource<T> extract(Class<T> source) throws InvalidModelRuleDeclarationException {
            try {
                return cache.get(source).newInstance(source);
            } catch (ExecutionException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

            return Optional.empty();
        }
    
        /**
         * Some representation of a source of files.
         */
        interface Source {
        }
    
        /**
         * An opaque source of files.
         */
        Source OTHER = new Source() {
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileCollection.java

            private final FileCollectionExecutionTimeValue source;
            private final Spec<? super File> filter;
    
            public FilteredExecutionTimeValue(FileCollectionExecutionTimeValue source, Spec<? super File> filter) {
                this.source = source;
                this.filter = filter;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

        public ConventionAwareHelper(IConventionAware source, org.gradle.api.plugins.Convention convention) {
            this._source = source;
            this._convention = convention;
            this._propertyNames = JavaPropertyReflectionUtil.propertyNames(source);
            this._ineligiblePropertyNames = new HashSet<>();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

        @Override
        public void visitContentsAsFileTrees(Consumer<FileTreeInternal> visitor) {
            visitContents(new FileCollectionStructureVisitor() {
                @Override
                public void visitCollection(Source source, Iterable<File> contents) {
                    throw new UnsupportedOperationException("Should not be called");
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

        }
    
        @Override
        public FileCollectionInternal resolvingLeniently(Object sources) {
            return resolving(ProviderResolutionStrategy.ALLOW_ABSENT, sources);
        }
    
        private FileCollectionInternal resolving(ProviderResolutionStrategy providerResolutionStrategy, Object sources) {
            if (sources instanceof FileCollectionInternal) {
                return (FileCollectionInternal) sources;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

                    }
                    return true;
                }
    
                @Override
                public VisitType prepareForVisit(Source source) {
                    return VisitType.NoContents;
                }
    
                @Override
                public void visitCollection(Source source, Iterable<File> contents) {
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                options.addStringOption("source", "8");
                options.tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:");
                // TODO: This breaks the provider
                options.links(javadocs.getJavaApi().get().toString(), javadocs.getGroovyApi().get().toString());
    
                task.source(extension.getDocumentedSource().filter(f -> f.getName().endsWith(".java")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top