Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 216 for vSlots (0.14 sec)

  1. src/runtime/asm_mips64x.s

    	// or if this thread never called into Go on pthread platforms.
    	// Call needm to obtain one for temporary use.
    	// In this case, we're running on the thread stack, so there's
    	// lots of space, but the linker doesn't know. Hide the call from
    	// the linker analysis by using an indirect call.
    	BEQ	g, needm
    
    	MOVV	g_m(g), R3
    	MOVV	R3, savedm-8(SP)
    	JMP	havem
    
    needm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/internal/trace/gc.go

    	// non-overlapping "bands" and compute a summary for each of
    	// these bands.
    	//
    	// Compute the duration of each band.
    	numBands := bandsPerSeries
    	if numBands > len(util) {
    		// There's no point in having lots of bands if there
    		// aren't many events.
    		numBands = len(util)
    	}
    	dur := util[len(util)-1].Time - util[0].Time
    	bandDur := (dur + int64(numBands) - 1) / int64(numBands)
    	if bandDur < 1 {
    		bandDur = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    	"text/template"
    )
    
    var debug = flag.Bool("debug", false, "show the errors produced by the tests")
    
    // T has lots of interesting pieces to use to test execution.
    type T struct {
    	// Basics
    	True        bool
    	I           int
    	U16         uint16
    	X, S        string
    	FloatZero   float64
    	ComplexZero complex128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        assertThat(hpackReader!!.headerCount).isEqualTo(1)
      }
    
      /** Header table backing array is initially 8 long, let's ensure it grows.  */
      @Test
      fun dynamicallyGrowsBeyond64Entries() {
        // Lots of headers need more room!
        hpackReader = Hpack.Reader(bytesIn, 16384, 4096)
        bytesIn.writeByte(0x3F) // Dynamic table size update (size = 16384).
        bytesIn.writeByte(0xE1)
        bytesIn.writeByte(0x7F)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    }
    
    // osPreemptExtEnter is called before entering external code that may
    // call ExitProcess.
    //
    // This must be nosplit because it may be called from a syscall with
    // untyped stack slots, so the stack must not be grown or scanned.
    //
    //go:nosplit
    func osPreemptExtEnter(mp *m) {
    	for !atomic.Cas(&mp.preemptExtLock, 0, 1) {
    		// An asynchronous preemption is in progress. It's not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMap.java

        }
    
        private @Nullable Object[] lastEntryForEachKey(
            @Nullable Object[] localAlternatingKeysAndValues, int size) {
          Set<Object> seenKeys = new HashSet<>();
          BitSet dups = new BitSet(); // slots that are overridden by a later duplicate key
          for (int i = size - 1; i >= 0; i--) {
            Object key = requireNonNull(localAlternatingKeysAndValues[2 * i]);
            if (!seenKeys.add(key)) {
              dups.set(i);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          }
        }
      }
    
      /*
       * This next part consists of several sample classes that provide
       * demonstrations of conditions that cause NullPointerTester
       * to succeed/fail.
       */
    
      /** Lots of well-behaved methods. */
      @SuppressWarnings("unused") // used by reflection
      private static class PassObject extends SomeClassThatDoesNotUseNullable {
        public static void doThrow(Object arg) {
          if (arg == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. src/runtime/asm_riscv64.s

    	// or if this thread never called into Go on pthread platforms.
    	// Call needm to obtain one for temporary use.
    	// In this case, we're running on the thread stack, so there's
    	// lots of space, but the linker doesn't know. Hide the call from
    	// the linker analysis by using an indirect call.
    	BEQ	ZERO, g, needm
    
    	MOV	g_m(g), X5
    	MOV	X5, savedm-8(SP)
    	JMP	havem
    
    needm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. src/runtime/asm_s390x.s

    	// or if this thread never called into Go on pthread platforms.
    	// Call needm to obtain one for temporary use.
    	// In this case, we're running on the thread stack, so there's
    	// lots of space, but the linker doesn't know. Hide the call from
    	// the linker analysis by using an indirect call.
    	CMPBEQ	g, $0, needm
    
    	MOVD	g_m(g), R8
    	MOVD	R8, savedm-8(SP)
    	BR	havem
    
    needm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/symtab.go

    		bind = elf.STB_LOCAL
    	}
    
    	// In external linking mode, we have to invoke gcc with -rdynamic
    	// to get the exported symbols put into the dynamic symbol table.
    	// To avoid filling the dynamic table with lots of unnecessary symbols,
    	// mark all Go symbols local (not global) in the final executable.
    	// But when we're dynamically linking, we need all those global symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
Back to top