Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for reuse (0.08 sec)

  1. src/runtime/mgcscavenge.go

    // The background scavenger and heap-growth scavenger only release memory in chunks
    // that have not been densely-allocated for at least 1 full GC cycle. The reason
    // behind this is likelihood of reuse: the Go heap is allocated in a first-fit order
    // and by the end of the GC mark phase, the heap tends to be densely packed. Releasing
    // memory in these densely packed chunks while they're being packed is counter-productive,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

              int headIndex = head.getHash() & newMask;
    
              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
                // Reuse the consecutive sequence of nodes with the same target
                // index from the end of the list. tail points to the first
                // entry in the reusable list.
                E tail = head;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		// optimizations. Don't inline them.
    		b := state.blockDebug[:f.NumBlocks()]
    		for i := range b {
    			b[i] = BlockDebug{}
    		}
    	}
    
    	// A list of slots per Value. Reuse the previous child slices.
    	if cap(state.valueNames) < f.NumValues() {
    		old := state.valueNames
    		state.valueNames = make([][]SlotID, f.NumValues())
    		copy(state.valueNames, old)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    					return fmt.Errorf("excepted all destinations (%v), got: %v", wn, unique)
    				}
    				return nil
    			}
    
    			shouldBalance := dst.Config().HasServiceAddressedWaypointProxy()
    			// Istio client will not reuse connections for HTTP/1.1
    			opt.HTTP.HTTP2 = true
    			// Make sure we make multiple calls
    			opt.Count = 10
    			c := singleHost
    			if shouldBalance {
    				c = multipleHost
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * uniquely identifies it in the hierarchy.</p>
     *
     * <h3>Plugins</h3>
     *
     * <p>
     * Plugins can be used to modularise and reuse project configuration.
     * Plugins can be applied using the {@link PluginAware#apply(java.util.Map)} method, or by using the {@link org.gradle.plugin.use.PluginDependenciesSpec} plugins script block.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    	}
    
    	// Read `xl.meta` in parallel across disks.
    	for index := range rawFileInfos {
    		rf := rawFileInfos[index]
    		if rf.Buf == nil {
    			continue
    		}
    		if !readData {
    			// Save the buffer so we can reuse it.
    			v2bufs[index] = rf.Buf
    		}
    
    		var xl xlMetaV2
    		if err := xl.LoadOrConvert(rf.Buf); err != nil {
    			errs[index] = err
    			continue
    		}
    		metadataArray[index] = &xl
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              int headIndex = head.getHash() & newMask;
    
              // Single node on list
              if (next == null) {
                newTable.set(headIndex, head);
              } else {
                // Reuse the consecutive sequence of nodes with the same target
                // index from the end of the list. tail points to the first
                // entry in the reusable list.
                E tail = head;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    		newattr(die, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, bytesize, 0)
    		typedefdie = d.dotypedef(&dwtypes, name, die)
    		data := d.ldr.Data(gotype)
    		// FIXME: add caching or reuse reloc slice.
    		relocs := d.ldr.Relocs(gotype)
    		nfields := decodetypeFuncInCount(d.arch, data)
    		for i := 0; i < nfields; i++ {
    			s := decodetypeFuncInType(d.ldr, d.arch, gotype, &relocs, i)
    			sn := d.ldr.SymName(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			DefaultAddress: constants.UnspecifiedIP,
    		})
    	}
    	allocateAndValidate()
    
    	// Now add service with duplicated hostname validate that IPs are retained for original services and duplicated reuse the same IP
    	addServices := map[string]bool{
    		"i.com": true,
    	}
    
    	for k := range addServices {
    		inServices = append(inServices, &model.Service{
    			Hostname:       host.Name(k),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    		// identifying when this is true, and moves the span to the ready list.
    		quarantineList mSpanList
    
    		// readyList is a list of empty user arena spans that are ready for reuse.
    		readyList mSpanList
    	}
    
    	unused *specialfinalizer // never set, just here to force the specialfinalizer type into DWARF
    }
    
    var mheap_ mheap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top