Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 726 for Manifest (0.15 sec)

  1. tools/build-kind-image.sh

    done
    
    # combine to manifest list tagged with kubernetes version
    export DOCKER_CLI_EXPERIMENTAL=enabled
    # images must be pushed to be referenced by docker manifest
    # we push only after all builds have succeeded
    for image in "${images[@]}"; do
        docker push "${image}"
    done
    docker manifest rm "${registry}" || true
    docker manifest create "${registry}" "${images[@]}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/normalization/MetaInfNormalization.java

    package org.gradle.normalization;
    
    /**
     * Configuration of manifest normalization.
     *
     * @since 6.6
     */
    public interface MetaInfNormalization {
        /**
         * Ignore all files and subdirectories in the {@code META-INF} directory within archives.
         *
         * @since 6.6
         */
        void ignoreCompletely();
    
        /**
         * Ignore the {@code META-INF/MANIFEST.MF} file within archives.
         *
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 18:10:29 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/etcd.go

    	etcdutil "k8s.io/kubernetes/cmd/kubeadm/app/util/etcd"
    )
    
    var (
    	etcdLocalExample = cmdutil.Examples(`
    		# Generates the static Pod manifest file for etcd, functionally
    		# equivalent to what is generated by kubeadm init.
    		kubeadm init phase etcd local
    
    		# Generates the static Pod manifest file for etcd using options
    		# read from a configuration file.
    		kubeadm init phase etcd local --config config.yaml
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="org.gradle.samples">
    
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 712 bytes
    - Viewed (0)
  5. android-test-app/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
      <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:name=".TestApplication"
      >
        <activity
          android:name=".MainActivity"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 683 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

                    try (final JarFile jarFile = new JarFile(possibleJar.getCanonicalPath())) {
                        final Manifest manifest = jarFile.getManifest();
                        if (manifest != null && manifest.getEntries() != null) {
                            final Attributes attributes = manifest.getMainAttributes();
                            if (attributes != null
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="org.gradle.kotlin.dsl.samples.androidstudio">
    
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 737 bytes
    - Viewed (0)
  8. build/pause/Makefile

    all-push: all-container-registry push-manifest
    
    push-manifest: SHELL:=/bin/bash
    push-manifest:
    	docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(IMAGE):$(TAG)\-&~g")
    	set -x; for arch in $(ALL_ARCH.linux); do docker manifest annotate --os linux --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}:${TAG}-linux-$${arch}; done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild/shade/transforms/ShadeClasses.kt

        @get:InputArtifact
        abstract val input: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val manifest = input.get().asFile.resolve(manifestFileName)
            if (manifest.exists()) {
                outputs.file(manifest)
            }
        }
    }
    
    
    @DisableCachingByDefault(because = "Only filters the input artifact")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

                }
                return false;
            }
    
            private boolean containsMultiReleaseJarEntry(JarInputStream jarStream) {
                Manifest manifest = jarStream.getManifest();
                return manifest !=null && Boolean.parseBoolean(manifest.getMainAttributes().getValue(MULTI_RELEASE_ATTRIBUTE));
            }
    
            private boolean containsAutomaticModuleName(JarInputStream jarStream) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top