Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for mainTest (0.11 sec)

  1. operator/pkg/component/component.go

    		return cf.Filter.IsEmpty() || cf.Filter.Contains(s)
    	})
    	if err != nil {
    		log.Errorf("Error rendering the manifest: %s", err)
    		metrics.CountManifestRenderError(cf.ComponentName(), metrics.HelmChartRenderError)
    		return "", err
    	}
    	my += helm.YAMLSeparator + "\n"
    	scope.Debugf("Initial manifest with merged values:\n%s\n", my)
    
    	// Add the k8s resources from IstioOperatorSpec.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/reflect/ClassPath.java

          File jarFile, @CheckForNull Manifest manifest) {
        if (manifest == null) {
          return ImmutableSet.of();
        }
        ImmutableSet.Builder<File> builder = ImmutableSet.builder();
        String classpathAttribute =
            manifest.getMainAttributes().getValue(Attributes.Name.CLASS_PATH.toString());
        if (classpathAttribute != null) {
          for (String path : CLASS_PATH_ATTRIBUTE_SEPARATOR.split(classpathAttribute)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    include::sample[dir="snippets/tutorial/manifest/groovy",files="build.gradle[tags=add-to-manifest]"]
    ====
    
    See link:{javadocPath}/org/gradle/api/java/archives/Manifest.html[Manifest] for the configuration options it provides.
    
    You can also create standalone instances of `Manifest`. One reason for doing so is to share manifest information between JARs. The following example demonstrates how to share common attributes between JARs:
    
    .Creating a manifest object.
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

                .forwardOutput()
                .build()
    
            then: "version numbers exist in the manifest"
            assertJarManifestContains("Import-Package", "org.apache.commons.lang3;version=\"$calculatedCommonsVersionRange\"")
        }
    
        def "BND plugin writes transitive external dependency versions of a direct project dependency to the manifest"() {
            given:
            def commonsVersion = "3.12.0"
            def directVersion = "2.7-SNAPSHOT"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                def manifest = new Manifest()
                def mainAttributes = manifest.getMainAttributes()
                mainAttributes.put(Attributes.Name.MANIFEST_VERSION, "1.0")
                attributes.each {name, value ->
                    mainAttributes.put(new Attributes.Name(name), value)
                }
                backingFile.withOutputStream {os ->
                    manifest.write(os)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

                jarOutputStream.putNextEntry(new ZipEntry("META-INF/"));
            }
            return pathingJarFile;
        }
    
        private static Manifest toManifest(FileCollection classPath) {
            Manifest manifest = new Manifest();
            Attributes attributes = manifest.getMainAttributes();
            attributes.put(Attributes.Name.MANIFEST_VERSION, "1.0");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                        isModuleHierarchy = false;
                        return;
                    }
                    // No module descriptor, check manifest file.
                    Manifest mf = jar.getManifest();
                    if (mf != null) {
                        Object name = mf.getMainAttributes().get(AUTO_MODULE_NAME);
                        if (name instanceof String) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top