Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 468 for heapUp (0.12 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/BaseForkOptions.java

        private List<String> jvmArgs = new ArrayList<>();
    
        /**
         * Returns the initial heap size for the compiler process.
         * Defaults to {@code null}, in which case the JVM's default will be used.
         */
        @Internal
        public String getMemoryInitialSize() {
            return memoryInitialSize;
        }
    
        /**
         * Sets the initial heap size for the compiler process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7921.go

    }
    
    func bufferNoEscape4() []byte {
    	var b bytes.Buffer
    	b.Grow(64) // ERROR "bufferNoEscape4 ignoring self-assignment in bytes.b.buf = bytes.b.buf\[:bytes.m\]$" "inlining call to bytes.\(\*Buffer\).Grow$" `".+" escapes to heap`
    	useBuffer(&b)
    	return b.Bytes() // ERROR "inlining call to bytes.\(\*Buffer\).Bytes$"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatus.java

    package org.gradle.process.internal.health.memory;
    
    /**
     * Current JVM memory status.
     */
    public interface JvmMemoryStatus {
        /**
         * @return Current JVM maximum heap size in bytes
         */
        long getMaxMemory();
    
        /**
         * @return Current JVM committed heap size in bytes
         */
        long getCommittedMemory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 943 bytes
    - Viewed (0)
  4. test/stackobj3.go

    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, true)
    	if c != 2 {
    		panic("bad liveness")
    	}
    }
    
    func fFalse() {
    	var s StkObj
    	s.h = new(HeapObj)
    	c = -1
    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, false)
    	if c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue20780.go

    	// Note: This test relies on the fact that we currently always
    	// spill function-results to the stack, even if they're so
    	// large that we would normally heap allocate them. If we ever
    	// improve the backend to spill temporaries to the heap, this
    	// test will probably need updating to find some new way to
    	// construct an overly large stack frame.
    	g(h(), h())
    }
    
    func g(Big, Big)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 10 08:01:49 UTC 2021
    - 755 bytes
    - Viewed (0)
  6. test/fixedbugs/issue27732a.go

    // license that can be found in the LICENSE file.
    
    // This checks that the -smallframes flag forces a large variable to heap.
    
    package main
    
    const (
    	bufferLen = 200000
    )
    
    type kbyte []byte
    type circularBuffer [bufferLen]kbyte
    
    var sink byte
    
    func main() {
    	var c circularBuffer // ERROR "moved to heap: c$"
    	sink = c[0][0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 19:27:20 UTC 2019
    - 472 bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    // the sole pointer to it from the heap to its stack. If it attempts
    // to unlink an object from the heap, this will shade it.
    //
    // 2. shade(ptr) prevents a mutator from hiding an object by moving
    // the sole pointer to it from its stack into a black object in the
    // heap. If it attempts to install the pointer into a black object,
    // this will shade it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eventclock
    
    import (
    	"container/heap"
    	"fmt"
    	"math/rand"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	baseclocktest "k8s.io/utils/clock/testing"
    
    	"k8s.io/apiserver/pkg/util/flowcontrol/counter"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  9. test/fixedbugs/issue40954.go

    	p := (*S)(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    	v := uintptr(unsafe.Pointer(p))
    	// p is a pointer to a not-in-heap type. Like some C libraries,
    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
  10. test/stackobj2.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    // linked list up the stack, to test lots of stack objects.
    
    type T struct {
    	// points to a heap object. Test will make sure it isn't freed.
    	data *int64
    	// next pointer for a linked list of stack objects
    	next *T
    	// duplicate of next, to stress test the pointer buffers
    	// used during stack tracing.
    	next2 *T
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:29 UTC 2018
    - 1.6K bytes
    - Viewed (0)
Back to top