Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 279 for reallocation (0.2 sec)

  1. src/cmd/cgo/internal/testerrors/badsym_test.go

    				backslash = true
    			} else {
    				backslash = false
    			}
    		}
    	}
    	if !lastSpace {
    		cc = append(cc, s[start:])
    	}
    
    	// Force reallocation (and avoid aliasing bugs) for tests that append to cc.
    	cc = cc[:len(cc):len(cc)]
    
    	return cc
    }
    
    func goEnv(t *testing.T, key string) string {
    	out, err := exec.Command("go", "env", key).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13799.go

    	// Cause of bug -- escape of closure failed to escape (shared) data structures
    	// of map.  Assign to fn declared outside of loop triggers escape of closure.
    	// Heap -> stack pointer eventually causes badness when stack reallocation
    	// occurs.
    
    	var fn func() // ERROR "moved to heap: fn$"
    	i := 0        // ERROR "moved to heap: i$"
    	for ; i < maxI; i++ {
    		// var fn func() // this makes it work, because fn stays off heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/encoding/gob/decoder.go

    	ignorerCache map[typeId]**decEngine                  // ditto for ignored objects
    	freeList     *decoderState                           // list of free decoderStates; avoids reallocation
    	countBuf     []byte                                  // used for decoding integers while parsing messages
    	err          error
    }
    
    // NewDecoder returns a new decoder that reads from the [io.Reader].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/encoding/gob/encoder.go

    	freeList   *encoderState           // list of free encoderStates; avoids reallocation
    	byteBuf    encBuffer               // buffer for top-level encoderState
    	err        error
    }
    
    // Before we encode a message, we reserve space at the head of the
    // buffer in which to encode its length. This means we can use the
    // buffer to assemble the message without another allocation.
    const maxLength = 9 // Maximum size of an encoded length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

     */
    
    /** @file
     *  Memory management functions (user interface).
     *  Two versions of memory allocation/deallocation are available.
     *  If compiled with MEMTRACE defined, CUnit keeps track of all
     *  system allocations & deallocations.  The memory record can
     *  then be reported using CU_CREATE_MEMORY_REPORT.  Otherwise,
     *  standard system memory allocation is used without tracing.
     */
    /** @addtogroup Framework
     * @{
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. releasenotes/notes/serviceentry-ip-auto-allocation.yaml

    Yang Liu <******@****.***> 1663853708 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 13:35:08 UTC 2022
    - 210 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/tests/publish-specify-relocation.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java

            if (distMgmt != null) {
                Relocation relocation = distMgmt.getRelocation();
                if (relocation != null) {
                    Artifact result = new RelocatedArtifact(
                            artifactDescriptorResult.getRequest().getArtifact(),
                            relocation.getGroupId(),
                            relocation.getArtifactId(),
                            null,
                            null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/debug/elf/testdata/go-relocation-test-gcc441-x86.obj

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  10. src/debug/elf/testdata/go-relocation-test-gcc540-mips.obj

    Vladimir Stefanovic <******@****.***> 1476827448 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 22:38:25 UTC 2016
    - 3K bytes
    - Viewed (0)
Back to top