Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for Deallocator (0.14 sec)

  1. src/internal/types/testdata/check/issues0.go

    func (LNumber) assertFunction() *LFunction
    type LFunction struct {
    	GFunction LGFunction
    }
    type LGFunction func(*LState)
    type LState struct {
    	reg *registry
    }
    type registry struct {
    	alloc *allocator
    }
    type allocator struct {
    	_ [int(preloadLimit)]int
    }
    
    // Test that we don't crash when type-checking composite literals
    // containing errors in the type.
    var issue27346 = [][n /* ERROR "undefined" */ ]int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	if size := unsafe.Sizeof(heapStatsDelta{}); size%8 != 0 {
    		println(size)
    		throw("heapStatsDelta not a multiple of 8 bytes in size")
    	}
    }
    
    // ReadMemStats populates m with memory allocator statistics.
    //
    // The returned memory allocator statistics are up to date as of the
    // call to ReadMemStats. This is in contrast with a heap profile,
    // which is a snapshot as of the most recently completed garbage
    // collection cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    	This should only be used as a temporary workaround to diagnose buggy code.
    	The real fix is to not store integers in pointer-typed locations.
    
    	sbrk: setting sbrk=1 replaces the memory allocator and garbage collector
    	with a trivial allocator that obtains memory from the operating system and
    	never reclaims any memory.
    
    	scavtrace: setting scavtrace=1 causes the runtime to emit a single line to standard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // Node.  A ClusterCIDR is eligible to be used for a given Node when the node
    // selector matches the node in question and has free CIDRs to allocate.  In
    // case of multiple matching ClusterCIDR resources, the allocator will attempt
    // to break ties using internal heuristics, but any ClusterCIDR whose node
    // selector matches the Node may be used.
    message ClusterCIDR {
      // Standard object's metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      CHECK(!bef_buffer_.empty()) << "Failed to convert module to BEF";
    
      bef_file_ =
          BEFFile::Open(bef_buffer_, host_context_->GetKernelRegistry(),
                        host_context_->diag_handler(), host_context_->allocator());
      CHECK(bef_file_) << "Failed to open BEF";
    
      // Run TFRT initialization function to pre-instantiate fallback kernels.
      RunTfrtInitializer();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/runtime/HACKING.md

    can be any number of Ms at a time since any number of threads may be
    blocked in system calls.
    
    Finally, a "P" represents the resources required to execute user Go
    code, such as scheduler and memory allocator state. It's represented
    by type `p`. There are exactly `GOMAXPROCS` Ps. A P can be thought of
    like a CPU in the OS scheduler and the contents of the `p` type like
    per-CPU state. This is a good place to put state that needs to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    // Copyright 2019 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.
    
    // Page allocator.
    //
    // The page allocator manages mapped pages (defined by pageSize, NOT
    // physPageSize) for allocation and re-use. It is embedded into mheap.
    //
    // Pages are managed using a bitmap that is sharded into chunks.
    // In the bitmap, 1 means in-use, and 0 means free. The bitmap spans the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

    #include "tensorflow/core/common_runtime/device_factory.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/common_runtime/process_function_library_runtime.h"
    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/node_properties.h"
    #include "tensorflow/core/framework/op.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage.go

    	printersinternal "k8s.io/kubernetes/pkg/printers/internalversion"
    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	svcreg "k8s.io/kubernetes/pkg/registry/core/service"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/pkg/registry/core/service/portallocator"
    	netutil "k8s.io/utils/net"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    type EndpointsStorage interface {
    	rest.Getter
    	rest.GracefulDeleter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/internal/poll/splice_linux.go

    	rfd  int
    	wfd  int
    	data int
    }
    
    type splicePipe struct {
    	splicePipeFields
    
    	// We want to use a finalizer, so ensure that the size is
    	// large enough to not use the tiny allocator.
    	_ [24 - unsafe.Sizeof(splicePipeFields{})%24]byte
    }
    
    // splicePipePool caches pipes to avoid high-frequency construction and destruction of pipe buffers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top