Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TagCmd (0.17 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    	CreateCmd   []string // commands to download a fresh copy of a repository
    	DownloadCmd []string // commands to download updates into an existing repository
    
    	TagCmd         []tagCmd // commands to list tags
    	TagLookupCmd   []tagCmd // commands to lookup tags before running tagSyncCmd
    	TagSyncCmd     []string // commands to sync to specific tag
    	TagSyncDefault []string // commands to sync to default tag
    
    	Scheme  []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    	hideInheritedFlags(bugReportCmd, cli.FlagNamespace, cli.FlagIstioNamespace)
    	rootCmd.AddCommand(bugReportCmd)
    
    	tagCmd := tag.TagCommand(ctx)
    	hideInheritedFlags(tag.TagCommand(ctx), cli.FlagNamespace, cli.FlagIstioNamespace, FlagCharts)
    	rootCmd.AddCommand(tagCmd)
    
    	// leave the multicluster commands in x for backwards compat
    	rootCmd.AddCommand(multicluster.NewCreateRemoteSecretCommand(ctx))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		IndefLength: cbor.IndefLengthForbidden,
    
    		// Preserve distinction between nil and empty for slices and maps.
    		NilContainers: cbor.NilContainerAsNull,
    
    		// OK to produce tags.
    		TagsMd: cbor.TagsAllowed,
    
    		// Use the same definition of "empty" as encoding/json.
    		OmitEmpty: cbor.OmitEmptyGoValue,
    
    		// The CBOR types text string and byte string are structurally equivalent, with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		MaxMapPairs:      1024,
    
    		// Indefinite-length sequences aren't produced by this serializer, but other
    		// implementations can.
    		IndefLength: cbor.IndefLengthAllowed,
    
    		// Accept inputs that contain CBOR tags.
    		TagsMd: cbor.TagsAllowed,
    
    		// Decode type 0 (unsigned integer) as int64.
    		// TODO: IntDecConvertSignedOrFail errors on overflow, JSON will try to fall back to float64.
    		IntDec: cbor.IntDecConvertSignedOrFail,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top