Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Amount (0.25 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "SLW", argLength: 2, reg: sh21, asm: "SLW"},                    // arg0 << arg1, shift amount is mod 64
    		{name: "SLDconst", argLength: 1, reg: gp11, asm: "SLD", aux: "UInt8"}, // arg0 << auxint, shift amount 0-63
    		{name: "SLWconst", argLength: 1, reg: gp11, asm: "SLW", aux: "UInt8"}, // arg0 << auxint, shift amount 0-31
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    func (c *gcControllerState) addScannableStack(pp *p, amount int64) {
    	if pp == nil {
    		c.maxStackScan.Add(amount)
    		return
    	}
    	pp.maxStackScanDelta += amount
    	if pp.maxStackScanDelta >= maxStackScanSlack || pp.maxStackScanDelta <= -maxStackScanSlack {
    		c.maxStackScan.Add(pp.maxStackScanDelta)
    		pp.maxStackScanDelta = 0
    	}
    }
    
    func (c *gcControllerState) addGlobals(amount int64) {
    	c.globalsScan.Add(amount)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/CopyUtil.java

                final byte[] buf = buffer.array();
                int len;
                int amount = 0;
                while ((len = ChannelUtil.read(channel, buffer, amount)) != -1) {
                    out.write(buf, 0, len);
                    buffer.clear();
                    amount += len;
                }
                out.flush();
                return amount;
            } catch (final IOException e) {
                throw new IORuntimeException(e);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    // for by the next pacing up date. Underestimating the fragmentation however
    // could lead to performance degradation. Handling this case is not within the
    // scope of the scavenger. Situations where the amount of fragmentation balloons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    				// It's only used by the new tracer.
    				// See the comment on enteredMarkAssistForTracing.
    				gp.inMarkAssist = false
    			}
    		}
    		return
    	}
    	// Compute the amount of scan work we need to do to make the
    	// balance positive. When the required amount of work is low,
    	// we over-assist to build up credit for future allocations
    	// and amortize the cost of assisting.
    	assistWorkPerByte := gcController.assistWorkPerByte.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (RISBGZ (RISBGZ x {y}) {z})
      && z.InMerge(y.OutMask()) != nil
      => (RISBGZ x {(*z.InMerge(y.OutMask())).RotateLeft(y.Amount)})
    
    // Convert RISBGZ into 64-bit shift (helps CSE).
    (RISBGZ x {r}) && r.End == 63 && r.Start == -r.Amount&63 => (SRDconst x [-r.Amount&63])
    (RISBGZ x {r}) && r.Start == 0 && r.End == 63-r.Amount => (SLDconst x [r.Amount])
    
    // Optimize single bit isolation when it is known to be equivalent to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	return nil
    }
    
    func (p *mockPolicy) GetPodTopologyHints(s state.State, pod *v1.Pod) map[string][]topologymanager.TopologyHint {
    	return nil
    }
    
    // GetAllocatableMemory returns the amount of allocatable memory for each NUMA node
    func (p *mockPolicy) GetAllocatableMemory(s state.State) []state.Block {
    	return []state.Block{}
    }
    
    type mockRuntimeService struct {
    	err error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	case 3:
    		if has_ror {
    			rsa.extShift = ror
    		} else {
    			return nil
    		}
    	}
    	rsa.show_zero = true
    	rsa.amount = uint8((x >> 10) & (1<<6 - 1))
    	if rsa.amount == 0 && rsa.extShift == lsl {
    		rsa.extShift = ExtShift(0)
    	} else if rsa.amount > max {
    		return nil
    	}
    	return rsa
    }
    
    func handle_MemExtend(x uint32, mult uint8, absent bool) Arg {
    	var extend ExtShift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // The finalizer goroutine is kicked off only when all spans are swept.
    // When the next GC starts, it sweeps all not-yet-swept spans (if any).
    
    // GC rate.
    // Next GC is after we've allocated an extra amount of memory proportional to
    // the amount already in use. The proportion is controlled by GOGC environment variable
    // (100 by default). If GOGC=100 and we're using 4M, we'll GC again when we get to 8M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * values must be between 1 and [Integer.MAX_VALUE] when converted to milliseconds.
         *
         * The close timeout is the maximum amount of time after the client calls [WebSocket.close] to
         * wait for a graceful shutdown. If the server doesn't respond the web socket will be canceled.
         * The default value is 60 seconds.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top