Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for Grown (0.05 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationListenerManager.java

        // which requires atomically getting an iterator and the size.
        // Moreover, we iterate this list far more often that we mutate,
        // making a (albeit home grown) copy-on-write strategy more appealing.
        private List<ProgressShieldingBuildOperationListener> listeners = Collections.emptyList();
        private final Lock listenersLock = new ReentrantLock();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/syscall/ztypes_openbsd_386.go

    	Mtu      uint32
    	Refcnt   uint32
    	Hopcount uint32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    	Rtt      uint32
    	Rttvar   uint32
    	Pad      uint32
    }
    
    type Mclpool struct {
    	Grown int32
    	Alive uint16
    	Hwm   uint16
    	Cwm   uint16
    	Lwm   uint16
    }
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x8
    	SizeofBpfProgram = 0x8
    	SizeofBpfInsn    = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/CharEscaper.java

        int destSize = dest.length;
        int destIndex = 0;
        int lastEscape = 0;
    
        // Loop through the rest of the string, replacing when needed into the
        // destination buffer, which gets grown as needed as well.
        for (; index < slen; index++) {
    
          // Get a replacement for the current character.
          char[] r = escape(s.charAt(index));
    
          // If no replacement is needed, just continue.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/CharEscaper.java

        int destSize = dest.length;
        int destIndex = 0;
        int lastEscape = 0;
    
        // Loop through the rest of the string, replacing when needed into the
        // destination buffer, which gets grown as needed as well.
        for (; index < slen; index++) {
    
          // Get a replacement for the current character.
          char[] r = escape(s.charAt(index));
    
          // If no replacement is needed, just continue.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_openbsd_amd64.go

    	Mtu      uint32
    	Refcnt   uint32
    	Hopcount uint32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    	Rtt      uint32
    	Rttvar   uint32
    	Pad      uint32
    }
    
    type Mclpool struct {
    	Grown int32
    	Alive uint16
    	Hwm   uint16
    	Cwm   uint16
    	Lwm   uint16
    }
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x8
    	SizeofBpfProgram = 0x10
    	SizeofBpfInsn    = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/syntax/source.go

    // It returns with at least one more byte in the buffer, or with s.ioerr != nil.
    func (s *source) fill() {
    	// determine content to preserve
    	b := s.r
    	if s.b >= 0 {
    		b = s.b
    		s.b = 0 // after buffer has grown or content has been moved down
    	}
    	content := s.buf[b:s.e]
    
    	// grow buffer or move content down
    	if len(content)*2 > len(s.buf) {
    		s.buf = make([]byte, nextSize(len(s.buf)))
    		copy(s.buf, content)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top