Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 726 for Manifest (0.18 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android">
    
        <application
            android:allowBackup="true"
            android:supportsRtl="true">
        </application>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 190 bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

            given:
            def original = jar(testDir.file("original.jar")) {
                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
            def transformed = jar(testDir.file("transformed.jar")) {
                manifest {}
    
                entry("Foo.class", INSTRUMENTED_CLASS)
            }
    
            TransformedClassPath cp = classPath((original): transformed)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    ----
    
    Now view the contents of the `META-INF/MANIFEST.MF` file and you should see the following:
    
    [source,mf]
    .META-INF/MANIFEST.MF
    ----
    Manifest-Version: 1.0
    Implementation-Title: ${subprojectName.raw}
    Implementation-Version: 0.1.0
    ----
    
    == Generating Sources JAR
    
    You can easily generate a sources JAR for your library:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            jarFile.delete()
    
            and:
            configurationCacheRun ':app:jar'
    
            then:
            assertStateLoaded()
    
            and:
            def manifest = new JarTestFixture(jarFile).manifest
            manifest.mainAttributes.getValue('Class-Path') == 'lib.jar'
        }
    
        def buildWithSingleSourceFile() {
            settingsFile << """
                rootProject.name = 'somelib'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeSpec.java

            for (Object mergePath : mergePaths) {
                Manifest manifestToMerge = createManifest(mergePath, fileResolver, contentCharset);
                mergedManifest = mergeManifest(mergedManifest, manifestToMerge, fileResolver);
            }
            return mergedManifest;
        }
    
        private DefaultManifest mergeManifest(Manifest baseManifest, Manifest toMergeManifest, PathToFileResolver fileResolver) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		fmt.Printf("[upgrade/staticpods] Restarting the %s static pod and backing up its manifest to %q\n",
    			component, backupManifestPath)
    	} else {
    		fmt.Printf("[upgrade/staticpods] Moving new manifest to %q and backing up old manifest to %q\n",
    			currentManifestPath, backupManifestPath)
    	}
    
    	// Move the old manifest into the old-manifests directory
    	if err := pathMgr.MoveFile(currentManifestPath, backupManifestPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/proxy/manifests.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    const (
    	// KubeProxyConfigMap19 is the proxy ConfigMap manifest for Kubernetes 1.9 and above
    	KubeProxyConfigMap19 = `
    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: {{ .ProxyConfigMap }}
      namespace: kube-system
      labels:
        app: kube-proxy
    data:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 06:51:57 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    		expectedError   bool
    	}{
    		{
    			name:            "valid: run diff with empty config path on valid manifest path",
    			cfgPath:         "",
    			setManifestPath: true,
    			manifestPath:    testUpgradeDiffManifest,
    			expectedError:   false,
    		},
    		{
    			name:            "valid: run diff on valid manifest path",
    			cfgPath:         testUpgradeDiffConfig,
    			setManifestPath: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

    import java.util.jar.JarEntry
    import java.util.jar.JarFile
    import java.util.jar.Manifest
    
    class JarTestFixture extends ZipTestFixture {
        File file
    
        private final Lazy<Manifest> theManifest = Lazy.atomic().of {
            new Manifest(IOUtils.toInputStream(content('META-INF/MANIFEST.MF'), contentCharset as String))
        }
    
        /**
         * Asserts that the Jar file is well-formed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top