Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 399 for Trune (0.03 sec)

  1. src/cmd/vendor/rsc.io/markdown/list.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package markdown
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    type List struct {
    	Position
    	Bullet rune
    	Start  int
    	Loose  bool
    	Items  []Block // always *Item
    }
    
    type Item struct {
    	Position
    	Blocks []Block
    	width  int
    }
    
    func (b *List) PrintHTML(buf *bytes.Buffer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/encoding/base64/base64.go

    type Encoding struct {
    	encode    [64]byte   // mapping of symbol index to symbol byte value
    	decodeMap [256]uint8 // mapping of symbol byte value to symbol index
    	padChar   rune
    	strict    bool
    }
    
    const (
    	StdPadding rune = '=' // Standard padding character
    	NoPadding  rune = -1  // No padding
    )
    
    const (
    	decodeMapInitialize = "" +
    		"\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      istioctl ztunnel-config certificates <ztunnel-name[.namespace]> -o json
    `,
    		Aliases: []string{"certificates", "certs", "cert"},
    		Args:    common.validateArgs,
    		RunE: runConfigDump(ctx, common, func(cw *ztunnelDump.ConfigWriter) error {
    			switch common.outputFormat {
    			case summaryOutput:
    				return cw.PrintSecretSummary()
    			case jsonOutput, yamlOutput:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/net/mail/message.go

    // If dot is true, period is included.
    func isAtext(r rune, dot bool) bool {
    	switch r {
    	case '.':
    		return dot
    
    	// RFC 5322 3.2.3. specials
    	case '(', ')', '<', '>', '[', ']', ':', ';', '@', '\\', ',', '"': // RFC 5322 3.2.3. specials
    		return false
    	}
    	return isVchar(r)
    }
    
    // isQtext reports whether r is an RFC 5322 qtext character.
    func isQtext(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/proxy/util/linebuffer_test.go

    			}
    		})
    	}
    }
    
    // obtained from https://stackoverflow.com/a/22892986
    var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
    
    func randSeq() string {
    	b := make([]rune, 30)
    	for i := range b {
    		b[i] = letters[rand.Intn(len(letters))]
    	}
    	return string(b)
    }
    
    func TestWriteCountLines(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. hack/verify-gofmt.sh

            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename '*/testdata/*' \
            -o -wholename '*/bindata.go' \
          \) -prune \
        \) -name '*.go'
    }
    
    # gofmt exits with non-zero exit code if it finds a problem unrelated to
    # formatting (e.g., a file does not parse correctly). Without "|| true" this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. hack/verify-readonly-packages.sh

            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename './staging/src/k8s.io/client-go/pkg/*' \
          \) -prune \
        \) -name '.readonly'
    }
    
    conflicts=()
    while IFS=$'\n' read -r dir; do
        dir=${dir#./}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/build.go

    	var args []string
    	arg := make([]rune, len(s))
    	escaped := false
    	quoted := false
    	quote := '\x00'
    	i := 0
    	for _, rune := range s {
    		switch {
    		case escaped:
    			escaped = false
    		case rune == '\\':
    			escaped = true
    			continue
    		case quote != '\x00':
    			if rune == quote {
    				quote = '\x00'
    				continue
    			}
    		case rune == '"' || rune == '\'':
    			quoted = true
    			quote = rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. hack/update-vendor.sh

          exit 1
        fi
    
        # prune unused pinned replace directives
        comm -23 \
          <(go mod edit -json | jq -r '.Replace[] | .Old.Path' | sort) \
          <(go list -m -json all | jq -r .Path | sort) |
        while read -r X; do echo "-dropreplace=${X}"; done |
        xargs -L 100 go mod edit -fmt
    
        # prune replace directives that pin to the naturally selected version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig.go

    			if (len(args) == 1) != (configDumpFile == "") {
    				cmd.Println(cmd.UsageString())
    				return fmt.Errorf("cluster requires pod name or --file parameter")
    			}
    			return nil
    		},
    		RunE: func(c *cobra.Command, args []string) error {
    			kubeClient, err := ctx.CLIClient()
    			if err != nil {
    				return err
    			}
    			var configWriter *configdump.ConfigWriter
    			if len(args) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top