Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,399 for tTag (0.04 sec)

  1. src/html/template/transition.go

    			s = s[len(tag):]
    			// Check the tag is followed by a proper separator
    			if len(s) > 0 && bytes.IndexByte(tagEndSeparators, s[0]) != -1 {
    				return res + i
    			}
    			res += len(tag)
    		}
    		res += i + plen
    	}
    	return -1
    }
    
    // tAttr is the context transition function for the attribute state.
    func tAttr(c context, s []byte) (context, int) {
    	return c, len(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/tag.go

    	cmd := &cobra.Command{
    		Use:   "generate <revision-tag>",
    		Short: "Generate configuration for a revision tag to stdout",
    		Long: `Create a revision tag and output to the command's stdout. Tag an Istio control plane revision for use with namespace istio.io/rev
    injection labels.`,
    		Example: `  # Create a revision tag from the "1-8-0" revision
      istioctl tag generate prod --revision 1-8-0 > tag.yaml
    
      # Apply the tag to cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. internal/bucket/replication/tag.go

    )
    
    func (tag Tag) String() string {
    	return tag.Key + "=" + tag.Value
    }
    
    // IsEmpty returns whether this tag is empty or not.
    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/tag.go

    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    	if utf8.RuneCountInString(tag.Value) > 256 {
    		return errInvalidTagValue
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    // license that can be found in the LICENSE file.
    
    // Package tag contains functionality handling tags and related data.
    package tag // import "golang.org/x/text/internal/tag"
    
    import "sort"
    
    // An Index converts tags to a compact numeric value.
    //
    // All elements are of size 4. Tags may be up to 4 bytes long. Excess bytes can
    // be used to store additional information about the tag.
    type Index string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. releasenotes/notes/revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** `istioctl experimental revision tag` command group. Revision tags act as aliases for
        control plane revisions. Users can label their namespaces with a revision tag rather than pointing them
        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/commit-after-tag.txt

    git branch -m master
    git tag v1.0.0
    
    at 2019-07-15T17:17:27-04:00
    cp _next/main.go main.go
    git add main.go
    git commit -m 'add init function'
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    b325d82 (HEAD -> master) add init function
    8da67e0 (tag: v1.0.0) all: add go.mod and main.go
    -- go.mod --
    module vcs-test.golang.org/git/commit-after-tag.git
    
    go 1.13
    -- main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 767 bytes
    - Viewed (0)
  9. releasenotes/notes/graudate-revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: promotion
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 17:37:59 UTC 2021
    - 171 bytes
    - Viewed (0)
  10. releasenotes/notes/revision-tag-default-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** `istioctl tag set default` to control which revision handles Istio resource validation. The revision indicated
        through the default tag will also win leader elections and assume singleton cluster responsibilities.
    
    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
Back to top