Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tmpBuf (0.11 sec)

  1. src/runtime/heapdump.go

    	if uintptr(len(tmpbuf)) < nptr/8+1 {
    		if tmpbuf != nil {
    			sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
    		}
    		n := nptr/8 + 1
    		p := sysAlloc(n, &memstats.other_sys)
    		if p == nil {
    			throw("heapdump: out of memory")
    		}
    		tmpbuf = (*[1 << 30]byte)(p)[:n]
    	}
    	// Convert heap bitmap to pointer bitmap.
    	clear(tmpbuf[:nptr/8+1])
    	s := spanOf(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/string.go

    	return s
    }
    
    func concatstring2(buf *tmpBuf, a0, a1 string) string {
    	return concatstrings(buf, []string{a0, a1})
    }
    
    func concatstring3(buf *tmpBuf, a0, a1, a2 string) string {
    	return concatstrings(buf, []string{a0, a1, a2})
    }
    
    func concatstring4(buf *tmpBuf, a0, a1, a2, a3 string) string {
    	return concatstrings(buf, []string{a0, a1, a2, a3})
    }
    
    func concatstring5(buf *tmpBuf, a0, a1, a2, a3, a4 string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/runtime/debuglog.go

    			s.first = false
    		}
    
    		end, _, nano, p := s.header()
    		oldEnd := s.end
    		s.end = end
    
    		print("[")
    		var tmpbuf [21]byte
    		pnano := int64(nano) - runtimeInitTime
    		if pnano < 0 {
    			// Logged before runtimeInitTime was set.
    			pnano = 0
    		}
    		pnanoBytes := itoaDiv(tmpbuf[:], uint64(pnano), 9)
    		print(slicebytetostringtmp((*byte)(noescape(unsafe.Pointer(&pnanoBytes[0]))), len(pnanoBytes)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/timer/MonitorTarget.java

                    tempBuf.append(((Short) value).shortValue());
                } else if (value instanceof double[]) {
                    tempBuf.append(Arrays.toString((double[]) value));
                } else {
                    tempBuf.append('"').append(StringEscapeUtils.escapeJson(value.toString())).append('"');
                }
            } catch (final Exception e) {
                tempBuf.append("null");
            }
            buf.append(tempBuf.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

                final String hotThreads = response.getNodesMap().entrySet().stream().map(e -> {
                    final StringBuilder tempBuf = new StringBuilder();
                    append(tempBuf, StringEscapeUtils.escapeJson(e.getKey()), () -> StringEscapeUtils.escapeJson(e.getValue().getHotThreads()));
                    return tempBuf.toString();
                }).collect(Collectors.joining(","));
                buf.append(hotThreads).append(',');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/mime/multipart/formdata.go

    			remainingSize, err := io.CopyBuffer(writerOnly{file}, p, copyBuf)
    			if err != nil {
    				return nil, err
    			}
    			fh.tmpfile = file.Name()
    			fh.Size = int64(b.Len()) + remainingSize
    			fh.tmpoff = fileOff
    			fileOff += fh.Size
    			if !combineFiles {
    				if err := file.Close(); err != nil {
    					return nil, err
    				}
    				file = nil
    			}
    		} else {
    			fh.content = b.Bytes()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                buf.append('{');
                final String json = ((Map<?, ?>) value).entrySet().stream().map(e -> {
                    final StringBuilder tempBuf = new StringBuilder();
                    appendJson(e.getKey().toString(), e.getValue(), tempBuf);
                    return tempBuf.toString();
                }).collect(Collectors.joining(","));
                buf.append(json);
                buf.append('}');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    	pkglist []string // list of packages referenced, indexed by ctxt.pkgIdx
    
    	// scratch space for writing (the Write methods escape
    	// as they are interface calls)
    	tmpSym      goobj.Sym
    	tmpReloc    goobj.Reloc
    	tmpAux      goobj.Aux
    	tmpHash64   goobj.Hash64Type
    	tmpHash     goobj.HashType
    	tmpRefFlags goobj.RefFlags
    	tmpRefName  goobj.RefName
    }
    
    // prepare package index list
    func (w *writer) init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    	defer func() {
    		version.DockerInfo.Hub, version.DockerInfo.Tag = tmpHub, tmpTag
    	}()
    	version.DockerInfo.Hub = "testHub"
    	version.DockerInfo.Tag = "testTag"
    	l := clog.NewConsoleLogger(os.Stdout, os.Stderr, installerScope)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top