Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for growing (0.48 sec)

  1. test/fixedbugs/bug457.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4197: growing a slice of zero-width elements
    // panics on a division by zero.
    
    package main
    
    func main() {
    	var x []struct{}
    	x = append(x, struct{}{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 331 bytes
    - Viewed (0)
  2. plugin/pkg/admission/storage/persistentvolume/resize/admission.go

    	}
    
    	// Growing Persistent volumes is only allowed for PVCs for which their StorageClass
    	// explicitly allows it
    	if !pvcr.allowResize(pvc, oldPvc) {
    		return admission.NewForbidden(a, fmt.Errorf("only dynamically provisioned pvc can be resized and "+
    			"the storageclass that provisions the pvc must support resize"))
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue16948.go

    	return
    }
    
    //go:noinline
    func g(a, b, c, d, e int, p *T) {
    	var t [10000]int // a large stack frame to trigger stack growing
    	_ = t
    	sink = p // force p (in caller) heap allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 14:25:46 UTC 2016
    - 703 bytes
    - Viewed (0)
  4. test/fixedbugs/issue62203.go

    	for i := 0; i < 48; i++ {
    		m[fmt.Sprintf("%d", i)] = struct{}{}
    	}
    
    	// Add a 49th entry, to start a grow to 8 buckets.
    	m["foo"] = struct{}{}
    
    	// Remove that 49th entry. m is still growing to 8 buckets,
    	// but a clone of m will only have 4 buckets because it
    	// only needs to fit 48 entries.
    	delete(m, "foo")
    
    	// Clone an 8-bucket map to a 4-bucket map.
    	_ = maps.Clone(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:10:03 UTC 2023
    - 688 bytes
    - Viewed (0)
  5. docs/en/docs/external-links.md

    # External Links and Articles
    
    **FastAPI** has a great community constantly growing.
    
    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    Here's an incomplete list of some of them.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue42018_windows.go

    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    	handle := C.HANDLE(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/CharEscaper.java

          // This is the size needed to add the replacement, not the full size
          // needed by the string. We only regrow when we absolutely must, and
          // when we do grow, grow enough to avoid excessive growing. Grow.
          int sizeNeeded = destIndex + charsSkipped + rlen;
          if (destSize < sizeNeeded) {
            destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index);
            dest = growBuffer(dest, destIndex, destSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/CharEscaper.java

          // This is the size needed to add the replacement, not the full size
          // needed by the string. We only regrow when we absolutely must, and
          // when we do grow, grow enough to avoid excessive growing. Grow.
          int sizeNeeded = destIndex + charsSkipped + rlen;
          if (destSize < sizeNeeded) {
            destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index);
            dest = growBuffer(dest, destIndex, destSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    	//   background activity and allocation demand.
    
    	// - "live at last GC" is not available through the current metrics
    	//    interface. Instead, live is estimated by knowing the adjusted value of
    	//    GOGC and the new heap goal following a GC (this requires knowing that
    	//    at least one GC has occurred):
    	//		  estLive = 100 * newGoal / (100 + currentGogc)
    	//    this new value of GOGC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd2.go

    		clock_id int32
    		tp       unsafe.Pointer
    	}{_CLOCK_MONOTONIC, unsafe.Pointer(&ts)}
    	if errno := libcCall(unsafe.Pointer(abi.FuncPCABI0(clock_gettime_trampoline)), unsafe.Pointer(&args)); errno < 0 {
    		// Avoid growing the nosplit stack.
    		systemstack(func() {
    			println("runtime: errno", -errno)
    			throw("clock_gettime failed")
    		})
    	}
    	return ts.tv_sec*1e9 + int64(ts.tv_nsec)
    }
    func clock_gettime_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top