Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Deallocator (0.22 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    	}
    	return &wrapperRESTForTests{serviceStorage}, statusStorage, server
    }
    
    func makeIPAllocator(cidr *net.IPNet) ipallocator.Interface {
    	al, err := ipallocator.NewInMemory(cidr)
    	if err != nil {
    		panic(fmt.Sprintf("error creating IP allocator: %v", err))
    	}
    	return al
    }
    
    func makePortAllocator(ports machineryutilnet.PortRange) portallocator.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - Added a new IPAddress object kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

      Enabled the `MultiCIDRRangeAllocator` by setting `--cidr-allocator-type=MultiCIDRRangeAllocator` flag in kube-controller-manager. ([#109090](https://github.com/kubernetes/kubernetes/pull/109090), [@sarveshr7](https://github.com/sarveshr7))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Removed the generally available feature gate `ProxyTerminatingEndpoints`. ([#122134](https://github.com/kubernetes/kubernetes/pull/122134), [@ty-dc](https://github.com/ty-dc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    // should be a string representation of the inputs to a range (for instance, for IP allocation it
    // might be a CIDR) and Data is an opaque blob understood by an allocator which is typically a
    // binary range.  Consumers should use annotations to record additional information (schema version,
    // data encoding hints). A range allocation should *ALWAYS* be recreatable at any time by observation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	return p
    }
    
    // DebugFriendlySetPosFrom adjusts Pos.IsStmt subject to heuristics
    // that reduce "jumpy" line number churn when debugging.
    // Spill/fill/copy instructions from the register allocator,
    // phi functions, and instructions with a no-pos position
    // are examples of instructions that can cause churn.
    func (s *State) DebugFriendlySetPosFrom(v *ssa.Value) {
    	switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    ### Other notable changes
    
    * Backport of the IPAM allocator enhancements to 1.8 branch. ([#62041](https://github.com/kubernetes/kubernetes/pull/62041), [@satyasm](https://github.com/satyasm))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	// unfinished HEADERS/CONTINUATION.
    	lastHeaderStream uint32
    
    	maxReadSize uint32
    	headerBuf   [http2frameHeaderLen]byte
    
    	// TODO: let getReadBuf be configurable, and use a less memory-pinning
    	// allocator in server.go to minimize memory pinned for many idle conns.
    	// Will probably also need to make frame invalidation have a hook too.
    	getReadBuf func(size uint32) []byte
    	readBuf    []byte // cache for default getReadBuf
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top