Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 726 for Manifest (0.17 sec)

  1. pkg/test/fakes/imageregistry/main.go

    	}
    
    	manifest, err := partial.Manifest(desc)
    	if err != nil {
    		return "", fmt.Errorf("failed to get manifest: %v", err)
    	}
    	if len(manifest.Layers) != 1 {
    		return "", fmt.Errorf("docker image does not have one layer (got %v)", len(manifest.Layers))
    	}
    
    	return fmt.Sprintf("https://%v/v2/%v/blobs/%v", *registry, imageName, manifest.Layers[0].Digest.String()), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

                throw new RuntimeException(e);
            }
            return false;
        }
    
        private boolean containsMultiReleaseJarEntry(JarInputStream jarStream) {
            Manifest manifest = jarStream.getManifest();
            return manifest != null && Boolean.parseBoolean(manifest.getMainAttributes().getValue("Multi-Release"));
        }
    
        private boolean isAutoModule(File jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/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)
  4. operator/pkg/metrics/monitoring.go

    		"Number of times K8S patch overlays failed",
    	)
    
    	// ManifestRenderErrorTotal counts errors occurred while rendering manifest.
    	ManifestRenderErrorTotal = monitoring.NewSum(
    		"manifest_render_error_total",
    		"Number of times error occurred during rendering output manifest",
    	)
    
    	// LegacyPathTranslationTotal counts the translations from legacy API to new one.
    	LegacyPathTranslationTotal = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              package="com.example.myproduct.app">
    
        <uses-permission android:name="android.permission.INTERNET" />
    
        <application>
            <activity android:name=".MyProductAppActivity" android:label="My Product">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.jvm.tasks.Jar.xml

                    <tr>
                        <td>manifest</td>
                        <td/>
                    </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>manifest</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 762 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/build.gradle

                ignoreProperty("app.version")
            }
        }
    }
    // end::ignore-metainf-properties[]
    
    // tag::ignore-metainf-manifest[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

                    }
                """)
                classesToCompile += moduleInfo
            }
    
            def manifest = ['Manifest-Version: 1.0', "Implementation-Title: $name", 'Implementation-Version: 1.0']
            if (kind == JarKind.AUTO_MODULE) {
                manifest += "Automatic-Module-Name: $name"
            }
    
            final FileManager fileManager = new FileManager(compiler.getStandardFileManager(null, null, null))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    include::sample[dir="snippets/tutorial/manifest/kotlin",files="build.gradle.kts[tags=custom-manifest]"]
    include::sample[dir="snippets/tutorial/manifest/groovy",files="build.gradle[tags=custom-manifest]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/repo/org.example/project1/1.0/project1-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)
Back to top