Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(ProjectInternal.STATUS_ATTRIBUTE, "release")
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "a library for use during compile-time, with a release status, compatible with Java 11, packaged as a jar"
        }
    
        def "describes a library with MAX_VALUE target JVM version"() {
            when:
            attributes.attribute(Usage.USAGE_ATTRIBUTE, named(Usage, "java-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

       > Could not resolve org.lwjgl:lwjgl:3.2.3.
         Required by:
             project :
          > The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, preferably optimized for standard JVMs, and its dependencies declared externally, as well as attribute 'org.gradle.native.operatingSystem' with value 'windows'. There are several available matching variants of org.lwjgl:lwjgl:3.2.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecuter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks;
    
    import org.gradle.api.internal.TaskInternal;
    
    public interface TaskExecuter {
        /**
         * Executes the given task. If the task fails with an exception, the exception is packaged in the provided task
         * state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 14 23:22:35 UTC 2018
    - 988 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeContext.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import org.gradle.internal.invocation.BuildAction;
    
    public interface BuildTreeContext {
        /**
         * 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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 14 23:28:03 UTC 2021
    - 1019 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a common registration function for mapping packaged scoped group & version keys to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes adds the list of known types to api.Scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 19:57:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. pkg/apis/authentication/v1alpha1/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	authenticationv1alpha1 "k8s.io/api/authentication/v1alpha1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "authentication.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. pkg/apis/scheduling/v1beta1/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	schedulingv1beta1 "k8s.io/api/scheduling/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "scheduling.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top