Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Grown (0.04 sec)

  1. api/except.txt

    pkg syscall (openbsd-386), type Dirent struct, Fileno uint32
    pkg syscall (openbsd-386), type FdSet struct, Bits [32]int32
    pkg syscall (openbsd-386), type Kevent_t struct, Data int32
    pkg syscall (openbsd-386), type Mclpool struct, Grown uint32
    pkg syscall (openbsd-386), type RtMetrics struct, Expire uint32
    pkg syscall (openbsd-386), type Stat_t struct, Ino uint32
    pkg syscall (openbsd-386), type Stat_t struct, Lspare0 int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    				m.close()
    			} else {
    				m1 = m
    			}
    		}
    	}()
    
    	v, headOff, head, ok := m.lookup(name)
    	for !ok {
    		// Lookup found an invalid pointer,
    		// perhaps because the file has grown larger than the mapping.
    		limit := m.load32(m.hdrLen + limitOff)
    		if int64(limit) <= int64(len(m.mapping.Data)) {
    			// Mapping doesn't need to grow, so lookup found actual corruption.
    			debugPrintf("corrupt1\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/bytes/buffer_test.go

    func (r panicReader) Read(p []byte) (int, error) {
    	if r.panic {
    		panic("oops")
    	}
    	return 0, io.EOF
    }
    
    // Make sure that an empty Buffer remains empty when
    // it is "grown" before a Read that panics
    func TestReadFromPanicReader(t *testing.T) {
    
    	// First verify non-panic behaviour
    	var buf Buffer
    	i, err := buf.ReadFrom(panicReader{})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/link/link_test.go

    the earth, and it would not be wonderful to meet a Megalosaurus, forty feet long or so, waddling like an elephantine lizard up Holborn Hill. Smoke lowering down from chimney-pots, making a soft black drizzle, with flakes of soot in it as big as full-grown snowflakes—gone into mourning, one might imagine, for the death of the sun. Dogs, undistinguishable in mire. Horses, scarcely better; splashed to their very blinkers. Foot passengers, jostling one another’s umbrellas in a general infection of ill temper,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. src/encoding/binary/binary.go

    		return 8, nil
    	case []float32:
    		return 4 * len(data), nil
    	case []float64:
    		return 8 * len(data), nil
    	}
    	return 0, nil
    }
    
    // ensure grows buf to length len(buf) + n and returns the grown buffer
    // and a slice starting at the original length of buf (that is, buf2[len(buf):]).
    func ensure(buf []byte, n int) (buf2, pos []byte) {
    	l := len(buf)
    	buf = slices.Grow(buf, n)[:l+n]
    	return buf, buf[l:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/runtime/os_windows.go

    // osPreemptExtEnter is called before entering external code that may
    // call ExitProcess.
    //
    // This must be nosplit because it may be called from a syscall with
    // untyped stack slots, so the stack must not be grown or scanned.
    //
    //go:nosplit
    func osPreemptExtEnter(mp *m) {
    	for !atomic.Cas(&mp.preemptExtLock, 0, 1) {
    		// An asynchronous preemption is in progress. It's not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    	if b := (offAddr{base}); b.lessThan(p.searchAddr) {
    		p.searchAddr = b
    	}
    
    	// Add entries into chunks, which is sparse, if needed. Then,
    	// initialize the bitmap.
    	//
    	// Newly-grown memory is always considered scavenged.
    	// Set all the bits in the scavenged bitmaps high.
    	for c := chunkIndex(base); c < chunkIndex(limit); c++ {
    		if p.chunks[c.l1()] == nil {
    			// Create the necessary l2 entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/runtime/time.go

    func timeSleepUntil() int64 {
    	next := int64(maxWhen)
    
    	// Prevent allp slice changes. This is like retake.
    	lock(&allpLock)
    	for _, pp := range allp {
    		if pp == nil {
    			// This can happen if procresize has grown
    			// allp but not yet created new Ps.
    			continue
    		}
    
    		if w := pp.timers.wakeTime(); w != 0 {
    			next = min(next, w)
    		}
    	}
    	unlock(&allpLock)
    
    	return next
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/archive/tar/testdata/hdr-only.tar

    fifo file The quick brown fox jumped over the lazy dog! hardlink null sda symlink badlink fifo The quick brown fox jumped over the lazy dog! hardlink sda symli badlink...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 20:16:26 UTC 2015
    - 10K bytes
    - Viewed (0)
  10. src/html/template/js_test.go

    	for i := 0; i < b.N; i++ {
    		jsValEscaper("The <i>quick</i>,\r\n<span style='color:brown'>brown</span> fox jumps\u2028over the <canine class=\"lazy\">dog</canine>")
    	}
    }
    
    func BenchmarkJSValEscaperWithStrNoSpecials(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		jsValEscaper("The quick, brown fox jumps over the lazy dog")
    	}
    }
    
    func BenchmarkJSValEscaperWithObj(b *testing.B) {
    	o := struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top