Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 224 for targ (0.07 sec)

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

    	for i, tpar := range tparams {
    		pos := pos
    		if i < len(xlist) {
    			pos = startPos(xlist[i])
    		}
    		w.assign(pkg, pos, tpar, targs[i])
    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos syntax.Pos, tpar *TypeParam, targ Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    func Rel(basepath, targpath string) (string, error) {
    	baseVol := VolumeName(basepath)
    	targVol := VolumeName(targpath)
    	base := Clean(basepath)
    	targ := Clean(targpath)
    	if sameWord(targ, base) {
    		return ".", nil
    	}
    	base = base[len(baseVol):]
    	targ = targ[len(targVol):]
    	if base == "." {
    		base = ""
    	} else if base == "" && filepathlite.VolumeNameLen(baseVol) > 2 /* isUNC */ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

        public String toString () {
            if ( this.gssContext == null || !this.gssContext.isEstablished() ) {
                return String.format("KERB5[src=%s,targ=%s]", this.clientName, this.serviceName);
            }
            try {
                return String
                        .format("KERB5[src=%s,targ=%s,mech=%s]", this.gssContext.getSrcName(), this.gssContext.getTargName(), this.gssContext.getMech());
            }
            catch ( GSSException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/riscv64/asm.go

    	targ := r.Sym()
    
    	var targType sym.SymKind
    	if targ != 0 {
    		targType = ldr.SymType(targ)
    	}
    
    	switch r.Type() {
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_RISCV_CALL),
    		objabi.ElfRelocOffset + objabi.RelocType(elf.R_RISCV_CALL_PLT):
    
    		if targType == sym.SDYNIMPORT {
    			addpltsym(target, ldr, syms, targ)
    			su := ldr.MakeSymbolUpdater(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/go/types/mono.go

    	for i, tpar := range tparams {
    		pos := pos
    		if i < len(xlist) {
    			pos = startPos(xlist[i])
    		}
    		w.assign(pkg, pos, tpar, targs[i])
    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos token.Pos, tpar *TypeParam, targ Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    		if inferred != tpar {
    			if reverse {
    				err.addf(arg, "inferred type %s for %s does not match type %s of %s", inferred, tpar, targ, arg.expr)
    			} else {
    				err.addf(arg, "type %s of %s does not match inferred type %s for %s", targ, arg.expr, inferred, tpar)
    			}
    		} else {
    			err.addf(arg, "type %s of %s does not match %s", targ, arg.expr, tpar)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/mips64/asm.go

    		dtOffsets[dt] = dynamic.Size() - 8
    	}
    }
    
    func adddynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym, r loader.Reloc, rIdx int) bool {
    	targ := r.Sym()
    	var targType sym.SymKind
    	if targ != 0 {
    		targType = ldr.SymType(targ)
    	}
    
    	if r.Type() >= objabi.ElfRelocOffset {
    		ldr.Errorf(s, "unexpected relocation type %d (%s)", r.Type(), sym.RelocName(target.Arch, r.Type()))
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// Start final link command line.
    	// Note: code below knows that link.p[targ] is the target.
    	var (
    		link      []string
    		targ      int
    		ispackcmd bool
    	)
    	if ispkg {
    		// Go library (package).
    		ispackcmd = true
    		link = []string{"pack", packagefile(pkg)}
    		targ = len(link) - 1
    		xmkdirall(filepath.Dir(link[targ]))
    	} else {
    		// Go command.
    		elem := name
    		if elem == "go" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    	// Find target of break/continue/goto in r.forStack.
    	// (The target may not be in r.forStack at all.)
    	targ := x.Target
    	i := len(r.forStack) - 1
    	if x.Label == nil && r.forStack[i].nfor != targ {
    		// Unlabeled break or continue that's not nfor must be inside nfor. Leave alone.
    		return x
    	}
    	for i >= 0 && r.forStack[i].nfor != targ {
    		i--
    	}
    	// exitFrom is the index of the loop interior to the target of the control flow,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    	}
    
    	xldr := &xcoffLoaderReloc{
    		sym:  s,
    		roff: r.Off(),
    	}
    	targ := r.Sym()
    	var targType sym.SymKind
    	if targ != 0 {
    		targType = ldr.SymType(targ)
    	}
    
    	switch r.Type() {
    	default:
    		ldr.Errorf(s, "unexpected .loader relocation to symbol: %s (type: %s)", ldr.SymName(targ), r.Type().String())
    		return false
    	case objabi.R_ADDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top