Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for mainTest (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            jarFile.delete()
    
            and:
            configurationCacheRun ':app:jar'
    
            then:
            assertStateLoaded()
    
            and:
            def manifest = new JarTestFixture(jarFile).manifest
            manifest.mainAttributes.getValue('Class-Path') == 'lib.jar'
        }
    
        def buildWithSingleSourceFile() {
            settingsFile << """
                rootProject.name = 'somelib'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils.go

    func PatchStaticPod(pod *v1.Pod, patchesDir string, output io.Writer) (*v1.Pod, error) {
    	// Marshal the Pod manifest into YAML.
    	podYAML, err := kubeadmutil.MarshalToYaml(pod, v1.SchemeGroupVersion)
    	if err != nil {
    		return pod, errors.Wrapf(err, "failed to marshal Pod manifest to YAML")
    	}
    
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. operator/README.md

    - `verbose`: display entire manifest contents and other debug info (default is false).
    - `set`: select profile or override profile defaults
    
    #### Basic default manifest
    
    The following command generates a manifest with the compiled-in `default` profile and charts:
    
    ```bash
    istioctl manifest generate
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    subdirectory as a Cobra command with the following subcommands:
    
    - [manifest](../operator/cmd/mesh/manifest.go): the manifest subcommand is used to generate, install, diff or migrate Istio manifests, it has the following subcommands:
        - [install](../operator/cmd/mesh/install.go): the install subcommand is used to generate an Istio install manifest and apply it to a cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K 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. 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)
  8. 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)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		fmt.Printf("[upgrade/staticpods] Restarting the %s static pod and backing up its manifest to %q\n",
    			component, backupManifestPath)
    	} else {
    		fmt.Printf("[upgrade/staticpods] Moving new manifest to %q and backing up old manifest to %q\n",
    			currentManifestPath, backupManifestPath)
    	}
    
    	// Move the old manifest into the old-manifests directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        def "wrapper JAR does not contain version in manifest"() {
            when:
            run "wrapper"
    
            then:
            def contents = file('contents')
            // ProGuard removes parent directory entries to keep JARs smaller
            file("gradle/wrapper/gradle-wrapper.jar").unzipToWithoutCheckingParentDirs(contents)
    
            Manifest manifest = contents.file('META-INF/MANIFEST.MF').withInputStream { new Manifest(it) } as Manifest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top