Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for Packaged (0.17 sec)

  1. 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)
  2. cluster/gce/gci/flexvolume_node_setup.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Sets up FlexVolume drivers on GCE COS instances using mounting utilities packaged in a Google
    # Container Registry image.
    # The user-provided FlexVolume driver(s) must be under /flexvolume of the image filesystem.
    # For example, the driver k8s/nfs must be located at /flexvolume/k8s~nfs/nfs .
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    you should look to the Redistributor's license for terms and conditions of use. ASM 4.1 The plug-in includes software developed by the ObjectWeb consortium as part of the ASM project at http://asm.ow2.org/ http://asm.ow2.org/. A subset of ASM is re-packaged within the source and binary of the plug-in (org.eclipse.sisu.space.asm.*) to avoid version collisions with other usage and is also available from the plug-in's github repository. Your use of the ASM code is subject to the terms and conditions of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/svn.go

    // URL for that port by sending an HTTP request with the query parameter
    // "vcwebsvn=1".
    //
    // We take this approach because the 'svn' protocol is implemented by a
    // lightweight 'svnserve' binary that is usually packaged along with the 'svn'
    // client binary, whereas only known implementation of the Subversion HTTP
    // protocol is the mod_dav_svn apache2 module. Apache2 has a lot of dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top