Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for GetBase (0.28 sec)

  1. src/cmd/internal/src/pos.go

    func (p Pos) Filename() string { return p.base.Pos().RelFilename() }
    
    // Base returns the position base.
    func (p Pos) Base() *PosBase { return p.base }
    
    // SetBase sets the position base.
    func (p *Pos) SetBase(base *PosBase) { p.base = base }
    
    // RelFilename returns the filename recorded with the position's base.
    func (p Pos) RelFilename() string { return p.base.Filename() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    		return x.OwnerName
    	}
    	return ""
    }
    
    func (x *Values) GetMeshConfig() *structpb.Value {
    	if x != nil {
    		return x.MeshConfig
    	}
    	return nil
    }
    
    func (x *Values) GetBase() *BaseConfig {
    	if x != nil {
    		return x.Base
    	}
    	return nil
    }
    
    func (x *Values) GetIstiodRemote() *IstiodRemoteConfig {
    	if x != nil {
    		return x.IstiodRemote
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/input.go

    	tok = in.Stack.Next()
    	if tok != '\n' {
    		in.Error("unexpected token at end of #line: ", tok)
    	}
    	pos := src.MakePos(in.Base(), uint(in.Line())+1, 1) // +1 because #line nnn means line nnn starts on next line
    	in.Stack.SetBase(src.NewLinePragmaBase(pos, file, objabi.AbsFile(objabi.WorkingDir(), file, *flags.TrimPath), uint(line), 1))
    }
    
    // #undef processing
    func (in *Input) undef() {
    	name := in.macroName()
    	if in.macros[name] == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top