Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for BUILDABLE (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.file;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.tasks.util.PatternFilterable;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>A {@link FileTree} with a single base directory, which can be configured and modified.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/SourceSetNativeDependencyResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.resolve;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.file.collections.MinimalFileSet;
    import org.gradle.api.tasks.TaskDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/UnpackingVisitor.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.collections;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.Buildable;
    import org.gradle.api.Task;
    import org.gradle.api.file.DirectoryTree;
    import org.gradle.api.internal.file.AbstractOpaqueFileCollection;
    import org.gradle.api.internal.file.CompositeFileCollection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.BinarySpec.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>buildable</td>
                </tr>
                <tr>
                    <td>sources</td>
                </tr>
                <tr>
                    <td>inputs</td>
                </tr>
                <tr>
                    <td>tasks</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 717 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            }
            another(NativeLibrarySpec) {
                binaries.all { buildable = false }
            }
        }
    }
    """
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - shared library 'another:sharedLibrary': Disabled by user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                }
                if (hiddenNonBuildable) {
                    output.withStyle(Info).println("Some non-buildable components were not shown, use --non-buildable or --all to show them.");
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

                def configurationMetadata = Stub(VisualStudioProjectConfigurationMetadata)
                configurationMetadata.name >> "$it|Win32"
                configurationMetadata.buildable >> buildable
                return configurationMetadata
            }
            return metadata
        }
    
        private SolutionFile getGeneratedSolution() {
            TestFile file = getGeneratedSolutionFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. 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)
Back to top