Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for expiring (0.18 sec)

  1. src/runtime/asm_amd64.s

    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$24-24
    	NO_LOCAL_POINTERS
    
    	// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
    	// It is used to dropm while thread is exiting.
    	MOVQ	fn+0(FP), AX
    	CMPQ	AX, $0
    	JNE	loadg
    	// Restore the g from frame.
    	get_tls(CX)
    	MOVQ	frame+8(FP), BX
    	MOVQ	BX, g(CX)
    	JMP	dropm
    
    loadg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    	// is holding the write end of the pipe.
    	// This is unfortunate, but it has come up at least twice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	for _, gw := range proxy.MergedGateway.GatewayNameForServer {
    		hostsFromGateways.Merge(ps.virtualServiceIndex.destinationsByGateway[gw])
    	}
    	log.Debugf("GatewayServices: gateway %v is exposing these hosts:%v", proxy.ID, hostsFromGateways)
    
    	gwSvcs := make([]*Service, 0, len(svcs))
    
    	for _, s := range svcs {
    		svcHost := string(s.Hostname)
    
    		if _, ok := hostsFromGateways[svcHost]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    		return update.RunningPod.ID, klog.KObj(update.RunningPod.ToAPIPod())
    	}
    	return update.Pod.UID, klog.KObj(update.Pod)
    }
    
    // podWorkerLoop manages sequential state updates to a pod in a goroutine, exiting once the final
    // state is reached. The loop is responsible for driving the pod through four main phases:
    //
    // 1. Wait to start, guaranteeing no two pods with the same UID or same fullname are running at the same time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	errTooManyIdleHost    = errors.New("http: putIdleConn: too many idle connections for host")
    	errCloseIdleConns     = errors.New("http: CloseIdleConnections called")
    	errReadLoopExiting    = errors.New("http: persistConn.readLoop exiting")
    	errIdleConnTimeout    = errors.New("http: idle connection timeout")
    
    	// errServerClosedIdle is not seen by users for idempotent requests, but may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    // people are used to seeing in C.  For generated Go code, such as
    // package syscall's data structures, we drop a common prefix
    // (so sec, usec, which will get turned into Sec, Usec for exporting).
    func fieldPrefix(fld []*ast.Field) string {
    	prefix := ""
    	for _, f := range fld {
    		for _, n := range f.Names {
    			// Ignore field names that don't have the prefix we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top