Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notBuildable (0.13 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                private final List<BinarySpecInternal> notBuildable;
    
                public CheckForNotBuildableBinariesAction(List<BinarySpecInternal> notBuildable) {
                    this.notBuildable = notBuildable;
                }
    
                @Override
                public void execute(Task task) {
                    Set<? extends Task> taskDependencies = TaskDependencyUtil.getDependenciesForInternalUse(task.getTaskDependencies(), task);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

                            public boolean isBuildable() {
                                return ! getName().contains("notBuildable");
                            }
    
                            @Override
                            public void explain(${DiagnosticsVisitor.name} visitor) {
                                visitor.node("Binary \${name} has 'notBuildable' in the name")
                            }
                        };
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

        def "hide non-buildable dependents by default #nonBuildables"() {
            given:
            buildScript simpleCppBuild()
            nonBuildables.each { nonBuildable ->
                buildFile << """
                    model {
                        components {
                            $nonBuildable {
                                binaries.all {
                                    buildable = false
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top