Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for SEP (0.02 sec)

  1. pkg/proxy/iptables/proxier_test.go

    		:KUBE-MARK-MASQ - [0:0]
    		:KUBE-NODEPORTS - [0:0]
    		:KUBE-POSTROUTING - [0:0]
    		:KUBE-SEP-C6EBXVWJJZMIWKLZ - [0:0]
    		:KUBE-SEP-I77PXRDZVX7PMWMN - [0:0]
    		:KUBE-SEP-OYPFS5VJICHGATKP - [0:0]
    		:KUBE-SEP-RS4RBKLTHTF2IUXJ - [0:0]
    		:KUBE-SEP-SXIVWICOYRO3J4NJ - [0:0]
    		:KUBE-SEP-UKSFD7AGPMPPLUHC - [0:0]
    		:KUBE-SERVICES - [0:0]
    		:KUBE-SVC-4SW47YFZTEDKD3PK - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  2. src/mime/multipart/multipart_test.go

    	{
    		name: "fake separator as data",
    		sep:  "sep",
    		in:   "--sep\r\nFoo: bar\r\n\r\n--sepFAKE\r\n--sep--",
    		want: []headerBody{
    			{textproto.MIMEHeader{"Foo": {"bar"}}, "--sepFAKE"},
    		},
    	},
    
    	// Part containing a boundary with whitespace following it.
    	{
    		name: "boundary with whitespace",
    		sep:  "sep",
    		in:   "--sep \r\nFoo: bar\r\n\r\ntext\r\n--sep--",
    		want: []headerBody{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	p.comment = append(p.comment, x.Comment().Suffix...)
    }
    
    func (p *printer) tokens(tokens []string) {
    	sep := ""
    	for _, t := range tokens {
    		if t == "," || t == ")" || t == "]" || t == "}" {
    			sep = ""
    		}
    		p.printf("%s%s", sep, t)
    		sep = " "
    		if t == "(" || t == "[" || t == "{" {
    			sep = ""
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    func benchmarkIndexHard(b *testing.B, sep []byte) {
    	for i := 0; i < b.N; i++ {
    		Index(benchInputHard, sep)
    	}
    }
    
    func benchmarkLastIndexHard(b *testing.B, sep []byte) {
    	for i := 0; i < b.N; i++ {
    		LastIndex(benchInputHard, sep)
    	}
    }
    
    func benchmarkCountHard(b *testing.B, sep []byte) {
    	for i := 0; i < b.N; i++ {
    		Count(benchInputHard, sep)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/util.go

    	io.WriteString(w, p.As.String())
    	io.WriteString(w, sc)
    	sep := "\t"
    
    	if p.From.Type != TYPE_NONE {
    		io.WriteString(w, sep)
    		WriteDconv(w, p, &p.From)
    		sep = ", "
    	}
    	if p.Reg != REG_NONE {
    		// Should not happen but might as well show it if it does.
    		fmt.Fprintf(w, "%s%v", sep, Rconv(int(p.Reg)))
    		sep = ", "
    	}
    	for i := range p.RestArgs {
    		if p.RestArgs[i].Pos == Source {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/log/slog/handler.go

    	return err
    }
    
    func (s *handleState) appendNonBuiltIns(r Record) {
    	// preformatted Attrs
    	if pfa := s.h.preformattedAttrs; len(pfa) > 0 {
    		s.buf.WriteString(s.sep)
    		s.buf.Write(pfa)
    		s.sep = s.h.attrSep()
    		if s.h.json && pfa[len(pfa)-1] == '{' {
    			s.sep = ""
    		}
    	}
    	// Attrs in Record -- unlike the built-in ones, they are in groups started
    	// from WithGroup.
    	// If the record has no Attrs, don't output any groups.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/TextUtil.java

        }
    
        /**
         * Converts all line separators in the specified string to the specified line separator.
         */
        public static String convertLineSeparators(String str, String sep) {
            return str == null ? null : str.replaceAll("\r\n|\r|\n", sep);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/stringslite/strings.go

    			j := bytealg.IndexRabinKarp(s[i:], substr)
    			if j < 0 {
    				return -1
    			}
    			return i + j
    		}
    	}
    	return -1
    }
    
    func Cut(s, sep string) (before, after string, found bool) {
    	if i := Index(s, sep); i >= 0 {
    		return s[:i], s[i+len(sep):], true
    	}
    	return s, "", false
    }
    
    func CutPrefix(s, prefix string) (after string, found bool) {
    	if !HasPrefix(s, prefix) {
    		return s, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    	if atEOF && len(data) == 0 {
    		return 0, nil, nil
    	}
    	sep := len([]byte(yamlSeparator))
    	if i := bytes.Index(data, []byte(yamlSeparator)); i >= 0 {
    		// We have a potential document terminator
    		i += sep
    		after := data[i:]
    		if len(after) == 0 {
    			// we can't read any more characters
    			if atEOF {
    				return len(data), data[:len(data)-sep], nil
    			}
    			return 0, nil, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		n := p - end - 1
    		if n <= 2 && curKey == key {
    			if sep < end {
    				sep++
    			}
    			return start, sep, end, true
    		}
    		switch n {
    		case 0, // invalid string
    			1: // next extension
    			return end, end, end, true
    		case 2:
    			// next key
    			curKey = s[end+1 : p]
    			if curKey > key {
    				return end, end, end, true
    			}
    			start = end
    			sep = p
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top