Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,556 for free1 (0.04 sec)

  1. src/runtime/mpallocbits_test.go

    			npages:   2,
    			frees:    []uint{0, 2, 4, 6, 8, 10},
    			afterInv: []BitRange{{0, 12}},
    		},
    		"NoneFree5": {
    			npages:   5,
    			frees:    []uint{0, 5, 10, 15, 20},
    			afterInv: []BitRange{{0, 25}},
    		},
    		"NoneFree64": {
    			npages:   64,
    			frees:    []uint{0, 64, 128},
    			afterInv: []BitRange{{0, 192}},
    		},
    		"NoneFree65": {
    			npages:   65,
    			frees:    []uint{0, 65, 130},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  2. tensorflow/c/ops.h

    // otherwise in the given status.
    //
    // `builder` is freed whether the op was successfully registered or not. You
    // must call either this function or TF_DeleteOpDefinitionBuilder to free the
    // builder, but never both.
    TF_CAPI_EXPORT extern void TF_RegisterOpDefinition(
        TF_OpDefinitionBuilder* builder, TF_Status* status);
    
    // Frees the given op definition builder. You must call either this function or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/runtime/arena.go

    // that were exhausted when allocating into the arena. Once the arena is freed,
    // it frees all full chunks it references, and places the active one onto a reuse
    // list for a future arena to use. Each arena keeps its list of referenced chunks
    // explicitly live until it is freed. Each user arena also maps to an object which
    // has a finalizer attached that ensures the arena's chunks are all freed even if
    // the arena itself is never explicitly freed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    		}
    		slow.Frees += m.tinyAllocCount + m.largeFreeCount
    		slow.Mallocs += slow.Frees
    
    		slow.TotalAlloc = slow.Alloc + m.largeFree + smallFree
    
    		for i := range slow.BySize {
    			slow.BySize[i].Mallocs = bySize[i].Mallocs
    			slow.BySize[i].Frees = bySize[i].Frees
    		}
    
    		for i := mheap_.pages.start; i < mheap_.pages.end; i++ {
    			chunk := mheap_.pages.tryChunkOf(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/runtime/metrics/description.go

    		Kind:        KindUint64,
    	},
    	{
    		Name: "/memory/classes/heap/released:bytes",
    		Description: "Memory that is completely free and has been returned to the underlying system. This " +
    			"metric is the runtime's estimate of free address space that is still mapped into the process, " +
    			"but is not backed by physical memory.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

                    // If we've freed memory, invalidate the current OS memory snapshot
                    if (freedPhysical || freedVirtual) {
                        currentOsMemoryStatus = null;
                    }
                } else {
                    LOGGER.debug("There is no current snapshot of OS memory available - memory cannot be freed until a new memory status update occurs");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    		freed, err := im.freeSpace(ctx, amountToFree, freeTime, images)
    		if err != nil {
    			return err
    		}
    
    		if freed < amountToFree {
    			err := fmt.Errorf("Failed to garbage collect required amount of images. Attempted to free %d bytes, but only found %d bytes eligible to free.", amountToFree, freed)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    type gcBitsHeader struct {
    	free uintptr // free is the index into bits of the next free byte.
    	next uintptr // *gcBits triggers recursive type bug. (issue 14620)
    }
    
    type gcBitsArena struct {
    	_ sys.NotInHeap
    	// gcBitsHeader // side step recursive type bug (issue 14620) by including fields by hand.
    	free uintptr // free is the index into bits of the next free byte; read/write atomically
    	next *gcBitsArena
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

                        notExpirable++;
                        continue;
                    }
                    toExpire.add(idleClient);
                    long freed = getMemoryUsage(idleClient);
                    releasedBytes += freed;
                    if (releasedBytes >= memoryBytesToRelease) {
                        break;
                    }
                }
                if (LOGGER.isDebugEnabled() && !toExpire.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/runtime/metrics/doc.go

    		defined by /gc/heap/tiny/allocs:objects, only tiny blocks.
    
    	/gc/heap/frees-by-size:bytes
    		Distribution of freed heap allocations by approximate size.
    		Bucket counts increase monotonically. Note that this does not
    		include tiny objects as defined by /gc/heap/tiny/allocs:objects,
    		only tiny blocks.
    
    	/gc/heap/frees:bytes
    		Cumulative sum of heap memory freed by the garbage collector.
    
    	/gc/heap/frees:objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top