Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NFile (0.07 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	nBranchStmt
    	nCallExpr
    	nCaseClause
    	nChanType
    	nCommClause
    	nComment
    	nCommentGroup
    	nCompositeLit
    	nDeclStmt
    	nDeferStmt
    	nEllipsis
    	nEmptyStmt
    	nExprStmt
    	nField
    	nFieldList
    	nFile
    	nForStmt
    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    	nIdent
    	nIfStmt
    	nImportSpec
    	nIncDecStmt
    	nIndexExpr
    	nIndexListExpr
    	nInterfaceType
    	nKeyValueExpr
    	nLabeledStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/FileArchOnlyBinaryInfo.groovy

            } else if (header.contains("80386")) {
                return Architectures.forInput("x86")
            } else {
                throw new RuntimeException("Cannot determine architecture for ${header}\nfile output:\n${lines}")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                    channel = null;
                } catch (IOException e) {
                    getLogger()
                            .debug(
                                    "Failed to record lastUpdated information for resolution.\nFile: "
                                            + touchfile.toString() + "; key: " + key,
                                    e);
                } finally {
                    if (lock != null) {
                        try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    	}
    
    	dynstr := ldr.CreateSymForUpdate(".dynstr", 0)
    
    	// version symbols
    	gnuVersionR := ldr.CreateSymForUpdate(".gnu.version_r", 0)
    	s = gnuVersionR
    	i = 2
    	nfile := 0
    	for l := needlib; l != nil; l = l.next {
    		nfile++
    
    		// header
    		s.AddUint16(ctxt.Arch, 1) // table version
    		j := 0
    		for x := l.aux; x != nil; x = x.next {
    			j++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/objfile.go

    }
    
    func (r *Reader) Pkg(i int) string {
    	off := r.h.Offsets[BlkPkgIdx] + uint32(i)*stringRefSize
    	return r.StringRef(off)
    }
    
    func (r *Reader) NFile() int {
    	return int(r.h.Offsets[BlkFile+1]-r.h.Offsets[BlkFile]) / stringRefSize
    }
    
    func (r *Reader) File(i int) string {
    	off := r.h.Offsets[BlkFile] + uint32(i)*stringRefSize
    	return r.StringRef(off)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	}
    
    	// Autolib
    	lib.Autolib = append(lib.Autolib, r.Autolib()...)
    
    	// DWARF file table
    	nfile := r.NFile()
    	unit.FileTable = make([]string, nfile)
    	for i := range unit.FileTable {
    		unit.FileTable[i] = r.File(i)
    	}
    
    	l.addObj(lib.Pkg, or)
    
    	// The caller expects us consuming all the data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	hostobjcounter++
    	opath := filepath.Join(*flagCaptureHostObjs, ofile)
    	ipath := filepath.Join(*flagCaptureHostObjs, ifile)
    
    	// Write the info file.
    	info := fmt.Sprintf("pkg: %s\npn: %s\nfile: %s\noff: %d\nlen: %d\n",
    		h.pkg, h.pn, h.file, h.off, h.length)
    	if err := os.WriteFile(ipath, []byte(info), 0666); err != nil {
    		log.Fatalf("error writing captured host obj info %s: %v", ipath, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top