Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for SEP (0.05 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	// s: string we are searching
    	// sep: string to search for
    	// R3=&s[0], R4=len(s)
    	// R5=&sep[0], R6=len(sep)
    	// R14=&ret (index where sep found)
    	// R7=working addr of string
    	// R16=index value 16
    	// R17=index value 17
    	// R18=index value 18
    	// R19=index value 1
    	// R26=LASTBYTE of string
    	// R27=LASTSTR last start byte to compare with sep
    	// R8, R9 scratch
    	// V0=sep left justified zero fill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse_test.go

    			rule: `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment ns1/svc1:p80 -m recent --name KUBE-SEP-SXIVWICOYRO3J4NJ --rcheck --seconds 10800 --reap -j KUBE-SEP-SXIVWICOYRO3J4NJ`,
    			parsed: &Rule{
    				Raw:             `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment ns1/svc1:p80 -m recent --name KUBE-SEP-SXIVWICOYRO3J4NJ --rcheck --seconds 10800 --reap -j KUBE-SEP-SXIVWICOYRO3J4NJ`,
    				Chain:           iptables.Chain("KUBE-SVC-XPGD46QRK7WJZT7O"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. src/strings/strings.go

    //
    // Edge cases for s and sep (for example, empty strings) are handled
    // as described in the documentation for SplitAfter.
    func SplitAfterN(s, sep string, n int) []string {
    	return genSplit(s, sep, len(sep), n)
    }
    
    // Split slices s into all substrings separated by sep and returns a slice of
    // the substrings between those separators.
    //
    // If s does not contain sep and sep is not empty, Split returns a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/strings/example_test.go

    func ExampleCutPrefix() {
    	show := func(s, sep string) {
    		after, found := strings.CutPrefix(s, sep)
    		fmt.Printf("CutPrefix(%q, %q) = %q, %v\n", s, sep, after, found)
    	}
    	show("Gopher", "Go")
    	show("Gopher", "ph")
    	// Output:
    	// CutPrefix("Gopher", "Go") = "pher", true
    	// CutPrefix("Gopher", "ph") = "Gopher", false
    }
    
    func ExampleCutSuffix() {
    	show := func(s, sep string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/mdo/model.vm

        #end
        #foreach ( $field in $allFields )
          #set ( $sep = "#if(${locationTracking}||$field!=${allFields[${allFields.size()} - 1]}),#end" )
          #set ( $type = ${types.getOrDefault($field,${types.getOrDefault($field.type,$field.type)})} )
          #if ( $type.startsWith("List<") )
            #set ( $type = ${type.replace('List<','Collection<')} )
          #end
            $type $field.name${sep}
        #end
        #if ( $locationTracking )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top