Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for rtagName (0.32 sec)

  1. samples/ambient-argo/tag-chart/templates/mutatingwebhooks.yaml

    {{- end }}
    
    {{- range $tagName, $tag := $.Values.base.tags }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq $.Release.Namespace "istio-system"}}
      name: istio-revision-tag-{{ $tagName }}
    {{- else }}
      name: istio-revision-tag-{{ $tagName }}-{{ $.Release.Namespace }}
    {{- end }}
      labels:
        istio.io/tag: {{ $tagName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    {{- end }}
    {{- range $tagName := $.Values.revisionTags }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq $.Release.Namespace "istio-system"}}
      name: istio-revision-tag-{{ $tagName }}
    {{- else }}
      name: istio-revision-tag-{{ $tagName }}-{{ $.Release.Namespace }}
    {{- end }}
      labels:
        istio.io/tag: {{ $tagName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

                    .filterIsInstance<Element>()
                    .first { it.predicate() }
    
            asElement()
                .firstElement { tagName == "component" && getAttribute("name") == "VcsDirectoryMappings" }
                .firstElement { tagName == "mapping" }
                .setAttribute("vcs", "Git")
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        }
    
        @Override
        public Ref createLightWeightTag(String tagName) throws GitAPIException {
            return git.tag().setName(tagName).call();
        }
    
        public Ref createAnnotatedTag(String tagName, String message) throws GitAPIException {
            return git.tag().setName(tagName).setAnnotated(true).setMessage(message).call();
        }
    
        public Ref getHead() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. maven-embedder/src/main/mdo/core-extensions.mdo

      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.cli.internal.extension.model</value>
        </default>
      </defaults>
    
      <classes>
        <class rootElement="true" xml.tagName="extensions" xsd.compositor="sequence">
          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            return backingRepo.createBranch(branchName);
        }
    
        @Override
        public Ref createLightWeightTag(String tagName) throws GitAPIException {
            return backingRepo.createLightWeightTag(tagName);
        }
    
        public BlockingHttpServer.ExpectedRequest listVersions() {
            return server.get(backingRepo.getName() + "/info/refs", getRefsAction());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitRepository.java

    public interface GitRepository {
        URI getUrl();
    
        Ref createBranch(String branchName) throws GitAPIException;
    
        Ref checkout(String branchName) throws GitAPIException;
    
        Ref createLightWeightTag(String tagName) throws GitAPIException;
    
        TestFile getWorkTree();
    
        TestFile file(Object... path);
    
        RevCommit commit(String message) throws GitAPIException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/util.go

    }
    
    // GetWebhookRevision extracts tag target revision from webhook object.
    func GetWebhookRevision(wh admitv1.MutatingWebhookConfiguration) (string, error) {
    	if tagName, ok := wh.ObjectMeta.Labels[label.IoIstioRev.Name]; ok {
    		return tagName, nil
    	}
    	return "", fmt.Errorf("could not extract tag revision from webhook")
    }
    
    // DeleteTagWebhooks deletes the given webhooks.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            List<Element> inSection = new ArrayList<>();
            inSection.add(heading);
    
            Element next = heading.nextElementSibling();
            while (true) {
                if (next == null || next.tagName().equals("h2")) {
                    Element section = heading.before("<section class='topic'/>").previousElementSibling();
                    Elements inSectionElements = new Elements(inSection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/remote-resources.mdo

      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="remoteResourcesBundle">
          <name>RemoteResourcesBundle</name>
          <version>1.1.0</version>
          <description>Root element of the remote-resources.xml file.</description>
          <fields>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top