Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for unbuildable (0.23 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/AbstractDependentBinariesResolutionStrategy.java

            DependentBinariesResolvedResult root = new DefaultDependentBinariesResolvedResult(
                target.getId(),
                target.getProjectScopedName(),
                target.isBuildable(),
                isTestSuite(target),
                resolveDependents(target)
            );
            return new DefaultDependentBinariesResolutionResult(root);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.resources;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.InputFiles;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Model.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    // TODO:ADAM - Deprecate
    /**
     * A model that is buildable by the Tooling API. Models contain various information regarding the build.
     * Models are typically tailored to a specific domain, for example build environment or IDE.
     *
     * @since 1.0-milestone-8
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 938 bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileTreeAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.file.FileTree;
    import org.gradle.api.file.FileVisitor;
    import org.gradle.api.internal.file.AbstractFileTree;
    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

        private void addSignature(Signature signature) {
            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)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ToolSearchBuildAbility.java

        final ToolSearchResult result;
    
        public ToolSearchBuildAbility(ToolSearchResult result) {
            this.result = result;
        }
    
        @Override
        public boolean isBuildable() {
            return result.isAvailable();
        }
    
        @Override
        public void explain(DiagnosticsVisitor visitor) {
            result.explain(visitor);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectMetadata.java

            return CollectionUtils.collect(
                project.getConfigurations(),
                configuration -> new VisualStudioProjectConfigurationMetadata(configuration.getName(), configuration.isBuildable())
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 16:55:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks;
    
    import com.google.common.collect.ImmutableSet;
    import groovy.lang.Closure;
    import org.gradle.api.Buildable;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.Task;
    import org.gradle.api.internal.provider.ProviderInternal;
    import org.gradle.api.internal.provider.ValueSupplier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileCollection.java

     */
    package org.gradle.api.internal.file.collections;
    
    /**
     * A minimal file collection. An implementation can optionally also implement the following interfaces:
     *
     * <ul>
     * <li>{@link org.gradle.api.Buildable}</li>
     * <li>{@link RandomAccessFileCollection}</li>
     * </ul>
     */
    public interface MinimalFileCollection {
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 963 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            taskAction2.execute(null)
    
            then:
            0 * mapping1.apply(_)
            1 * mapping2.apply(_) >> Mock(DirectoryProperty)
        }
    
        Set<Task> dependencies(Buildable buildable) {
            return buildable.buildDependencies.getDependencies(null)
        }
    
        FileCollection dir(String dirPath, Task builtBy) {
            def collection = fileCollectionFactory.configurableFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
Back to top