Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Packaged (0.38 sec)

  1. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/README.adoc

    This sample shows how to create a plugin with a task that accepts arguments.
    The plugin is packaged via an included build.
    
    ====
    include::sample[dir="kotlin",files="build.gradle.kts[];settings.gradle.kts[]"]
    include::sample[dir="groovy",files="build.gradle[];settings.gradle[]"]
    ====
    
    To execute the sample task:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1020 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
    # org.gradle.parallel=true
    # AndroidX package structure to make it clearer which packages are bundled with the
    # Android operating system, and which are packaged with your app's APK
    # https://developer.android.com/topic/libraries/support-library/androidx-rn
    android.useAndroidX=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                    add("$groovyGroup:groovy-templates") {
                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a common registration function for mapping packaged scoped group & version keys to a scheme.
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramParser.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.execution
    
    import org.gradle.kotlin.dsl.support.compilerMessageFor
    import org.jetbrains.kotlin.utils.addIfNotNull
    
    
    object ProgramParser {
    
        fun parse(source: ProgramSource, kind: ProgramKind, target: ProgramTarget): Packaged<Program> = try {
            programFor(source, kind, target)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

     */
    @ServiceScope(Scope.Global.class)
    public interface ModuleRegistry {
        /**
         * Locates an external module by name. An external module is one for which there is no meta-data available. Assumed to be packaged as a single jar file, and to have no runtime dependencies.
         *
         * @return the module. Does not return null.
         */
        Module getExternalModule(String name) throws UnknownModuleException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.work;
    
    import org.gradle.internal.resources.ResourceLock;
    
    /**
     * Used to obtain and release worker leases to run work. There are a limited number of leases available and this service is used to allocate these to worker threads.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeActionExecutor.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildTreeActionExecutor {
        /**
         * Runs the given action and returns the result. Failures should be packaged in the result.
         * When this method returns, all user code will have completed, including 'build finished' hooks.
         */
        BuildActionRunner.Result execute(BuildAction action, BuildTreeContext buildTreeContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String MODULAR_PROCESSOR = "modular-processor";
    
        /**
         * Artifact type name for source code packaged in a JAR file.
         */
        String JAVA_SOURCE = "java-source";
    
        /**
         * Artifact type name for javadoc packaged in a JAR file.
         */
        String JAVADOC = "javadoc";
    
        /**
         * Artifact type name for a Maven plugin.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

    /**
     * Interface that can be provided by the plugin to wire in custom lifecycles
     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
     * the file and return the contained lifecycle definitions.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top