Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for Potato (0.16 sec)

  1. src/runtime/mstats.go

    	// it can be sure that it will pick up the new gen value the
    	// next time it writes.
    	//
    	// The reader then takes responsibility by clearing space
    	// in the ring buffer for the next reader to rotate gen to
    	// that space (i.e. it merges in values from index (gen-2) mod 3
    	// to index (gen-1) mod 3, then clears the former).
    	//
    	// Note that this means only one reader can be reading at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

            transform: rotate(45deg);
            transform-origin: 10% 10%;
            width: 26px;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) {
            opacity: 0;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) {
            transform: rotate(-45deg);
            transform-origin: 10% 90%;
            width: 26px;
    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/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      function find(name) {
        const elem = document.getElementById(name);
        if (!elem) {
          throw 'element not found: ' + name
        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	(Eq32 (Mod32 <typ.Int32> (SignExt16to32 <typ.Int32> x) (Const32 <typ.Int32> [int32(c)])) (Const32 <typ.Int32> [0]))
    
    // Divisibility checks x%c == 0 convert to multiply and rotate.
    // Note, x%c == 0 is rewritten as x == c*(x/c) during the opt pass
    // where (x/c) is performed using multiplication with magic constants.
    // To rewrite x%c == 0 requires pattern matching the rewritten expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((SHLL|SHRL|SARL) x (NEGL <t> (ANDLconst [c] y))) && c & 31 == 31 => ((SHLL|SHRL|SARL) x (NEGL <t> y))
    
    // rotate left negative = rotate right
    (ROLQ x (NEG(Q|L) y)) => (RORQ x y)
    (ROLL x (NEG(Q|L) y)) => (RORL x y)
    (ROLW x (NEG(Q|L) y)) => (RORW x y)
    (ROLB x (NEG(Q|L) y)) => (RORB x y)
    
    // rotate right negative = rotate left
    (RORQ x (NEG(Q|L) y)) => (ROLQ x y)
    (RORL x (NEG(Q|L) y)) => (ROLL x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    (ROTL   x (MOVDconst [c])) => (ROTLconst   x [c&63])
    
    // Combine rotate and mask operations
    (ANDconst [m] (ROTLWconst [r] x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,m,32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    	for i := range ptrs {
    		ptrs[i] = new(obj)
    	}
    
    	writeBarrierBenchmark(b, func() {
    		const blockSize = 1024
    		var pos int
    		for i := 0; i < b.N; i += blockSize {
    			// Rotate block.
    			block := ptrs[pos : pos+blockSize]
    			first := block[0]
    			copy(block, block[1:])
    			block[blockSize-1] = first
    
    			pos += blockSize
    			if pos+blockSize > len(ptrs) {
    				pos = 0
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    :i})=>{i("forced-colors","@media (forced-colors: active)")}},Te=["translate(var(--tw-translate-x), var(--tw-translate-y))","rotate(var(--tw-rotate))","skewX(var(--tw-skew-x))","skewY(var(--tw-skew-y))","scaleX(var(--tw-scale-x))","scaleY(var(--tw-scale-y))"].join(" "),Be=["var(--tw-blur)","var(--tw-brightness)","var(--tw-contrast)","var(--tw-grayscale)","var(--tw-hue-rotate)","var(--tw-invert)","var(--tw-saturate)","var(--tw-sepia)","var(--tw-drop-shadow)"].join(" "),Fe=["var(--tw-backdrop-blur)...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/docs/css/manual.css

    	line-height: 0;
    	margin-top: 0.3rem;
    	right: 0;
    	font-weight: 400;
    	transform-origin: center;
    	transition: 200ms linear;
    }
    
    details[open] summary:after {
    	transform: rotate(45deg);
    	font-size: 2rem;
    }
    
    details summary {
    	outline: 0;
    }
    
    details p {
    	font-size: 0.95rem;
    	margin: 0 0 1rem;
    	padding-top: 1rem;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    				// TODO: extract the logic to detect expiration time, and use a simpler code to rotate to files.
    				_, _ = a.getWorkloadCerts(st)
    			})
    			_, _ = a.getWorkloadCerts(st)
    		}()
    	} else {
    		pkpConf := a.proxyConfig.GetPrivateKeyProvider()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top