Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 178 for 8192 (0.04 sec)

  1. src/internal/coverage/calloc/batchcounteralloc.go

    // live/dead over the same time period, so a good fit for batch
    // allocation.
    
    type BatchCounterAlloc struct {
    	pool []uint32
    }
    
    func (ca *BatchCounterAlloc) AllocateCounters(n int) []uint32 {
    	const chunk = 8192
    	if n > cap(ca.pool) {
    		siz := chunk
    		if n > chunk {
    			siz = n
    		}
    		ca.pool = make([]uint32, siz)
    	}
    	rv := ca.pool[:n]
    	ca.pool = ca.pool[n:]
    	return rv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 754 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoreadjusttyp_string.go

    	_ = x[passInlinableFuncToIndCallAdj-512]
    	_ = x[passInlinableFuncToNestedIndCallAdj-1024]
    	_ = x[returnFeedsConstToIfAdj-2048]
    	_ = x[returnFeedsFuncToIndCallAdj-4096]
    	_ = x[returnFeedsInlinableFuncToIndCallAdj-8192]
    	_ = x[returnFeedsConcreteToInterfaceCallAdj-16384]
    }
    
    var _scoreAdjustTyp_value = [...]uint64{
    	0x1,    /* panicPathAdj */
    	0x2,    /* initFuncAdj */
    	0x4,    /* inLoopAdj */
    	0x8,    /* passConstToIfAdj */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 21:13:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/net/write_unix_test.go

    		// Tell the server to return when we return.
    		defer close(c)
    
    		// Loop writing to the server. The server is not reading
    		// anything, so this will eventually block, and then time out.
    		b := bytes.Repeat([]byte{'a'}, 8192)
    		cagain := 0
    		for {
    			n, err := ss.conn.fd.pfd.WriteOnce(b)
    			if n > 0 {
    				cagain = 0
    			}
    			switch err {
    			case nil:
    			case syscall.EAGAIN:
    				if cagain == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/DefaultStreamHasher.java

            buffers.offer(buffer);
        }
    
        private byte[] takeBuffer() {
            byte[] buffer = buffers.poll();
            if (buffer == null) {
                buffer = new byte[8192];
            }
            return buffer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/textflag.go

    	// should stop at this function.
    	TOPFRAME = 2048
    
    	// Function is an ABI wrapper.
    	ABIWRAPPER = 4096
    
    	// Function is a compiler-generated package init function.
    	PKGINIT = 8192
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildDocumentationConfigurationCacheSmokeTest.groovy

            given:
            def tasks = [
                ':docs:docs',
                ':docs:docsTest',
                "-D${StartParameterBuildOptions.ConfigurationCacheMaxProblemsOption.PROPERTY_NAME}=8192".toString(), // TODO:configuration-cache remove
            ]
    
            when:
            configurationCacheRun(tasks, 0)
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java

       * write to {@code sink()} and close it to complete the post.
       */
      static final class PipeBody extends RequestBody {
        private final Pipe pipe = new Pipe(8192);
        private final BufferedSink sink = Okio.buffer(pipe.sink());
    
        public BufferedSink sink() {
          return sink;
        }
    
        @Override public MediaType contentType() {
          return MEDIA_TYPE_MARKDOWN;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jul 06 03:18:15 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. api/go1.15.txt

    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 32768
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE ideal-int
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 8192
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER ideal-int
    pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE = 256
    pkg debug/pe, const IMAGE_FILE_32BIT_MACHINE ideal-int
    pkg debug/pe, const IMAGE_FILE_AGGRESIVE_WS_TRIM = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    func BenchmarkDecode(b *testing.B) {
    	data := make([]byte, StdEncoding.EncodedLen(8192))
    	StdEncoding.Encode(data, make([]byte, 8192))
    	buf := make([]byte, 8192)
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    		StdEncoding.Decode(buf, data)
    	}
    }
    func BenchmarkDecodeString(b *testing.B) {
    	data := StdEncoding.EncodeToString(make([]byte, 8192))
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. test/recover.go

    // enormous receiver + enormous method frame, so wrapper splits stack to call M,
    // and then M splits stack to allocate its frame.
    // recover must look back two frames to find the panic.
    type T6 [8192]byte
    
    var global byte
    
    func (T6) M() {
    	var x [8192]byte
    	x[0] = 1
    	x[1] = 2
    	for i := range x {
    		global += x[i]
    	}
    	mustRecoverBody(doubleRecover(), recover(), recover(), 14)
    }
    
    func test14() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
Back to top