- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 174 for rendered (0.16 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java
import java.io.File; import java.util.Collections; import java.util.HashMap; import java.util.Map; /** * Takes a rendered release notes HTML file and decorates it with extra elements/content/links. */ @CacheableTask public abstract class DecorateReleaseNotes extends DefaultTask { /** * The rendered HTML release notes that need decoration. */ @InputFile @PathSensitive(PathSensitivity.NONE)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 28 06:35:15 UTC 2021 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
*/ public abstract DirectoryProperty getStagingRoot(); /** * The final location to place all rendered documentation. */ public abstract DirectoryProperty getDocumentationRenderedRoot(); /** * The collection of rendered documentation. This is everything laid out as it would be deployed/packaged. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DslReference.java
*/ public abstract DirectoryProperty getStagingRoot(); public abstract RegularFileProperty getGeneratedMetaDataFile(); /** * The fully rendered documentation with all of its necessary resources. */ public abstract ConfigurableFileCollection getRenderedDocumentation();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java
OutputStreamWriter outputStream = new OutputStreamWriter(new FileOutputStream(destination), outputEncoding)) { String html = renderer.render(parser.parseReader(inputStream)); outputStream.write(html); } catch (IOException e) { throw new UncheckedIOException(e); } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java
public abstract Property<URI> getGroovyApi(); /** * The CSS file to style Javadocs with */ public abstract RegularFileProperty getJavadocCss(); /** * A collection of the final rendered Javaodcs */ public abstract ConfigurableFileCollection getRenderedDocumentation();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 17 08:08:46 UTC 2023 - 1.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/KotlinDslReference.java
import org.gradle.api.provider.Property; /** * Configuration for generating Dokka based Kotlin DSL docs. */ public abstract class KotlinDslReference { /** * The location of the final rendered Dokka content. */ public abstract DirectoryProperty getRenderedDocumentation(); /** * The Dokka version to use instead the default one Dokkatoo is configured with.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jan 15 14:00:14 UTC 2024 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java
/** * The Jquery file to include in the release notes. */ public abstract ConfigurableFileCollection getJquery(); // TODO: Need staging root property too /** * The collection of rendered documentation. */ public abstract RegularFileProperty getRenderedDocumentation();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java
/** * Additional resources to include in the final docs */ public abstract ConfigurableFileCollection getResources(); /** * A collection of the final rendered user manual */ public abstract ConfigurableFileCollection getRenderedDocumentation();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.7K bytes - Viewed (0) -
architecture/environments/operator.md
profile defaults and user overlays, all expressed in Helm values.yaml format. This final values.yaml configuration is passed to the Helm rendering library and used to render the charts. The rendered manifests are passed to the next step. 1. Overlays in the user CR are applied to the rendered manifests. No values are ever defined in configuration profile CRs at this layer, so no merge is performed in this step. ## CLI
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 13.2K bytes - Viewed (0) -
manifests/addons/gen.sh
# See the License for the specific language governing permissions and # limitations under the License. WD=$(dirname "$0") WD=$(cd "$WD"; pwd) set -eux # This script sets up the plain text rendered deployments for addons # See samples/addons/README.md for more information ADDONS="${WD}/../../samples/addons" DASHBOARDS="${WD}/dashboards" mkdir -p "${ADDONS}" TMP=$(mktemp -d)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Nov 03 18:01:40 UTC 2024 - 3.5K bytes - Viewed (0)