Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 726 for Manifest (0.2 sec)

  1. pkg/test/framework/components/istio/installer.go

    	}
    	for clusterName, manifests := range i.manifests {
    		clusterDir := path.Join(manifestsDir, clusterName)
    		if err := os.Mkdir(manifestsDir, 0o700); err != nil {
    			scopes.Framework.Errorf("Unable to create directory for dumping %s install manifests: %v", clusterName, err)
    		}
    		for i, manifest := range manifests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/jvm/JavaModuleDetectorTest.groovy

                    } else if (entry.startsWith('mrjar')) {
                        jar << JarUtils.jarWithContents(('META-INF/MANIFEST.MF'): manifest.join('\n') + '\n', ('META-INF/versions/10/module-info.class'): '')
                    } else {
                        jar << JarUtils.jarWithContents(('META-INF/MANIFEST.MF'): manifest.join('\n') + '\n')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 07 13:50:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.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)
            }
            new JarOutputStream(jarfile.newOutputStream(), manifest).close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

                    )
                }
            }
        }
    
        private ByteArrayOutputStream getManifestByteStream(Map<String, Object> attributesMap) {
            def manifest = new Manifest()
            def mainAttributes = manifest.getMainAttributes()
            mainAttributes.put(Attributes.Name.MANIFEST_VERSION, "1.0")
            populateAttributes(mainAttributes, attributesMap)
            attributesMap.each { name, value ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

        private static boolean isManifestFile(final String name) {
            return name.equals("META-INF/MANIFEST.MF");
        }
    
        private HashCode hashManifest(InputStream inputStream) throws IOException {
            Manifest manifest = new Manifest(inputStream);
            Hasher hasher = Hashing.newHasher();
            Attributes mainAttributes = manifest.getMainAttributes();
            hashManifestAttributes(mainAttributes, "main", hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. operator/pkg/tpath/util_test.go

    	}
    }
    
    func TestGetConfigSubtree(t *testing.T) {
    	tests := []struct {
    		desc     string
    		manifest string
    		path     string
    		expect   string
    		err      bool
    	}{
    		{
    			desc:     "empty",
    			manifest: ``,
    			path:     ``,
    			expect: `{}
    `,
    			err: false,
    		},
    		{
    			desc: "subtree",
    			manifest: `
    a:
      b:
      - name: n1
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 09:06:29 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project2/1.0/project2-1.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project3/1.0/project3-1.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top