Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for filelist (0.15 sec)

  1. src/internal/xcoff/file_test.go

    // license that can be found in the LICENSE file.
    
    package xcoff
    
    import (
    	"reflect"
    	"testing"
    )
    
    type fileTest struct {
    	file     string
    	hdr      FileHeader
    	sections []*SectionHeader
    	needed   []string
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-ppc32-aix-dwarf2-exec",
    		FileHeader{U802TOCMAGIC},
    		[]*SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. src/runtime/symtabinl_test.go

    	prevStack := "x"
    	for pc := pc1; pc < pc1+1024 && findfunc(pc) == f; pc += sys.PCQuantum {
    		stack := ""
    		u, uf := newInlineUnwinder(f, pc)
    		if file, _ := u.fileLine(uf); file == "?" {
    			// We're probably in the trailing function padding, where findfunc
    			// still returns f but there's no symbolic information. Just keep
    			// going until we definitely hit the end. If we see a "?" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    current-context: kubernetes-admin@kubernetes
    kind: Config
    preferences: {}
    users:
    - name: kubernetes-admin`))
    
    func TestCreateBootstrapConfigMapIfNotExists(t *testing.T) {
    	tests := []struct {
    		name      string
    		fileExist bool
    		createErr error
    		expectErr bool
    	}{
    		{
    			"successful case should have no error",
    			true,
    			nil,
    			false,
    		},
    		{
    			"if configmap already exists, return error",
    			true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// []Elem
    	SliceType struct {
    		Elem Expr
    		expr
    	}
    
    	// ...Elem
    	DotsType struct {
    		Elem Expr
    		expr
    	}
    
    	// struct { FieldList[0] TagList[0]; FieldList[1] TagList[1]; ... }
    	StructType struct {
    		FieldList []*Field
    		TagList   []*BasicLit // i >= len(TagList) || TagList[i] == nil means no tag for field i
    		expr
    	}
    
    	// Name Type
    	//      Type
    	Field struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/runtime/symtabinl.go

    func badSrcFunc(*inlineUnwinder, inlineFrame) srcFunc
    
    // fileLine returns the file name and line number of the call within the given
    // frame. As a convenience, for the innermost frame, it returns the file and
    // line of the PC this unwinder was started at (often this is a call to another
    // physical function).
    //
    // It returns "?", 0 if something goes wrong.
    func (u *inlineUnwinder) fileLine(uf inlineFrame) (file string, line int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. test/inline_literal.go

    }
    
    // Test for issue #15453. Previously, line 26 would appear in foo().
    func main() {
    	pc := funcPC(foo)
    	f := runtime.FuncForPC(pc)
    	for ; runtime.FuncForPC(pc) == f; pc++ {
    		file, line := f.FileLine(pc)
    		if line == 0 {
    			continue
    		}
    		// Line 16 can appear inside foo() because PC-line table has
    		// innermost line numbers after inlining.
    		if line != 16 && !(line >= 19 && line <= 22) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 03 21:29:32 UTC 2017
    - 1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    	return map_RoleBindingList
    }
    
    var map_RoleList = map[string]string{
    	"":         "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of Roles",
    }
    
    func (RoleList) SwaggerDoc() map[string]string {
    	return map_RoleList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    	return map_RoleBindingList
    }
    
    var map_RoleList = map[string]string{
    	"":         "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of Roles",
    }
    
    func (RoleList) SwaggerDoc() map[string]string {
    	return map_RoleList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

                  {{if not .Synthetic -}}
                    {{/* disassembled instruction */ -}}
                    {{printf " %8s %10s %10s %8x: %s " "" .Flat .Cumulative .Address .Disasm -}}
                    <span class=unimportant>{{.FileLine}}</span>{{"\n" -}}
                  {{end -}}
                {{end -}}
                </span>{{"" -}}
              {{end -}}
              {{/* end of line */ -}}
            {{end}}{{"\n" -}}
          </pre>{{"\n" -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top