Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,346 for Appendf (0.25 sec)

  1. src/log/slog/record.go

    // the ReplaceAttr function was called.
    func (s *Source) group() Value {
    	var as []Attr
    	if s.Function != "" {
    		as = append(as, String("function", s.Function))
    	}
    	if s.File != "" {
    		as = append(as, String("file", s.File))
    	}
    	if s.Line != 0 {
    		as = append(as, Int("line", s.Line))
    	}
    	return GroupValue(as...)
    }
    
    // source returns a Source for the log event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/obj6.go

    		jne := obj.Appendp(p, newprog)
    		jne.As = AJNE
    		jne.To.Type = obj.TYPE_BRANCH
    
    		// end:
    		//  NOP
    		end := obj.Appendp(jne, newprog)
    		end.As = obj.ANOP
    
    		// Fast forward to end of function.
    		var last *obj.Prog
    		for last = end; last.Link != nil; last = last.Link {
    		}
    
    		// LEAQ (autoffset+8)(SP), regEntryTmp1
    		p = obj.Appendp(last, newprog)
    		p.As = ALEAQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

                <child>child</child>
                <parent-only>parent</parent-only>
              </defaults>
              <appends combine.children="append">
                <parent-only>parent</parent-only>
                <parent>parent</parent>
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
                <parent>child</parent>
                <child>child</child>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/plist.go

    					}
    				}
    			}
    			if !foundArgMap {
    				p := Appendp(s.Func().Text, newprog)
    				p.As = AFUNCDATA
    				p.From.Type = TYPE_CONST
    				p.From.Offset = abi.FUNCDATA_ArgsPointerMaps
    				p.To.Type = TYPE_MEM
    				p.To.Name = NAME_EXTERN
    				p.To.Sym = ctxt.LookupDerived(s, s.Name+".args_stackmap")
    			}
    			if !foundArgInfo {
    				p := Appendp(s.Func().Text, newprog)
    				p.As = AFUNCDATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/pack/doc.go

    Pack applies the operation to the archive, using the names as arguments to the operation.
    
    The operation op is given by one of these letters:
    
    	c	append files (from the file system) to a new archive
    	p	print files from the archive
    	r	append files (from the file system) to the archive
    	t	list files from the archive
    	x	extract files from the archive
    
    The archive argument to the c command must be non-existent or a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		AlwaysAllowGroups: []string{"system:masters"},
    	}
    }
    
    // WithAlwaysAllowGroups appends the list of paths to AlwaysAllowGroups
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowGroups(groups ...string) *DelegatingAuthorizationOptions {
    	s.AlwaysAllowGroups = append(s.AlwaysAllowGroups, groups...)
    	return s
    }
    
    // WithAlwaysAllowPaths appends the list of paths to AlwaysAllowPaths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	b := byte(i)
    	if i >= 100 {
    		buf = append(buf, b/100+'0')
    	}
    	if i >= 10 {
    		buf = append(buf, b/10%10+'0')
    	}
    	return append(buf, b%10+'0')
    }
    
    func printByteSlice(b []byte) string {
    	if len(b) == 0 {
    		return ""
    	}
    	buf := make([]byte, 0, 5*len(b))
    	buf = printUint8Bytes(buf, uint8(b[0]))
    	for _, n := range b[1:] {
    		buf = append(buf, ',', ' ')
    		buf = printUint8Bytes(buf, uint8(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/builtins0.go

    	_ = append(s, "foo"...)
    	_ = append(S(s), "foo" /* ERRORx `cannot use .* in argument to append` */ )
    	_ = append(S(s), "foo"...)
    	_ = append(s, t /* ERROR "cannot use t" */ )
    	_ = append(s, t...)
    	_ = append(s, T("foo")...)
    	_ = append(S(s), t /* ERROR "cannot use t" */ )
    	_ = append(S(s), t...)
    	_ = append(S(s), T("foo")...)
    	_ = append([]string{}, t /* ERROR "cannot use t" */ , "foo")
    	_ = append([]T{}, t, "foo")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/driver-call.go

    	return &DriverCall{
    		Command: command,
    		Timeout: timeout,
    		plugin:  plugin,
    		args:    []string{command},
    	}
    }
    
    // Append appends arg into driver call argument list
    func (dc *DriverCall) Append(arg string) {
    	dc.args = append(dc.args, arg)
    }
    
    // AppendSpec appends volume spec to driver call argument list
    func (dc *DriverCall) AppendSpec(spec *volume.Spec, host volume.VolumeHost, extraOptions map[string]string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  10. src/os/exec_windows.go

    				if inquote && len(cmd) > 1 && cmd[1] == '"' {
    					b = append(b, c)
    					cmd = cmd[1:]
    				}
    				inquote = !inquote
    			} else {
    				b = append(b, c)
    			}
    			nslash = 0
    			continue
    		case '\\':
    			nslash++
    			continue
    		}
    		b = appendBSBytes(b, nslash)
    		nslash = 0
    		b = append(b, c)
    	}
    	return appendBSBytes(b, nslash), ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top