Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for mainTest (0.16 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    	manifest, err := runManifestGenerate([]string{inPath}, flags, chartSource, fileSelect)
    	if err != nil {
    		return "", nil, fmt.Errorf("error %s: %s", err, manifest)
    	}
    	objs, err := object.ParseK8sObjectsFromYAMLManifest(manifest)
    	return manifest, objs, err
    }
    
    // runManifestGenerate runs the manifest generate command. If filenames is set, passes the given filenames as -f flag,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

    Ben Leggett <******@****.***> 1714685380 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/main_test.go

    John Howard <******@****.***> 1718150848 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      }
    
      private static Manifest manifestClasspath(String classpath) throws IOException {
        return manifest("Class-Path: " + classpath + "\n");
      }
    
      private static void writeSelfReferencingJarFile(File jarFile, String... entries)
          throws IOException {
        Manifest manifest = new Manifest();
        // Without version, the manifest is silently ignored. Ugh!
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        def "fails when classpath does not contain manifest resource"() {
            given:
            def registry = new DefaultModuleRegistry(classLoaderFor([]), ClassPath.EMPTY, null)
    
            when:
            registry.getModule("gradle-some-module")
    
            then:
            UnknownModuleException e = thrown()
            e.message ==~ /Cannot locate manifest for module 'gradle-some-module' in classpath: \[.*]\./
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local.go

    	if cfg.Etcd.External != nil {
    		return errors.New("etcd static pod manifest cannot be generated for cluster using external etcd")
    	}
    
    	if err := prepareAndWriteEtcdStaticPod(manifestDir, patchesDir, cfg, endpoint, nodeName, []etcdutil.Member{}, isDryRun); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  10. cluster/images/etcd/Makefile

    all-push: all-push-images push-manifest
    
    push-manifest:
    	docker manifest create --amend $(MANIFEST_IMAGE):$(IMAGE_TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(MANIFEST_IMAGE):$(IMAGE_TAG)\-&~g")
    	set -x; for arch in $(ALL_ARCH.linux); do docker manifest annotate --os linux --arch $${arch} ${MANIFEST_IMAGE}:${IMAGE_TAG} ${MANIFEST_IMAGE}:${IMAGE_TAG}-linux-$${arch}; done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top