Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for Fset (0.29 sec)

  1. src/go/build/build.go

    		// skip
    		return nil, nil
    	}
    
    	if !ctxt.goodOSArchFile(name, allTags) && !ctxt.UseAllFiles {
    		return nil, nil
    	}
    
    	info := &fileInfo{name: ctxt.joinPath(dir, name), fset: fset}
    	if ext == ".syso" {
    		// binary, no reading
    		return info, nil
    	}
    
    	f, err := ctxt.openFile(info.name)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/go/token/position.go

    //
    // To create the Pos value for a specific source offset (measured in bytes),
    // first add the respective file to the current file set using [FileSet.AddFile]
    // and then call [File.Pos](offset) for that file. Given a Pos value p
    // for a specific file set fset, the corresponding [Position] value is
    // obtained by calling fset.Position(p).
    //
    // Pos values can be compared directly with the usual comparison operators:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    			}
    		default:
    			check.error(s, InvalidSyntaxTree, "case/communication clause expected")
    		}
    		if d != nil {
    			if first != nil {
    				check.errorf(d, DuplicateDefault, "multiple defaults (first at %s)", check.fset.Position(first.Pos()))
    			} else {
    				first = d
    			}
    		}
    	}
    }
    
    func (check *Checker) openScope(node ast.Node, comment string) {
    	scope := NewScope(check.scope, node.Pos(), node.End(), comment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/reflect/type.go

    							Tfn:  resolveReflectText(textOffFor(ft, m.Tfn)),
    						})
    
    					}
    				}
    			}
    		}
    		if _, dup := fset[name]; dup && name != "_" {
    			panic("reflect.StructOf: duplicate field " + name)
    		}
    		fset[name] = struct{}{}
    
    		hash = fnv1(hash, byte(ft.Hash>>24), byte(ft.Hash>>16), byte(ft.Hash>>8), byte(ft.Hash))
    
    		repr = append(repr, (" " + stringFor(ft))...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			t.Go = c.goVoidPtr
    			t.C.Set("void*")
    			dq := dt.Type
    			for {
    				if d, ok := dq.(*dwarf.QualType); ok {
    					t.C.Set(d.Qual + " " + t.C.String())
    					dq = d.Type
    				} else {
    					break
    				}
    			}
    			break
    		}
    
    		// Placeholder initialization; completed in FinishType.
    		t.Go = &ast.StarExpr{}
    		t.C.Set("<incomplete>*")
    		key := dt.Type.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    // rawExpr typechecks expression e and initializes x with the expression
    // value or type. If an error occurred, x.mode is set to invalid.
    // If a non-nil target T is given and e is a generic function,
    // T is used to infer the type arguments for e.
    // If hint != nil, it is the type of a composite literal element.
    // If allowGeneric is set, the operand type may be an uninstantiated
    // parameterized type or function value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	}
    
    	cache.iamGroupsMap[group] = gi
    
    	// update user-group membership map
    	for _, member := range members {
    		gset := cache.iamUserGroupMemberships[member]
    		if gset == nil {
    			gset = set.CreateStringSet(group)
    		} else {
    			gset.Add(group)
    		}
    		cache.iamUserGroupMemberships[member] = gset
    	}
    
    	cache.updatedAt = time.Now()
    	return gi.UpdatedAt, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. cmd/metacache-set.go

    	// Retention configuration, needed to be passed along with lifecycle if set.
    	Retention lock.Retention `msg:"-"`
    
    	// Replication configuration
    	Replication replicationConfig `msg:"-"`
    
    	// StopDiskAtLimit will stop listing on each disk when limit number off objects has been returned.
    	StopDiskAtLimit bool
    
    	// pool and set of where the cache is located.
    	pool, set int
    }
    
    func init() {
    	gob.Register(listPathOptions{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. src/go/types/typeset.go

    			}
    			terms = tset.terms
    		case *Union:
    			if pos.IsValid() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
    				continue
    			}
    			tset := computeUnionTypeSet(check, unionSets, pos, u)
    			if tset == &invalidTypeSet {
    				continue // ignore invalid unions
    			}
    			assert(!tset.comparable)
    			assert(len(tset.methods) == 0)
    			terms = tset.terms
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typeset.go

    			}
    			terms = tset.terms
    		case *Union:
    			if pos.IsKnown() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
    				continue
    			}
    			tset := computeUnionTypeSet(check, unionSets, pos, u)
    			if tset == &invalidTypeSet {
    				continue // ignore invalid unions
    			}
    			assert(!tset.comparable)
    			assert(len(tset.methods) == 0)
    			terms = tset.terms
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top