Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 216 for vSlots (0.14 sec)

  1. src/cmd/compile/internal/ssa/location.go

    // part or all of a PPARAM, PPARAMOUT, or PAUTO ONAME node.
    // It can represent a whole variable, part of a larger stack slot, or part of a
    // variable that has been decomposed into multiple stack slots.
    // As an example, a string could have the following configurations:
    //
    //	          stack layout              LocalSlots
    //
    //	Optimizations are disabled. s is on the stack and represented in its entirety.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. test/codegen/stack.go

    func Defer() {
    	for i := 0; i < 2; i++ {
    		defer func() {}()
    	}
    	// amd64:`CALL\truntime\.deferprocStack`
    	defer func() {}()
    }
    
    // Check that stack slots are shared among values of the same
    // type, but not pointer-identical types. See issue 65783.
    
    func spillSlotReuse() {
    	// The return values of getp1 and getp2 need to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/pprof_callback.go

    	// execute, when updating mp.curg.
    	//
    	// These are reachable only when exitsyscall finds no P available. Thus
    	// we make C calls from significantly more Gs than there are available
    	// Ps. Lots of runnable work combined with >20us spent in callGo makes
    	// it possible for sysmon to retake Ps, forcing C calls to go down the
    	// desired exitsyscall path.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/ErrorHandlingNotationParser.java

            delegate.describe(visitor);
        }
    
        @Override
        public T parseNotation(N notation) {
            String failure;
            //TODO SF add quotes to both formats (there will be *lots* of tests failing so I'm not sure if it is worth it).
            if (notation == null && !allowNullInput) {
                failure = String.format("Cannot convert a null value to %s.", targetTypeDisplayName);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/testdata/generate_chunked_models.py

    # limitations under the License.
    # ==============================================================================
    
    """Generates GraphDef test data for Merger.
    
    Constructs chunked protos test data containing GraphDefs with lots of nodes and
    large nodes for Merger::Read and Merger::Merge.
    """
    
    from collections.abc import Sequence
    
    import os
    
    from absl import app
    from absl import flags
    import numpy as np
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. test/stress/maps.go

    package main
    
    import (
    	"math/rand"
    	"runtime"
    	"sync"
    )
    
    func mapTypes() []MapType {
    	// TODO(bradfitz): bunch more map types of all different key and value types.
    	// Use reflect.MapOf and a program to generate lots of types & struct types.
    	// For now, just one:
    	return []MapType{intMapType{}}
    }
    
    type MapType interface {
    	NewMap() Map
    }
    
    type Map interface {
    	AddItem()
    	DelItem()
    	Len() int
    	GetItem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  7. test/stackobj2.go

    // Use of this source code is governed by a BSD-style
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:29 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. src/time/sleep_test.go

    	// to depend on channel queuing semantics that might
    	// possibly change in the future.
    	result := make(chan afterResult, len(slots))
    
    	t0 := Now()
    	for _, slot := range slots {
    		go await(slot, result, After(Duration(slot)*delta))
    	}
    	var order []int
    	var times []Time
    	for range slots {
    		r := <-result
    		order = append(order, r.slot)
    		times = append(times, r.t)
    	}
    	for i := range order {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue29312.go

    // license that can be found in the LICENSE file.
    
    // This test is not for a fix of 29312 proper, but for the patch that
    // makes sure we at least don't have a security hole because of 29312.
    
    // This code generates lots of types. The binary should contain
    // a runtime.slicetype for each of the following 253 types:
    //
    //     []*pwn
    //     [][]*pwn
    //     ...
    //     [][]...[][]*pwn          - 249 total "[]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue50929.go

    func _() {
    	// TODO(gri) only report one error below (issue #50932)
    	var x F /* ERROR "not enough type arguments for type F: have 1, want 2" */ [int]
    	G(x /* ERROR "does not match" */)
    }
    
    // test case from issue
    // (lots of errors but doesn't crash anymore)
    
    type RC[G any, RG any] interface {
    	~[]RG
    }
    
    type RG[G any] struct{}
    
    type RSC[G any] []*RG[G]
    
    type M[Rc RC[G, RG], G any, RG any] struct {
    	Fn func(Rc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top