Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 726 for Manifest (0.97 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/swiftpm/tasks/GenerateSwiftPackageManagerManifest.java

            DefaultPackage srcPackage = (DefaultPackage) packageProperty.get();
            Path manifest = manifestFile.get().getAsFile().toPath();
            try {
                Path baseDir = manifest.getParent();
                Files.createDirectories(baseDir);
                PrintWriter writer = new PrintWriter(Files.newBufferedWriter(manifest, Charset.forName("utf-8")));
                try {
                    writer.println("// swift-tools-version:4.0");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultAttributes.java

        @Override
        public Object put(String key, Object value) {
            if (key == null) {
                throw new ManifestException("The key of a manifest attribute must not be null.");
            }
            if (value == null) {
                throw new ManifestException(String.format("The value of a manifest attribute must not be null (Key=%s).", key));
            }
            try {
                new java.util.jar.Attributes.Name(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/PluginBinaryCompatibilityCrossVersionSpec.groovy

                        c.sourceCompatibility = 1.8
                        println c.sourceCompatibility
                        c.manifest { }
    
                        GroovyObject o = p.convention.plugins.java
                        o.sourceCompatibility = 1.7
                        println o.sourceCompatibility
                        o.manifest { }
    
                        def d = p.convention.plugins.java
                        d.sourceCompatibility = 1.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-android-application/app/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. operator/cmd/mesh/operator-common.go

    		ImagePullSecrets:  ocArgs.imagePullSecrets,
    		Revision:          ocArgs.revision,
    	}
    	vals, err := util.RenderTemplate(tmpl, tv)
    	if err != nil {
    		return "", "", err
    	}
    	manifest, err := r.RenderManifest(vals)
    	return vals, manifest, err
    }
    
    // deploymentExists returns true if the given deployment in the namespace exists.
    func deploymentExists(cs kubernetes.Interface, namespace, name string) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/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)
  7. cmd/kubeadm/app/phases/controlplane/manifests.go

    					}
    				}
    			}
    		}
    
    		// if patchesDir is defined, patch the static Pod manifest
    		if patchesDir != "" {
    			patchedSpec, err := staticpodutil.PatchStaticPod(&spec, patchesDir, os.Stdout)
    			if err != nil {
    				return errors.Wrapf(err, "failed to patch static Pod manifest file for %q", componentName)
    			}
    			spec = *patchedSpec
    		}
    
    		// writes the StaticPodSpec to disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. maven-compat/src/test/remote-repo/org/apache/maven/its/a/0.1/a-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/a/pom.xml 4.0.0 org.apache.maven.its a 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo META-INF/maven/org.apache.maven.its/a/pom.properties #Generated by Maven #Sat Oct 24 00:27:56 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kubelet/config/file.go

    		}
    
    		switch {
    		case statInfo.Mode().IsDir():
    			klog.ErrorS(nil, "Provided manifest path is a directory, not recursing into manifest path", "path", path)
    		case statInfo.Mode().IsRegular():
    			pod, err := s.extractFromFile(path)
    			if err != nil {
    				if !os.IsNotExist(err) {
    					klog.ErrorS(err, "Could not process manifest file", "path", path)
    				}
    			} else {
    				pods = append(pods, pod)
    			}
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. maven-api-impl/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: Thu May 02 15:10:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top