Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,133 for sprint (0.21 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	Focus        string  `json:"focus,omitempty"`
    	Ignore       string  `json:"ignore,omitempty"`
    	PruneFrom    string  `json:"prune_from,omitempty"`
    	Hide         string  `json:"hide,omitempty"`
    	Show         string  `json:"show,omitempty"`
    	ShowFrom     string  `json:"show_from,omitempty"`
    	TagFocus     string  `json:"tagfocus,omitempty"`
    	TagIgnore    string  `json:"tagignore,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/options.go

    	return true
    }
    
    func (ui *stdUI) SetAutoComplete(func(string) string) {
    }
    
    func (ui *stdUI) fprint(f *os.File, args []interface{}) {
    	text := fmt.Sprint(args...)
    	if !strings.HasSuffix(text, "\n") {
    		text += "\n"
    	}
    	f.WriteString(text)
    }
    
    // oswriter implements the Writer interface using a regular file.
    type oswriter struct{}
    
    func (oswriter) Open(name string) (io.WriteCloser, error) {
    	f, err := os.Create(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 12:27:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xds_cache_test.go

    		}
    		retry.UntilOrFail(t, func() bool {
    			val := c.Get(k)
    			return val != nil && val.Resource.TypeUrl == fmt.Sprint(n.Load())
    		})
    		for i := 0; i < 5; i++ {
    			val := c.Get(k)
    			if val == nil {
    				t.Fatalf("no cache found")
    			}
    			if val != nil && val.Resource.TypeUrl != fmt.Sprint(n.Load()) {
    				t.Fatalf("got bad write: %v", val.Resource.TypeUrl)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    func (klogWrapper) Fatal(args ...interface{}) {
    	klog.FatalDepth(klogWrapperDepth, args...)
    }
    
    func (klogWrapper) Fatalln(args ...interface{}) {
    	klog.FatalDepth(klogWrapperDepth, fmt.Sprintln(args...))
    }
    
    func (klogWrapper) Fatalf(format string, args ...interface{}) {
    	klog.FatalDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopbce.go

    	}
    	if flags&indVarMaxInc == 0 {
    		mb2 = ")"
    	}
    
    	mlim1, mlim2 := fmt.Sprint(min.AuxInt), fmt.Sprint(max.AuxInt)
    	if !min.isGenericIntConst() {
    		if b.Func.pass.debug >= 2 {
    			mlim1 = fmt.Sprint(min)
    		} else {
    			mlim1 = "?"
    		}
    	}
    	if !max.isGenericIntConst() {
    		if b.Func.pass.debug >= 2 {
    			mlim2 = fmt.Sprint(max)
    		} else {
    			mlim2 = "?"
    		}
    	}
    	extra := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/nonstructuralschema/nonstructuralschema_controller_test.go

    				Type:   apiextensionsv1.NonStructuralSchema,
    				Status: apiextensionsv1.ConditionTrue,
    				Reason: "Violations",
    				Message: field.Invalid(field.NewPath("spec", "preserveUnknownFields"),
    					true,
    					fmt.Sprint("must be false")).Error(),
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := calculateCondition(tt.args); !reflect.DeepEqual(got, tt.want) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 21 21:43:52 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue29312.go

    // fmt.Sprintf (instead of the correct 253 one). But the data
    // structure at runtime actually has 253 nesting levels. So we end up
    // calling String on something that is of type [][]*pwn instead of
    // something of type *pwn. The way arg passing in Go works, the
    // backing store pointer for the outer slice becomes the "this"
    // pointer of the String method, which points to the inner []*pwn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/flags/flags.go

    	Importpath = flag.String("p", obj.UnlinkablePkg, "set expected package import to path")
    	Spectre    = flag.String("spectre", "", "enable spectre mitigations in `list` (all, ret)")
    )
    
    var DebugFlags struct {
    	MayMoreStack string `help:"call named function before all stack growth checks"`
    	PCTab        string `help:"print named pc-value table\nOne of: pctospadj, pctofile, pctoline, pctoinline, pctopcdata"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/compress/lzw/writer_test.go

    				buf0 = buf0[:n-i]
    			}
    			copy(buf1[i:], buf0)
    		}
    		buf0 = nil
    		runtime.GC()
    		b.Run(fmt.Sprint("1e", e), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			for i := 0; i < b.N; i++ {
    				w := NewWriter(io.Discard, LSB, 8)
    				w.Write(buf1)
    				w.Close()
    			}
    		})
    		b.Run(fmt.Sprint("1e-Reuse", e), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			w := NewWriter(io.Discard, LSB, 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. pkg/test/framework/config/map.go

    )
    
    type Map map[string]any
    
    func (m Map) Map(key string) Map {
    	nested, ok := m[key]
    	if !ok {
    		return nil
    	}
    	out, ok := nested.(Map)
    	if !ok {
    		return nil
    	}
    	return out
    }
    
    func (m Map) String(key string) string {
    	v, ok := m[key]
    	if !ok || v == nil {
    		return ""
    	}
    	str, ok := v.(string)
    	if !ok {
    		return fmt.Sprint(m[key])
    	}
    	return str
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top