Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for reserves (0.15 sec)

  1. src/reflect/abi.go

    	call, ret abiSeq
    
    	// These fields describe the stack space allocated
    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    	// is the offset at which return values begin, and
    	// spill is the size in bytes of additional space reserved
    	// to spill argument registers into in case of preemption in
    	// reflectcall's stack frame.
    	stackCallArgsSize, retOffset, spill uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	return nil
    }
    
    // Reserve reserves volumes of pod and saves binding status in cycle state.
    func (pl *VolumeBinding) Reserve(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeName string) *framework.Status {
    	state, err := getStateData(cs)
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    	// we don't need to hold the lock as only one node will be reserved for the given pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/volume/util/atomic_writer.go

    const (
    	maxFileNameLength = 255
    	maxPathLength     = 4096
    )
    
    // AtomicWriter handles atomically projecting content for a set of files into
    // a target directory.
    //
    // Note:
    //
    //  1. AtomicWriter reserves the set of pathnames starting with `..`.
    //  2. AtomicWriter offers no concurrency guarantees and must be synchronized
    //     by the caller.
    //
    // The visible files in this volume are symlinks to files in the writer's data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    // By encapsulating memory allocation into its own interface, we can reuse the memory
    // across many operations in places we know it can significantly improve the performance.
    type MemoryAllocator interface {
    	// Allocate reserves memory for n bytes.
    	// Note that implementations of this method are not required to zero the returned array.
    	// It is the caller's responsibility to clean the memory if needed.
    	Allocate(n uint64) []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. docs/LICENSE

              Rights, whether directly or through a collecting society
              under any voluntary or waivable statutory or compulsory
              licensing scheme. In all other cases the Licensor expressly
              reserves any right to collect such royalties.
    
    
    Section 3 -- License Conditions.
    
    Your exercise of the Licensed Rights is expressly made subject to the
    following conditions.
    
      a. Attribution.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/parser.go

    	}
    	if p.typeList[i] == reserved {
    		p.errorf("internal error: %d already reserved in parseSavedType", i)
    	}
    	if p.typeList[i] == nil {
    		p.reserve(i)
    		p.parseTypeSpec(pkg, append(nlist, i))
    	}
    	if p.typeList[i] == nil || p.typeList[i] == reserved {
    		p.errorf("internal error: parseSavedType(%d,%v) reserved/nil", i, nlist)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    }
    
    // linearAlloc is a simple linear allocator that pre-reserves a region
    // of memory and then optionally maps that region into the Ready state
    // as needed.
    //
    // The caller is responsible for locking.
    type linearAlloc struct {
    	next   uintptr // next free byte
    	mapped uintptr // one byte past end of mapped space
    	end    uintptr // end of reserved space
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/net/url/url.go

    	}
    
    	switch c {
    	case '-', '_', '.', '~': // §2.3 Unreserved characters (mark)
    		return false
    
    	case '$', '&', '+', ',', '/', ':', ';', '=', '?', '@': // §2.2 Reserved characters (reserved)
    		// Different sections of the URL allow a few of
    		// the reserved characters to appear unescaped.
    		switch mode {
    		case encodePath: // §3.3
    			// The RFC allows : @ & = + $ but saves / ; , for assigning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    	mustHaveExternalNetwork(t)
    	testenv.SkipFlakyNet(t)
    	t.Parallel() // Executes 600ms worth of sequential sleeps.
    
    	const (
    		google        = "www.google.com"
    		invalidDomain = "invalid.invalid" // RFC 2606 reserves .invalid
    		n             = 600               // this needs to be larger than threadLimit size
    	)
    
    	_, err := LookupHost(google)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    * Defer configuration via `gradle.taskGraph.whenReady()` and others, so you can perform verification only when it's necessary
    
    == Increase the heap size
    
    By default, Gradle reserves 512MB of heap space for your build. This is plenty for most projects.
    However, some very large builds might need more memory to hold Gradle's model and caches.
    If this is the case for you, you can specify a larger memory requirement.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top