Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for BUILDABLE (0.15 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileCollectionAdapterTest.groovy

     * 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.internal.tasks.TaskDependencyResolveContext
    import spock.lang.Specification
    
    class FileCollectionAdapterTest extends Specification {
    
        def delegatesToTargetCollectionToBuildSetOfFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            withLibBinaries("notBuildableBinary1", "notBuildableBinary2")
            withStandaloneBinaries("ignoreMe")
    
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - SampleBinary 'lib:notBuildableBinary1':
    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/PlatformNativeComponentReportIntegrationTest.groovy

                    srcDir: src/staticLibrary/moreCpp
    """
        }
    
        @RequiresInstalledToolChain
        @ToBeFixedForConfigurationCache(because = ":components")
        def "shows details of native C++ library that is not buildable"() {
            given:
            buildFile << """
    plugins {
        id 'cpp'
    }
    
    model {
        platforms {
            windows { operatingSystem 'windows'; architecture 'sparc' }
        }
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileCollectionAdapter.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.internal.file.AbstractOpaqueFileCollection;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioProject.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.visualstudio;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Buildable;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * A {@code SelfResolvingDependency} is a {@link Dependency} which is able to resolve itself, independent of a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

    )
    """
            // In Swift PM 5.0+ an error is thrown when there is no buildable target, let's ignore this specific failure for backward compatibility
            if (swiftc.version.compareTo(VersionNumber.parse("5.0")) < 0) {
                swiftPmBuildSucceeds()
            } else {
                def result = swiftPmBuildFails()
                result.out.contains("the package does not contain a buildable target")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/StaticValue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.properties;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.Task;
    import org.gradle.api.internal.provider.HasConfigurableValueInternal;
    import org.gradle.api.internal.provider.PropertyInternal;
    import org.gradle.api.internal.tasks.TaskDependencyContainer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileTreeAdapterTest.groovy

     * 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.FileVisitor
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.api.tasks.util.PatternFilterable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioSolution.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.visualstudio;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.tasks.Internal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top