Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for BUILDABLE (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppComponent.java

         */
        String getName();
    
        /**
         * All binaries buildable for this component. These will implement {@link CppExecutable}, {@link CppSharedLibrary} or {@link CppStaticLibrary}.
         */
        DomainObjectSet<? extends CppBinary> getBinaries();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/dist/supported_test.go

    import (
    	"internal/platform"
    	"testing"
    )
    
    // TestSupported tests that dist and the main tools agree on
    // which build modes are supported for a given target. We do things
    // this way because the dist tool needs to be buildable directly by
    // the bootstrap compiler, and as such can't import internal packages.
    func TestSupported(t *testing.T) {
    	defer func(a, o string) {
    		goarch = a
    		goos = o
    	}(goarch, goos)
    
    	var modes = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinarySpecInternal.java

         * Returns a name for this binary that is unique for all binaries in the current project.
         */
        String getProjectScopedName();
    
        Class<? extends BinarySpec> getPublicType();
    
        void setBuildable(boolean buildable);
    
        BinaryBuildAbility getBuildAbility();
    
        boolean isLegacyBinary();
    
        BinaryNamingScheme getNamingScheme();
    
        void setNamingScheme(BinaryNamingScheme namingScheme);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/TaskDependencyResolveContext.java

         *
         * <li>{@link org.gradle.api.tasks.TaskDependency}</li>
         *
         * <li>{@link org.gradle.api.internal.tasks.TaskDependencyContainer}</li>
         *
         * <li>{@link org.gradle.api.Buildable}</li>
         *
         * <li>{@link TransformNodeDependency}</li>
         *
         * <li>{@link WorkNodeAction}</li>
         *
         * </ul>
         */
        void add(Object dependency);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectPublicationRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.Collection;
    
    /**
     * A build scoped service that collects information on the local "publications" of each project within a build. A "publication" here means some buildable thing that the project produces that can be consumed outside of the project.
     *
     * The information is gathered from multiple sources ({@code publishing.publications} container, etc.).
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/DefaultPropertyWalker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.properties.bean;
    
    import com.google.common.base.Suppliers;
    import org.gradle.api.Buildable;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.internal.provider.HasConfigurableValueInternal;
    import org.gradle.api.internal.tasks.TaskDependencyContainer;
    import org.gradle.api.provider.HasConfigurableValue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top