Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,094 for allocations (0.48 sec)

  1. test/escape.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Test for correct heap-moving of escaped variables.
    // It is hard to check for the allocations, but it is easy
    // to check that if you call the function twice at the
    // same stack level, the pointers returned should be
    // different.
    
    var bad = false
    
    var allptr = make([]*int, 0, 100)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:34:24 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    					allocation: func() *resourceapi.AllocationResult {
    						allocation := instance1Allocation.DeepCopy()
    						allocation.ResourceHandles[0].StructuredData.VendorClassParameters = runtime.RawExtension{Raw: []byte("class-parameters")}
    						allocation.ResourceHandles[0].StructuredData.VendorClaimParameters = runtime.RawExtension{Raw: []byte("claim-parameters")}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	"unsafe"
    )
    
    var _ unsafe.Pointer
    
    // Do the interface allocations only once for common
    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = syscall.EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e syscall.Errno) error {
    	switch e {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/syscall/tables_js.go

    	ECASECLASH:      "Filename exists with different case",
    }
    
    // Do the interface allocations only once for common
    // Errno values.
    var (
    	errEAGAIN error = EAGAIN
    	errEINVAL error = EINVAL
    	errENOENT error = ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case EAGAIN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_unix.go

    	return e == EAGAIN || e == EWOULDBLOCK || e == ETIMEDOUT
    }
    
    // Do the interface allocations only once for common
    // Errno values.
    var (
    	errEAGAIN error = EAGAIN
    	errEINVAL error = EINVAL
    	errENOENT error = ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case EAGAIN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    		if err != nil {
    			return err
    		}
    
    		copy(data, s.prefix)
    
    		_, err = w.Write(data[:prefixSize+uint64(i)])
    		return err
    
    	case proto.Marshaler:
    		// this path performs extra allocations
    		data, err := t.Marshal()
    		if err != nil {
    			return err
    		}
    		unk.Raw = data
    
    		estimatedSize := prefixSize + uint64(unk.Size())
    		data = memAlloc.Allocate(estimatedSize)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof.go

    	"allocs":       "A sampling of all past memory allocations",
    	"block":        "Stack traces that led to blocking on synchronization primitives",
    	"cmdline":      "The command line invocation of the current program",
    	"goroutine":    "Stack traces of all current goroutines. Use debug=2 as a query parameter to export in the same format as an unrecovered panic.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/edwards25519_test.go

    		p := NewIdentityPoint()
    		p.Add(p, NewGeneratorPoint())
    		s := NewScalar()
    		testAllocationsSink ^= s.Bytes()[0]
    		testAllocationsSink ^= p.Bytes()[0]
    	}); allocs > 0 {
    		t.Errorf("expected zero allocations, got %0.1v", allocs)
    	}
    }
    
    func decodeHex(s string) []byte {
    	b, err := hex.DecodeString(s)
    	if err != nil {
    		panic(err)
    	}
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. src/time/tick_test.go

    			// Allow some slack, but inuse >= N means at least 1 allocation per iteration.
    			inuse := after - before
    			if inuse >= N {
    				t.Errorf("%s did not get GC'ed: %d allocations", what, inuse)
    
    				Sleep(1 * Second)
    				runtime.ReadMemStats(&stats)
    				after := int64(stats.Mallocs - stats.Frees)
    				inuse = after - before
    				t.Errorf("after a sleep: %d allocations", inuse)
    			}
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	}
    
    	for _, arg := range args[1:] {
    		commandLine = append(commandLine, ' ')
    		// TODO(bcmills): since we're already appending to a slice, it would be nice
    		// to avoid the intermediate allocations of EscapeArg.
    		// Perhaps we can factor out an appendEscapedArg function.
    		commandLine = append(commandLine, EscapeArg(arg)...)
    	}
    	return string(commandLine)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top