Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 430 for free1 (0.12 sec)

  1. src/fmt/print.go

    func newPrinter() *pp {
    	p := ppFree.Get().(*pp)
    	p.panicking = false
    	p.erroring = false
    	p.wrapErrs = false
    	p.fmt.init(&p.buf)
    	return p
    }
    
    // free saves used pp structs in ppFree; avoids an allocation per invocation.
    func (p *pp) free() {
    	// Proper usage of a sync.Pool requires each entry to have approximately
    	// the same memory cost. To obtain this property when the stored type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. doc/go_mem.html

    “<a href="https://www.hpl.hp.com/techreports/2008/HPL-2008-56.pdf">Foundations of the C++ Concurrency Memory Model</a>”,
    published in PLDI 2008.
    The definition of data-race-free programs and the guarantee of sequential consistency
    for race-free programs are equivalent to the ones in that work.
    </p>
    
    <p>
    The memory model describes the requirements on program executions,
    which are made up of goroutine executions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.cc

      value.copy(static_cast<char*>(data), value.length(), 0);
      buf->data = data;
      buf->length = value.length();
      buf->data_deallocator = [](void* data, size_t length) {
        tensorflow::port::Free(data);
      };
    }
    
    TFE_MonitoringStringGauge0* TFE_MonitoringNewStringGauge0(
        const char* name, TF_Status* status, const char* description) {
      auto* result = new TFE_MonitoringStringGauge0({name, description});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  4. internal/s3select/select.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/runtime/metrics.go

    	totalAllocated uint64
    
    	// totalFreed is the total bytes of heap objects freed
    	// over the lifetime of the program.
    	totalFreed uint64
    
    	// totalAllocs is the number of heap objects allocated over
    	// the lifetime of the program.
    	totalAllocs uint64
    
    	// totalFrees is the number of heap objects freed over
    	// the lifetime of the program.
    	totalFrees uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/internal/trace/event/go122/event.go

    	EvSpanAlloc // heap span alloc [timestamp, id, npages, type/class]
    	EvSpanFree  // heap span free [timestamp, id]
    
    	// Experimental heap object events. Added in Go 1.23.
    	EvHeapObject      // heap object exists [timestamp, id, type]
    	EvHeapObjectAlloc // heap object alloc [timestamp, id, type]
    	EvHeapObjectFree  // heap object free [timestamp, id]
    
    	// Experimental goroutine stack events. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/PACTest.java

    /*
     * © 2016 AgNO3 Gmbh & Co. KG
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. cmd/metrics-resource.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/pjrt_device_context.cc

          /*byte_strides=*/std::nullopt,
          xla::PjRtClient::HostBufferSemantics::kImmutableZeroCopy,
          /*on_done_with_host_buffer=*/
          [cpu_tensor = *cpu_tensor]() { /* frees tensor */ }, pjrt_device,
          device_layout);
      if (first_try_buffer.ok()) {
        return std::move(*first_try_buffer);
      }
      if (first_try_buffer.status().code() == absl::StatusCode::kUnimplemented) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top