Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for adjustments (0.57 sec)

  1. src/runtime/time.go

    			throw("bad ts")
    		}
    
    		if t.astate.Load()&(timerModified|timerZombie) == 0 {
    			// Fast path: head of timers does not need adjustment.
    			return
    		}
    
    		t.lock()
    		updated := t.updateHeap()
    		t.unlock()
    		if !updated {
    			// Head of timers does not need adjustment.
    			return
    		}
    	}
    }
    
    // take moves any timers from src into ts
    // and then clears the timer state from src,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        --search-input-text-color: #000000;
        --search-input-placeholder-color: #909090;
        /* Highlight color for active search tag target */
        --search-tag-highlight-color: #ffff00;
        /* Adjustments for icon and active background colors of copy-to-clipboard buttons */
        --copy-icon-brightness: 100%;
        --copy-button-background-color-active: rgba(168, 168, 176, 0.3);
        /* Colors for invalid tag notifications */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. src/os/exec/exec.go

    // license that can be found in the LICENSE file.
    
    // Package exec runs external commands. It wraps os.StartProcess to make it
    // easier to remap stdin and stdout, connect I/O with pipes, and do other
    // adjustments.
    //
    // Unlike the "system" library call from C and other languages, the
    // os/exec package intentionally does not invoke the system shell and
    // does not expand any glob patterns or handle other expansions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	if newGoal := c.memoryLimitHeapGoal(); newGoal < goal {
    		goal = newGoal
    	} else {
    		// We're not limited by the memory limit goal, so perform a series of
    		// adjustments that might move the goal forward in a variety of circumstances.
    
    		sweepDistTrigger := c.sweepDistMinTrigger.Load()
    		if sweepDistTrigger > goal {
    			// Set the goal to maintain a minimum sweep distance since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    			//
    			// This is to avoid confusing pctospadj, which sums
    			// Spadj from function entry to each PC, and shouldn't
    			// count adjustments from earlier epilogues, since they
    			// won't affect later PCs.
    			p.Spadj = int32(stacksize)
    
    		case AADDI:
    			// Refine Spadjs account for adjustment via ADDI instruction.
    			if p.To.Type == obj.TYPE_REG && p.To.Reg == REG_SP && p.From.Type == obj.TYPE_CONST {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantMetadata.java

         *
         * @param action the action that performs the dependencies adjustment
         */
        void withDependencies(Action<? super DirectDependenciesMetadata> action);
    
        /**
         * Register a rule that modifies the dependency constraints of this variant.
         *
         * @param action the action that performs the dependency constraints adjustment
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 06 08:10:15 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  7. pkg/kubelet/qos/policy.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const (
    	// KubeletOOMScoreAdj is the OOM score adjustment for Kubelet
    	KubeletOOMScoreAdj int = -999
    	// KubeProxyOOMScoreAdj is the OOM score adjustment for kube-proxy
    	KubeProxyOOMScoreAdj  int = -999
    	guaranteedOOMScoreAdj int = -997
    	besteffortOOMScoreAdj int = 1000
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/image/color/ycbcr.go

    	//
    	// Adding a rounding adjustment in the range [0, 1<<16-1] and then shifting
    	// right by 16 gives us an integer math version of the original formulae.
    	//	R = (65536*Y' +  91881 *(Cr-128)                  + adjustment) >> 16
    	//	G = (65536*Y' -  22554 *(Cb-128) - 46802*(Cr-128) + adjustment) >> 16
    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    ```
    
    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36614](https://github.com/kubernetes/kubernetes/pull/36614), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36551](https://github.com/kubernetes/kubernetes/pull/36551), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top