Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for filemap (0.22 sec)

  1. src/go/types/check_test.go

    			// not the last entry - slide entries down (don't reorder)
    			copy(errList[index:], errList[index+1:])
    			filemap[line] = errList[:n]
    		} else {
    			// last entry - remove errList from filemap
    			delete(filemap, line)
    		}
    
    		// if filemap is empty, eliminate from errmap
    		if len(filemap) == 0 {
    			delete(errmap, filename)
    		}
    	}
    
    	// there should be no expected errors left
    	if len(errmap) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                return fileList.stream().map(fileMap -> {
                    try {
                        final String path = fileMap.get("path").toString();
                        final Date timestamp =
                                new SimpleDateFormat(Constants.DATE_FORMAT_ISO_8601_EXTEND_UTC).parse(fileMap.get("@timestamp").toString());
                        for (final DictionaryCreator creator : creatorList) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestMergeSpecTest.groovy

            DefaultManifest fileManifest = new DefaultManifest(fileResolver)
            def fileMap = [key2: 'value2File', key4: 'value4File', key6: 'value6File'] as LinkedHashMap
            def fileSectionMap = [keysec2: 'value2Secfile', keysec4: 'value5Secfile', keysec6: 'value6Secfile']
            fileManifest.attributes(fileMap)
            fileManifest.attributes(fileSectionMap, 'section')
            fileManifest.writeTo(manifestFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check_test.go

    			// not the last entry - slide entries down (don't reorder)
    			copy(errList[index:], errList[index+1:])
    			filemap[line] = errList[:n]
    		} else {
    			// last entry - remove errList from filemap
    			delete(filemap, line)
    		}
    
    		// if filemap is empty, eliminate from errmap
    		if len(filemap) == 0 {
    			delete(errmap, filename)
    		}
    	}
    
    	// there should be no expected errors left
    	if len(errmap) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    func (t *LineTable) findFileLine(entry uint64, filetab, linetab uint32, filenum, line int32, cutab []byte) uint64 {
    	if filetab == 0 || linetab == 0 {
    		return 0
    	}
    
    	fp := t.pctab[filetab:]
    	fl := t.pctab[linetab:]
    	fileVal := int32(-1)
    	filePC := entry
    	lineVal := int32(-1)
    	linePC := entry
    	fileStartPC := filePC
    	for t.step(&fp, &filePC, &fileVal, filePC == entry) {
    		fileIndex := fileVal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. docs/debugging/xl-meta/main.go

    							if i > 1 {
    								file = fmt.Sprintf("%s/part.%d", file, i)
    								filemap[file] = make(map[string]string)
    								filemap[file][verID] = fmt.Sprintf("%s/part.%d/shard-%02d-of-%02d", verID, i, idx, ei.V2Obj.EcN+ei.V2Obj.EcM)
    								filemap[file][verID+".json"] = buf.String()
    							}
    							partDataToVerID[dataFile] = [2]string{file, verID}
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/runtime/align_test.go

    	pkg := m["runtime"] // Note: ignore runtime_test and main packages
    
    	// Filter files by those for the current architecture/os being tested.
    	fileMap := map[string]bool{}
    	for _, f := range buildableFiles(t, ".") {
    		fileMap[f] = true
    	}
    	var files []*ast.File
    	for fname, f := range pkg.Files {
    		if fileMap[fname] {
    			files = append(files, f)
    		}
    	}
    
    	// Call go/types to analyze the runtime package.
    	var info types.Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

        }
    
        def testInitWithPathFileResolver() {
            TestFile manifestFile = tmpDir.file('somefile')
            def fileMap = [Key2: 'value2File', key4: 'value4File', key6: 'value6File']
            def fileSectionMap = [Keysec2: 'value2Secfile', keysec4: 'value5Secfile', keysec6: 'value6Secfile']
            String content = ''
            fileMap.each {key, value ->
                content += String.format("%s: %s%n", key, value)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/go/types/generate_test.go

    	// If filesToWrite is set, write the generated content to disk.
    	// In the special case of "all", write all files in filemap.
    	write := *filesToWrite != ""
    	var files []string // files to process
    	if *filesToWrite != "" && *filesToWrite != "all" {
    		files = strings.Split(*filesToWrite, ",")
    	} else {
    		for file := range filemap {
    			files = append(files, file)
    		}
    	}
    
    	for _, filename := range files {
    		generate(t, filename, write)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/MimeMap.java

    import java.io.IOException;
    
    public class MimeMap {
    
        private static final int IN_SIZE = 7000;
    
        private static final int ST_START = 1;
        private static final int ST_COMM = 2;
        private static final int ST_TYPE = 3;
        private static final int ST_GAP = 4;
        private static final int ST_EXT = 5;
    
        private byte[] in;
        private int inLen;
    
        public MimeMap() throws IOException {
            int n;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
Back to top