Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for Packaged (0.25 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

     * case involves excluding classes whose package begins 'some.unwanted.package' from
     * compilation of the source files in the 'java' {@link SourceDirectorySet}:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * sourceSets {
     *   main {
     *     java {
     *       exclude 'some/unwanted/package/**'
     *     }
     *   }
     * }
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. README.md

    combined with best-of-breed ideas and practices from the community.
    
    Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).
    If your company wants to help shape the evolution of
    technologies that are container-packaged, dynamically scheduled,
    and microservices-oriented, consider joining the CNCF.
    For details about who's involved and how Kubernetes plays a role,
    read the CNCF [announcement].
    
    ----
    
    ## To start using K8s
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
                    // Created a result which may contain failures. Combine this failure with any failures that happen to be packaged in the result
                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

         *
         * <p>Build failures should be packaged in the returned result, rather than thrown.
         */
        Result run(BuildAction action, BuildTreeLifecycleController buildController);
    
        /**
         * Packages up the result of a {@link BuildAction}, either success plus an optional result object, or failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    You can view the test report by opening the HTML output file, located at `${subprojectName.raw}/build/reports/tests/test/index.html`.
    
    You can find your newly packaged JAR file in the `${subprojectName.raw}/build/libs` directory with the name `${subprojectName.raw}.jar`.
    Verify that the archive is valid by running the following command:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/v1/PrecompiledScriptTemplates.kt

     * A precompiled script is a script compiled as part of a regular Kotlin source-set and distributed
     * in the usual way, java class files packaged in some library, meant to be consumed as a binary
     * Gradle plugin.
     *
     * The Gradle plugin id by which the precompiled script can be referenced is derived from its name
     * and package declaration - if any - in the following fashion:
     *
     * ```kotlin
     *     fun pluginIdFor(script: File, packageName: String?) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    [[sec:the_plugin_id]]
    == Setting the plugin ID
    
    The plugin ID for a precompiled script is derived from its file name and optional package declaration.
    
    For example, a script named `code-quality.gradle(.kts)` located in `src/main/groovy` (or `src/main/kotlin`) without a package declaration would be exposed as the `code-quality` plugin:
    
    [source,kotlin]
    ----
    plugins {
        id("code-quality")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    plugins {
        application
        id("com.gradle.plugin.my-convention-plugin") // Apply the new plugin
    }
    ----
    
    == Binary Plugins
    
    A binary plugin is a plugin that is implemented in a compiled language and is packaged as a JAR file.
    It is resolved as a dependency rather than compiled from source.
    
    For most use cases, convention plugins must be updated infrequently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. build/lib/release.sh

      kube::release::create_tarball "${package_name}" "${release_stage}/.."
    }
    
    # Build a release tarball.  $1 is the output tar name.  $2 is the base directory
    # of the files to be packaged.  This assumes that ${2}/kubernetes is what is
    # being packaged.
    function kube::release::create_tarball() {
      kube::build::ensure_tar
    
      local tarfile=$1
      local stagingdir=$2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

         * listeners of the given type. This is done synchronously. Any listener method with a non-void return type will return a null.
         * Exceptions are propagated, and multiple failures are packaged up in a {@link ListenerNotificationException}.
         *
         * <p>A listener is used by a single thread at a time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top