Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 726 for Manifest (0.16 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/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/lib/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.lib">
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 176 bytes
    - Viewed (0)
  3. 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)
  4. operator/cmd/mesh/profile-diff.go

    }
    
    func profileDiffInternal(profileA, profileB string, setFlags []string, writer io.Writer, l clog.Logger) (bool, error) {
    	a, _, err := manifest.GenIOPFromProfile(profileA, "", setFlags, true, true, nil, l)
    	if err != nil {
    		return false, fmt.Errorf("could not read %q: %v", profileA, err)
    	}
    
    	b, _, err := manifest.GenIOPFromProfile(profileB, "", setFlags, true, true, nil, l)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. prow/release-commit.sh

      ztunnel-dashboard: 21306
    ${PROXY_OVERRIDE:-}
    EOF
    )
    
    # "Temporary" hacks
    export PATH=${GOPATH}/bin:${PATH}
    
    go install "istio.io/release-builder@${BUILDER_SHA}"
    
    release-builder build --manifest <(echo "${MANIFEST}")
    
    release-builder validate --release "${WORK_DIR}/out"
    
    if [[ -z "${DRY_RUN:-}" ]]; then
      release-builder publish --release "${WORK_DIR}/out" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/apply_test.go

    			}
    
    			manifest := loadData(t, tt.want)
    			key := client.ObjectKeyFromObject(manifest.UnstructuredObject())
    			got, want := obj.UnstructuredObject(), manifest.UnstructuredObject()
    
    			if err := cl.Get(context.Background(), key, got); err != nil {
    				t.Errorf("error validating manifest %v: %v", manifest.Hash(), err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. maven-core/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: Fri Oct 23 23:48:02 UTC 2009
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/kotlin/build.gradle.kts

                ignoreProperty("app.version")
            }
        }
    }
    // end::ignore-metainf-properties[]
    
    // tag::ignore-metainf-manifest[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 763 bytes
    - Viewed (0)
Back to top