Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 726 for Manifest (0.42 sec)

  1. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestException.java

     */
    package org.gradle.api.java.archives;
    
    import org.gradle.api.GradleException;
    
    /**
     * Is thrown in the case an operation is applied against a {@link org.gradle.api.java.archives.Manifest} that violates
     * the Manifest specification.
     */
    public class ManifestException extends GradleException {
        public ManifestException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. cluster/images/etcd/Makefile

    all-push: all-push-images push-manifest
    
    push-manifest:
    	docker manifest create --amend $(MANIFEST_IMAGE):$(IMAGE_TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(MANIFEST_IMAGE):$(IMAGE_TAG)\-&~g")
    	set -x; for arch in $(ALL_ARCH.linux); do docker manifest annotate --os linux --arch $${arch} ${MANIFEST_IMAGE}:${IMAGE_TAG} ${MANIFEST_IMAGE}:${IMAGE_TAG}-linux-$${arch}; done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                def manifest = new Manifest()
                def mainAttributes = manifest.getMainAttributes()
                mainAttributes.put(Attributes.Name.MANIFEST_VERSION, "1.0")
                attributes.each {name, value ->
                    mainAttributes.put(new Attributes.Name(name), value)
                }
                backingFile.withOutputStream {os ->
                    manifest.write(os)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceAgainstJarIntegrationSpec.groovy

    import spock.lang.Issue
    
    @SelfType(AbstractJavaGroovyCompileAvoidanceIntegrationSpec)
    trait AbstractJavaGroovyCompileAvoidanceAgainstJarIntegrationSpec {
        def "doesn't recompile when implementation manifest is changed"() {
            given:
            buildFile << """
                project(':b') {
                    dependencies {
                        implementation project(':a')
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. maven-compat/src/test/remote-repo/org/apache/maven/its/b/0.1/b-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/org.apache.maven.its/b/pom.xml 4.0.0 org.apache.maven.its b 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo org.apache.maven.its a 0.1 META-INF/maven/org.apache.maven.its/b/pom.properties #Generated by Maven #Sat Oct 24 00:28:17 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=b...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 1.9K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

            configuration.elements.map { classpathDependency ->
                classpathDependency.joinToString(" ") { it.asFile.name }
            }
        }
        manifest.attributes("Class-Path" to classpath)
        if (app.mainClassName.isPresent) {
            manifest.attributes("Main-Class" to app.mainClassName)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

                .forwardOutput()
                .build()
    
            then: "version numbers exist in the manifest"
            assertJarManifestContains("Import-Package", "org.apache.commons.lang3;version=\"$calculatedCommonsVersionRange\"")
        }
    
        def "BND plugin writes transitive external dependency versions of a direct project dependency to the manifest"() {
            given:
            def commonsVersion = "3.12.0"
            def directVersion = "2.7-SNAPSHOT"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/pluginVersions/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils_linux.go

    )
    
    type pathOwnerAndPermissionsUpdaterFunc func(path string, uid, gid int64, perms uint32) error
    type pathOwnerUpdaterFunc func(path string, uid, gid int64) error
    
    // RunComponentAsNonRoot updates the pod manifest and the hostVolume permissions to run as non root.
    func RunComponentAsNonRoot(componentName string, pod *v1.Pod, usersAndGroups *users.UsersAndGroups, cfg *kubeadmapi.ClusterConfiguration) error {
    	switch componentName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top