Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,486 for buildable (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomManagedBinaryIntegrationTest.groovy

                    assert sampleBinary.buildable
                }
            }
        }
    }
    '''
            then:
            succeeds "checkModel"
        }
    
        def "can configure managed binary defined by rule method using rule DSL"() {
            when:
            buildWithCustomBinaryPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            checkModel(Task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeNativeProjectIntegrationTest.groovy

            }
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when component product is unbuildable due to operating system"() {
            useXcodebuildTool()
    
            given:
            makeSingleProject()
            buildFile << configureTargetMachines("machines.os('os-family')")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.jvm;
    
    import org.gradle.api.Action;
    import org.gradle.api.Buildable;
    import org.gradle.api.ExtensiblePolymorphicDomainObjectContainer;
    import org.gradle.api.Incubating;
    import org.gradle.api.attributes.TestSuiteType;
    import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactBackedResolvedVariantTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact
    
    import org.gradle.api.Buildable
    import org.gradle.api.artifacts.component.ComponentArtifactIdentifier
    import org.gradle.api.artifacts.component.ModuleComponentIdentifier
    import org.gradle.api.artifacts.component.ProjectComponentIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeSoftwareModelParallelIntegrationTest.groovy

            withComponentsForAppAndLib("shared")
        }
    
        def withComponentsForAppAndLib(String libType) {
            buildFile << app.pluginScript
            buildFile << app.getExtraConfiguration("mainExecutable")
            buildFile << app.getExtraConfiguration("mainLib${libType.capitalize()}Library")
            buildFile << """
                model {
                    components {
                        main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsGraphRenderer.java

                    if (dep.isTestSuite()) {
                        output.withStyle(Info).text(" (t)");
                        seenTestSuite = true;
                    }
                    if (!dep.isBuildable()) {
                        output.withStyle(Info).text(" NOT BUILDABLE");
                    }
                }
            }
        }
    
        private static class ShowDependentPredicate implements Predicate<RenderableDependency> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 4.7K bytes
    - Viewed (0)
Back to top