Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for filelist (0.13 sec)

  1. src/cmd/compile/internal/types2/struct.go

    // Implementation
    
    func (s *Struct) markComplete() {
    	if s.fields == nil {
    		s.fields = make([]*Var, 0)
    	}
    }
    
    func (check *Checker) structType(styp *Struct, e *syntax.StructType) {
    	if e.FieldList == nil {
    		styp.markComplete()
    		return
    	}
    
    	// struct fields and tags
    	var fields []*Var
    	var tags []string
    
    	// for double-declaration checks
    	var fset objset
    
    	// current field typ and tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of Roles
      repeated Role items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/go/doc/filter.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package doc
    
    import "go/ast"
    
    type Filter func(string) bool
    
    func matchFields(fields *ast.FieldList, f Filter) bool {
    	if fields != nil {
    		for _, field := range fields.List {
    			for _, name := range field.Names {
    				if f(name.Name) {
    					return true
    				}
    			}
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of Roles
      repeated Role items = 2;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/runtime/symtab_test.go

    	})
    	b.Run("Entry", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			pc := f.Entry()
    			if pc == 0 {
    				b.Fatal("zero PC")
    			}
    		}
    	})
    	b.Run("FileLine", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			file, line := f.FileLine(pc)
    			if !strings.HasSuffix(file, "symtab_test.go") || line == 0 {
    				b.Fatalf("unexpected file/line %q:%d", file, line)
    			}
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    			Index: &i,
    		}, nil
    	case Key:
    		kv := map[string]json.RawMessage{}
    		err := json.Unmarshal([]byte(split[1]), &kv)
    		if err != nil {
    			return fieldpath.PathElement{}, err
    		}
    		fields := value.FieldList{}
    		for k, v := range kv {
    			b, err := json.Marshal(v)
    			if err != nil {
    				return fieldpath.PathElement{}, err
    			}
    			val, err := value.FromJSON(b)
    			if err != nil {
    				return fieldpath.PathElement{}, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/go/doc/exports.go

    // recorded with the parent type. filterType is called with the types of
    // all remaining fields.
    func (r *reader) filterFieldList(parent *namedType, fields *ast.FieldList, ityp *ast.InterfaceType) (removedFields bool) {
    	if fields == nil {
    		return
    	}
    	list := fields.List
    	j := 0
    	for _, field := range list {
    		keepField := false
    		if n := len(field.Names); n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    func (RoleBindingList) SwaggerDoc() map[string]string {
    	return map_RoleBindingList
    }
    
    var map_RoleList = map[string]string{
    	"":         "RoleList is a collection of Roles",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of Roles",
    }
    
    func (RoleList) SwaggerDoc() map[string]string {
    	return map_RoleList
    }
    
    var map_RoleRef = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *RoleList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	case *ast.Ellipsis:
    		return 1 << nEllipsis
    	case *ast.EmptyStmt:
    		return 1 << nEmptyStmt
    	case *ast.ExprStmt:
    		return 1 << nExprStmt
    	case *ast.Field:
    		return 1 << nField
    	case *ast.FieldList:
    		return 1 << nFieldList
    	case *ast.File:
    		return 1 << nFile
    	case *ast.ForStmt:
    		return 1 << nForStmt
    	case *ast.FuncDecl:
    		return 1 << nFuncDecl
    	case *ast.FuncLit:
    		return 1 << nFuncLit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top