Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 224 for content_es (0.08 sec)

  1. platforms/documentation/docs/src/snippets/base/distribution/kotlin/build.gradle.kts

    plugins {
        distribution
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = "someName"
            distributionClassifier = "classifier"
            contents {
                from("src/readme")
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        create("custom") {
            // configure custom distribution
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/OverlappingOutputsFilterTest.groovy

        }
    
        private static FileSystemLocationSnapshot directorySnapshot(RegularFileSnapshot... contents) {
            def builder = MerkleDirectorySnapshotBuilder.sortingRequired()
            builder.enterDirectory(FileMetadata.AccessType.DIRECT, "/absolute", "absolute", INCLUDE_EMPTY_DIRS)
            contents.each {
                builder.visitLeafElement(it)
            }
            builder.leaveDirectory()
            return builder.result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

            private final List<File> sourceRoots = new ArrayList<>();
    
            @Override
            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                cannotInferSourceRoots(contents);
            }
    
            @Override
            public void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

            this.shellPath = shellPath;
        }
    
        /**
         * Gets the contents of the shell script to execute under the shell
         * returned by {@link #getShellPath()}.
         */
        @Nullable
        public String getShellScript() {
            return shellScript;
        }
    
        /**
         * Sets the contents of the script to execute.
         */
        public void setShellScript(String shellScript) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * fileResolver.resolve("src1") >> file1
            1 * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
        }
    
        def "can use a file collection with changing contents to specify the contents of the collection"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def src = Mock(MinimalFileSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

        type 'rpm'
        builtBy 'rpm'
    }
    // end::custom-artifact[]
    
    tasks.register('rpm') {
        outputs.file rpmFile
        doLast {
            // produce real RPM here
            rpmFile.get().asFile << 'file contents'
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
        }
    // end::custom-artifact-publication[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.ApplicationPluginConvention.xml

                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>applicationDistribution</td>
                    <td>A copy spec that includes all of the contents of <literal>src/dist</literal>, copies the start scripts into <literal>bin</literal>, and copies the built jar and all dependencies into <literal>lib</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

        outputs.dir(docs)
        doLast {
            docs.get().asFile.mkdirs()
            docs.get().file("readme.txt").asFile.writeText("Read me!")
        }
    }
    
    distributions {
        main {
            contents {
                from(createDocs) {
                    into("docs")
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathFingerprintCompareStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    /**
     * Compares by absolute paths and file contents. Order does not matter.
     */
    public class AbsolutePathFingerprintCompareStrategy extends AbstractFingerprintCompareStrategy {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/ReadableContent.java

    import java.io.InputStream;
    
    /**
     * Some resource content with a known length.
     */
    public interface ReadableContent {
        /**
         * Unbuffered input stream to read contents of resource.
         */
        InputStream open() throws ResourceException;
    
        long getContentLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 984 bytes
    - Viewed (0)
Back to top