Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for mheap (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&dst[0]))
    }
    
    // SecurityDescriptorFromString converts an SDDL string describing a security descriptor into a
    // self-relative security descriptor object allocated on the Go heap.
    func SecurityDescriptorFromString(sddl string) (sd *SECURITY_DESCRIPTOR, err error) {
    	var winHeapSD *SECURITY_DESCRIPTOR
    	err = convertStringSecurityDescriptorToSecurityDescriptor(sddl, 1, &winHeapSD, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    		return true
    	}
    	switch t.kind {
    	case TNIL, TIDEAL:
    		return true
    	}
    	return false
    }
    
    // HasPointers reports whether t contains a heap pointer.
    // Note that this function ignores pointers to not-in-heap types.
    func (t *Type) HasPointers() bool {
    	return PtrDataSize(t) > 0
    }
    
    var recvType *Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The command line client now starts with 64MB of heap instead of 1GB.
    This may affect builds running directly inside the client VM using `--no-daemon` mode.
    We discourage the use of `--no-daemon`, but if you must use it, you can increase the available memory using the `GRADLE_OPTS` environment variable.
    
    The Gradle daemon now starts with 512MB of heap instead of 1GB.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                }
            }
    
            private File expectGetStatusOf(String path, String status, boolean broken) {
                def file = temporaryFolder.createFile("cheap-${path.replace('/', '_')}.status")
                file.text = status
                if (!broken) {
                    server.expectGet("/repo/${path}/status.txt", file)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

        final Queue<PeekingIterator<T>> queue;
    
        public MergingIterator(
            Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> itemComparator) {
          // A comparator that's used by the heap, allowing the heap
          // to be sorted based on the top of each iterator.
          Comparator<PeekingIterator<T>> heapComparator =
              (PeekingIterator<T> o1, PeekingIterator<T> o2) ->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

        final Queue<PeekingIterator<T>> queue;
    
        public MergingIterator(
            Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> itemComparator) {
          // A comparator that's used by the heap, allowing the heap
          // to be sorted based on the top of each iterator.
          Comparator<PeekingIterator<T>> heapComparator =
              (PeekingIterator<T> o1, PeekingIterator<T> o2) ->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    	}
    	if noCallback {
    		fmt.Fprintf(fgo2, "\t_Cgo_no_callback(false)\n")
    	}
    
    	// skip _Cgo_use when noescape exist,
    	// so that the compiler won't force to escape them to heap.
    	if !p.noEscapes[n.C] {
    		fmt.Fprintf(fgo2, "\tif _Cgo_always_false {\n")
    		if d.Type.Params != nil {
    			for i := range d.Type.Params.List {
    				fmt.Fprintf(fgo2, "\t\t_Cgo_use(p%d)\n", i)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    //		sec += 60
    //	}
    //
    // everywhere.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    		// You might be tempted to simplify this by just passing &outBuf to Put,
    		// but that would make the local copy of the outBuf slice header escape
    		// to the heap, causing an allocation. Instead, we keep around the
    		// pointer to the slice header returned by Get, which is already on the
    		// heap, and overwrite and return that.
    		*outBufPtr = outBuf
    		outBufPool.Put(outBufPtr)
    	}()
    
    	var n int
    	for len(data) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	go122.EvGoStatusStack: (*ordering).advanceGoStatus,
    
    	// Experimental events.
    
    	// Experimental heap span events. Added in Go 1.23.
    	go122.EvSpan:      (*ordering).advanceAllocFree,
    	go122.EvSpanAlloc: (*ordering).advanceAllocFree,
    	go122.EvSpanFree:  (*ordering).advanceAllocFree,
    
    	// Experimental heap object events. Added in Go 1.23.
    	go122.EvHeapObject:      (*ordering).advanceAllocFree,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top