Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 649 for sample2 (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="other.gradle.kts[]"]
    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="other.gradle[]"]
    ====
    
    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="build.gradle.kts[tag=script-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Testing plays a crucial role in the development process by ensuring reliable and high-quality software.
    This principle applies to build code, including Gradle plugins.
    
    == The sample project
    
    This section revolves around a sample project called the "URL verifier plugin".
    This plugin creates a task named `verifyUrl` that checks whether a given URL can be resolved via HTTP GET.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-library' )
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            TestFile startScriptDir = file('build/install/sample/bin')
            buildFile << """
    task execStartScript(type: Exec) {
        workingDir '$startScriptDir.canonicalPath'
        commandLine '${PluginTestPreconditions.locate(shCommand).absolutePath}'
        args "./sample"
    }
    """
            if (args.length > 0) {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

                    from(agentsRuntimeClasspath)
                }
            }
        }
    
        /**
         * The binary distribution enriched with source files (including resources) and an offline version of Gradle's documentation (without samples).
         */
        fun Project.allDistributionSpec() = copySpec {
            val sourcesPath by configurations.getting
            val docsPath by configurations.getting
    
            with(binDistributionSpec())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. CODEOWNERS

    /releasenotes/notes
    /samples/                                                        @istio/wg-docs-maintainers-english
    /samples/addons                                                  @istio/wg-policies-and-telemetry-maintainers @istio/wg-environments-maintainers
    /samples/ambient-argo                                            @istio/wg-user-experience-maintainers @istio/wg-networking-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/cache/StringInterner.java

        public StringInterner() {
            this.interner = Interners.newWeakInterner();
        }
    
        @Override
        public String intern(@Nullable String sample) {
            if (sample == null) {
                return null;
            }
            return interner.intern(sample);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

                                    const char* label1, const char* label2);
    
    // -----------------------------------------------------------------------------
    // Monitoring Sampler APIs.
    // These APIs de-templated monitoring Sampler for swig.
    
    typedef struct TFE_MonitoringSamplerCell TFE_MonitoringSamplerCell;
    
    // Atomically add the value of the cell.
    TF_CAPI_EXPORT extern void TFE_MonitoringSamplerCellAdd(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/codenarc_plugin.adoc

    
    [[sec:codenarc_usage]]
    == Usage
    
    To use the CodeNarc plugin, include the following in your build script:
    
    .Using the CodeNarc plugin
    ====
    include::sample[dir="snippets/codeQuality/codeQuality/kotlin",files="build.gradle.kts[tags=use-codenarc-plugin]"]
    include::sample[dir="snippets/codeQuality/codeQuality/groovy",files="build.gradle[tags=use-codenarc-plugin]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 12:08:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    ----
    [source,text]
    ----
    $ cd authoring-tutorial
    ----
    
    Run `gradle init` with parameters to generate a Java application:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    $ gradle init --type java-application  --dsl kotlin
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    $ gradle init --type java-application  --dsl groovy
    ----
    =====
    
    Select defaults for any additional prompts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top