Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for homes (0.1 sec)

  1. src/runtime/mgcpacer.go

    	// marking as a fraction of GOMAXPROCS.
    	//
    	// Increasing the goal utilization will shorten GC cycles as the GC
    	// has more resources behind it, lessening costs from the write barrier,
    	// but comes at the cost of increasing mutator latency.
    	gcGoalUtilization = gcBackgroundUtilization
    
    	// gcBackgroundUtilization is the fixed CPU utilization for background
    	// marking. It must be <= gcGoalUtilization. The difference between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    				lim.umin = uint64(lim.min)
    			}
    			if lim.max != noLimit.max && old.min >= 0 && lim.max >= 0 {
    				// 0 <= int(x) <= N  ⇒  0 <= uint(x) <= N
    				// This is for a max update, so the lower bound
    				// comes from what we already know (old).
    				lim.umax = uint64(lim.max)
    			}
    		case unsigned:
    			uc := w.AuxUnsigned()
    			switch r {
    			case lt:
    				lim.umax = uc - 1
    			case lt | eq:
    				lim.umax = uc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
      }
    
      @Test fun serverWritesTrailersWithData() {
        // We buffer some outbound data and headers and confirm that the END_STREAM flag comes with the
        // headers (and not with the data).
    
        // Write the mocking script. for the client
        peer.setClient(true)
    
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    // especially when those locks are contended. The reporting code cannot acquire
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    		{name: "LoweredRound64F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    
    		// 3-operand, the addend comes first
    		{name: "FMADDS", argLength: 3, reg: fp31, asm: "FMADDS"},   // +arg0 + (arg1 * arg2)
    		{name: "FMADDD", argLength: 3, reg: fp31, asm: "FMADDD"},   // +arg0 + (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    		// -mod=readonly, which in turn implies no new requirements. The code path
    		// that would result in add being non-empty returns an error before it
    		// reaches this point: The set of modules to add comes from
    		// resolveMissingImports, which in turn resolves each package by calling
    		// queryImport. But queryImport explicitly checks for -mod=readonly, and
    		// return an error.
    		panic("add is not empty")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	// before target is reached:
    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    	//     arg0 = read ... newmem
    	//   target = add arg0 load
    	//
    	// If the argument comes from a different block then we can exclude
    	// it immediately because it must dominate load (which is in the
    	// same block as target).
    	var args []*Value
    	for _, a := range target.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # details.
    #
    # Download-HelperScripts() must have been called first.
    function Add_InitialHnsNetwork {
      $INITIAL_HNS_NETWORK = 'External'
    
      # This comes from
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/flannel/l2bridge/start.ps1#L74
      # (or
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L206).
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    			// Special case for a rule combines the bytes of gostring.
    			// The v alignment might seem OK, but we don't want to load it
    			// using an offset because relocation comes later.
    			genAddr = strings.HasPrefix(fromAddr.Sym.Name, "go:string") || v.Type.Alignment()%4 != 0 || fromAddr.Offset%4 != 0
    		default:
    			genAddr = fromAddr.Offset%4 != 0
    		}
    		if genAddr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	if typ == nil || typ.Kind_&abi.KindGCProg != 0 {
    		return
    	}
    	if typ.Kind_&abi.KindMask == abi.Interface {
    		// Interfaces are unfortunately inconsistently handled
    		// when it comes to the type pointer, so it's easy to
    		// produce a lot of false positives here.
    		return
    	}
    	tp0 := s.typePointersOfType(typ, addr)
    	tp1 := s.typePointersOf(addr, size)
    	failed := false
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top