Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 726 for Manifest (0.22 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * Creates a new instance of a {@link Manifest}.
         * @since 7.1
         */
        Manifest manifest();
    
        /**
         * Creates and configures a new instance of a {@link Manifest}. The given closure configures
         * the new manifest instance before it is returned.
         *
         * @param closure The closure to use to configure the manifest.
         * @since 7.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/its/b/0.1/b-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/org.apache.maven.its/b/pom.xml 4.0.0 org.apache.maven.its b 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo org.apache.maven.its a 0.1 META-INF/maven/org.apache.maven.its/b/pom.properties #Generated by Maven #Sat Oct 24 00:28:17 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=b...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 1.9K bytes
    - Viewed (0)
  3. operator/pkg/name/name.go

    	}
    )
    
    // Manifest defines a manifest for a component.
    type Manifest struct {
    	Name    ComponentName
    	Content string
    }
    
    // ManifestMap is a map of ComponentName to its manifest string.
    type ManifestMap map[ComponentName][]string
    
    // Consolidated returns a representation of mm where all manifests in the slice under a key are combined into a single
    // manifest.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    )
    
    var (
    	controlPlaneExample = cmdutil.Examples(`
    		# Generates all static Pod manifest files for control plane components,
    		# functionally equivalent to what is generated by kubeadm init.
    		kubeadm init phase control-plane all
    
    		# Generates all static Pod manifest files using options read from a configuration file.
    		kubeadm init phase control-plane all --config config.yaml
    		`)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/project-builder/it0063/jdk/lib/tools.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 1.6.0_07 (Sun Microsystems Inc.)...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 30 05:25:30 UTC 2009
    - 345 bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

        }
    
        @Override
        public Manifest manifest() {
            return manifest(Actions.doNothing());
        }
    
        @Override
        public Manifest manifest(@SuppressWarnings("rawtypes") Closure closure) {
            return configure(closure, createManifest());
        }
    
        @Override
        public Manifest manifest(Action<? super Manifest> action) {
            Manifest manifest = createManifest();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. okhttp-android/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="okhttp.android">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jul 09 11:08:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  8. regression-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="okhttp.android.regression">
      <uses-permission android:name="android.permission.INTERNET" />
    
      <!-- For HttpEngine -->
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Mar 23 11:14:34 UTC 2024
    - 291 bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest_shared_test.go

    	}
    
    	return nil
    }
    
    // applyWithReconciler applies the given manifest string using the given reconciler.
    func applyWithReconciler(reconciler *helmreconciler.HelmReconciler, manifest string) error {
    	m := name.Manifest{
    		// Name is not important here, only Content will be applied.
    		Name:    name.IstioOperatorComponentName,
    		Content: manifest,
    	}
    	_, err := reconciler.ApplyManifest(m)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('WEB-INF/classes/org/gradle/Person.class')
            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
    
            war.assertFileContent('META-INF/MANIFEST.MF', 'Manifest-Version: 1.0\r\n\r\n')
        }
    
        def canCreateAWarArchiveWithWebXml() {
            given:
            def webXml = file('some.xml') << '<web/>'
            createDir('web-inf') {
                webinf1 {
                    file 'file1.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top