Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 603 for mainTest (0.12 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/ManifestInternal.java

         */
        void setContentCharset(String contentCharset);
    
        /**
         * Writes the manifest into a stream.
         *
         * The manifest will be encoded using the character set defined by the {@link #getContentCharset()} property.
         *
         * @param outputStream The stream to write the manifest to
         * @return this
         */
        Manifest writeTo(OutputStream outputStream);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    )
    
    func TestCompileManifests(t *testing.T) {
    	var tests = []struct {
    		name     string
    		manifest string
    		data     interface{}
    	}{
    		{
    			name:     "KubeProxyConfigMap19",
    			manifest: KubeProxyConfigMap19,
    			data: struct {
    				ControlPlaneEndpoint, ProxyConfig, ProxyConfigMap, ProxyConfigMapKey string
    			}{
    				ControlPlaneEndpoint: "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/gce/gci/configure_helper_test.go

    		c.t.Fatalf("Failed to copy source manifest to KUBE_HOME: %v", err)
    	}
    }
    
    func (c *ManifestTestCase) mustCopyAuxFromTemplate() {
    	for _, m := range c.auxManifests {
    		err := copyFile(filepath.Join(c.manifestTemplateDir, m), filepath.Join(c.manifestSources, m))
    		if err != nil {
    			c.t.Fatalf("Failed to copy source manifest %s to KUBE_HOME: %v", m, err)
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top