Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 266 for dropg (0.2 sec)

  1. releasenotes/notes/drop-legacy-inbound-passthrough.yaml

    Rama Chavali <******@****.***> 1706898101 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 394 bytes
    - Viewed (0)
  2. releasenotes/notes/drop-legacy-inheritance-flag.yaml

    John Howard <******@****.***> 1690993419 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 16:23:39 UTC 2023
    - 241 bytes
    - Viewed (0)
  3. src/runtime/tracemap.go

    	meta.id = id
    	meta.hash = hash
    	return meta
    }
    
    // reset drops all allocated memory from the table and resets it.
    //
    // The caller must ensure that there are no put operations executing concurrently
    // with this function.
    func (tab *traceMap) reset() {
    	tab.root.Store(nil)
    	tab.seq.Store(0)
    	tab.mem.drop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/syscall/ztypes_openbsd_ppc64.go

    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	Ifidx   uint16
    	Flowid  uint16
    	Flags   uint8
    	Drops   uint8
    }
    
    type BpfTimeval struct {
    	Sec  uint32
    	Usec uint32
    }
    
    const (
    	_AT_FDCWD = -0x64
    )
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_openbsd_riscv64.go

    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	Ifidx   uint16
    	Flowid  uint16
    	Flags   uint8
    	Drops   uint8
    }
    
    type BpfTimeval struct {
    	Sec  uint32
    	Usec uint32
    }
    
    const (
    	_AT_FDCWD = -0x64
    )
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. src/runtime/os_openbsd.go

    func minit() {
    	getg().m.procid = uint64(getthrid())
    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

                if (pattern.matcher(line).matches()) {
                    count++;
                }
            }
            return count;
        }
    
        /**
         * Drops the first n lines.
         */
        public LogContent drop(int i) {
            return new LogContent(lines.subList(i, lines.size()), definitelyNoDebugPrefix, definitelyNoAnsiChars);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	Ifidx   uint16
    	Flowid  uint16
    	Flags   uint8
    	Drops   uint8
    }
    
    type BpfTimeval struct {
    	Sec  uint32
    	Usec uint32
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    }
    
    type Winsize struct {
    	Row    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. src/runtime/os_dragonfly.go

    func minit() {
    	getg().m.procid = uint64(lwp_gettid())
    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_libinit.c

    		nanosleep(&ts, nil);
    	}
    	return EAGAIN;
    }
    
    static void
    pthread_key_destructor(void* g) {
    	if (x_crosscall2_ptr != NULL) {
    		// fn == NULL means dropm.
    		// We restore g by using the stored g, before dropm in runtime.cgocallback,
    		// since the g stored in the TLS by Go might be cleared in some platforms,
    		// before this destructor invoked.
    		x_crosscall2_ptr(NULL, g, 0, 0);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top