Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 105 of 105 for elided (2.36 sec)

  1. src/net/netip/netip.go

    	return ret
    }
    
    // string6 formats ip in IPv6 textual representation. It follows the
    // guidelines in section 4 of RFC 5952
    // (https://tools.ietf.org/html/rfc5952#section-4): no unnecessary
    // zeros, use :: to elide the longest run of zeros, and don't use ::
    // to compact a single zero field.
    func (ip Addr) string6() string {
    	// Use a zone with a "plausibly long" name, so that most zone-ful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // digestion is done in four passes over config objects --- three
    // passes over PriorityLevelConfigurations and one pass over the
    // FlowSchemas --- with the work dvided among the passes according to
    // those dependencies.
    type cfgMeal struct {
    	cfgCtlr *configController
    
    	newPLStates map[string]*priorityLevelState
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. src/runtime/time.go

    		t.unlock()
    		return
    	}
    	t.trace("maybeRunChan+")
    	systemstack(func() {
    		t.unlockAndRun(now)
    	})
    }
    
    // blockTimerChan is called when a channel op has decided to block on c.
    // The caller holds the channel lock for c and possibly other channels.
    // blockTimerChan makes sure that c is in a timer heap,
    // adding it if needed.
    func blockTimerChan(c *hchan) {
    	t := c.timer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. internal/grid/connection.go

    		if rec := recover(); rec != nil {
    			gridLogIf(ctx, fmt.Errorf("handleMessages: panic recovered: %v", rec))
    			debug.PrintStack()
    		}
    		if debugPrint {
    			fmt.Println("handleMessages: write goroutine exited")
    		}
    		cancel(ErrDisconnected)
    		c.connChange.L.Lock()
    		if atomic.CompareAndSwapUint32((*uint32)(&c.state), StateConnected, StateConnectionError) {
    			c.connChange.Broadcast()
    		}
    		c.disconnected()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    The line number specifies the name involved. In the example, 1 is foo.
    
    Next, cgo must learn the details of each type, variable, function, or
    constant. It can do this by reading object files. If cgo has decided
    that t1 is a type, v2 and v3 are variables or functions, and i4, i5
    are integer constants, u6 is an unsigned integer constant, and f7 and f8
    are float constants, and s9 and s10 are string constants, it generates:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top