Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for visibility (0.31 sec)

  1. pkg/kubelet/stats/cri_stats_provider.go

    		p.cpuUsageCache[id] = &cpuUsageRecord{stats: newStats, usageNanoCores: &usageToUpdate}
    
    		return &usageNanoCores, nil
    	}()
    
    	if err != nil {
    		// This should not happen. Log now to raise visibility
    		klog.ErrorS(err, "Failed updating cpu usage nano core")
    	}
    	return usage
    }
    
    func (p *criStatsProvider) cleanupOutdatedCaches() {
    	p.mutex.Lock()
    	defer p.mutex.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    		} else {
    			if export || ldr.AttrCgoExportDynamic(s) {
    				symtab.AddUint8(0x0f) // N_SECT | N_EXT
    			} else if ldr.AttrCgoExportStatic(s) {
    				// Only export statically, not dynamically. (N_PEXT is like hidden visibility)
    				symtab.AddUint8(0x1f) // N_SECT | N_EXT | N_PEXT
    			} else {
    				symtab.AddUint8(0x0e) // N_SECT
    			}
    			o := s
    			if outer := ldr.OuterSym(o); outer != 0 {
    				o = outer
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

                        baz/           (go code in package baz)
                            z.go
                    quux/              (go code in package main)
                        y.go
    
    The same visibility rules apply as for internal, but the code
    in z.go is imported as "baz", not as "foo/vendor/baz".
    
    Code in vendor directories deeper in the source tree shadows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/runtime/arena.go

    	// Note: no synchronization required for this write because
    	// the allocator has exclusive access to the page, and the bitmap
    	// entries are all for a single page. Also, visibility of these
    	// writes is guaranteed by the publication barrier in mallocgc.
    
    	// Move to next word of bitmap.
    	h.offset += ptrBits * goarch.PtrSize
    	h.low = 0
    	return h
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    lement).find(y.INDICATORS)[0],this._addEventListeners()}var C=o.prototype;return C.next=function(){this._isSliding||this._slide(h)},C.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},C.prev=function(){this._isSliding||this._slide(c)},C.pause=function(e){e||(this._isPaused=!0),t(this._element).find(y.NEXT_PREV)[0]&&P.supportsTransitionEnd()&&(P.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/magic.go

    // involving one multiplication and compare.
    //
    // To extend this to even integers, consider c = d0 * 2^k where d0 is odd.
    // We can test whether x is divisible by both d0 and 2^k.
    // For d0, the test is the same as above.  Let m be such that m*d0 mod 2^n == 1
    // Then x*m mod 2^n <= ⎣(2^n - 1)/d0⎦ is the first test.
    // The test for divisibility by 2^k is a check for k trailing zeroes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    	// 386:"SHRL",-"IDIVL"
    	// amd64:"SHRQ",-"IDIVQ"
    	// arm:"SRA",-".*udiv"
    	// arm64:"ASR",-"REM"
    	// ppc64x:"SRAD"
    	b := n2 % 64 // signed
    
    	return a, b
    }
    
    // Check that signed divisibility checks get converted to AND on low bits
    func Pow2DivisibleSigned(n1, n2 int) (bool, bool) {
    	// 386:"TESTL\t[$]63",-"DIVL",-"SHRL"
    	// amd64:"TESTQ\t[$]63",-"DIVQ",-"SHRQ"
    	// arm:"AND\t[$]63",-".*udiv",-"SRA"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

        return (x & y) + ((x ^ y) >> 1);
      }
    
      /*
       * This bitmask is used as an optimization for cheaply testing for divisibility by 2, 3, or 5.
       * Each bit is set to 1 for all remainders that indicate divisibility by 2, 3, or 5, so
       * 1, 7, 11, 13, 17, 19, 23, 29 are set to 0. 30 and up don't matter because they won't be hit.
       */
      private static final int SIEVE_30 =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/LongMath.java

        return (x & y) + ((x ^ y) >> 1);
      }
    
      /*
       * This bitmask is used as an optimization for cheaply testing for divisibility by 2, 3, or 5.
       * Each bit is set to 1 for all remainders that indicate divisibility by 2, 3, or 5, so
       * 1, 7, 11, 13, 17, 19, 23, 29 are set to 0. 30 and up don't matter because they won't be hit.
       */
      private static final int SIEVE_30 =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top