Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for gint (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SRWconst (ANDconst [m] x) [s]) && mergePPC64RShiftMask(m>>uint(s),s,32) == 0 => (MOVDconst [0])
    (SRWconst (ANDconst [m] x) [s]) && mergePPC64AndSrwi(m>>uint(s),s) != 0 => (RLWINM [mergePPC64AndSrwi(m>>uint(s),s)] x)
    (SRWconst (AND (MOVDconst [m]) x) [s]) && mergePPC64RShiftMask(m>>uint(s),s,32) == 0 => (MOVDconst [0])
    (SRWconst (AND (MOVDconst [m]) x) [s]) && mergePPC64AndSrwi(m>>uint(s),s) != 0 => (RLWINM [mergePPC64AndSrwi(m>>uint(s),s)] 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)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	margin-bottom: 0;
    }
    
    #content #footnotes {
    	margin-top: -0.625em;
    	margin-bottom: 0;
    	padding: 0.75em 0;
    }
    
    .gist .file-data>table {
    	border: 0;
    	background: var(--white-color);
    	width: 100%;
    	margin-bottom: 0;
    }
    
    .gist .file-data>table td.line-data {
    	width: 99%;
    }
    
    div.unbreakable {
    	page-break-inside: avoid;
    }
    
    .big {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	groupDiscoveryHandler   *groupDiscoveryHandler
    
    	customStorageLock sync.Mutex
    	// customStorage contains a crdStorageMap
    	// atomic.Value has a very good read performance compared to sync.RWMutex
    	// see https://gist.github.com/dim/152e6bf80e1384ea72e17ac717a5000a
    	// which is suited for most read and rarely write cases
    	customStorage atomic.Value
    
    	crdLister listers.CustomResourceDefinitionLister
    
    	delegate          http.Handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

    public final class CacheBuilder<K, V> {
      private static final int DEFAULT_INITIAL_CAPACITY = 16;
      private static final int DEFAULT_CONCURRENCY_LEVEL = 4;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      private static final int DEFAULT_EXPIRATION_NANOS = 0;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      private static final int DEFAULT_REFRESH_NANOS = 0;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    	force          = flag.Bool("f", false, "ignore expected-failure test lists")
    	target         = flag.String("target", "", "cross-compile tests for `goos/goarch`")
    
    	shard  = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	copy(c.lastConsMark[:], c.lastConsMark[1:])
    	c.lastConsMark[len(c.lastConsMark)-1] = currentConsMark
    
    	if debug.gcpacertrace > 0 {
    		printlock()
    		goal := gcGoalUtilization * 100
    		print("pacer: ", int(utilization*100), "% CPU (", int(goal), " exp.) for ")
    		print(c.heapScanWork.Load(), "+", c.stackScanWork.Load(), "+", c.globalsScanWork.Load(), " B work (", c.lastHeapScan+c.lastStackScan.Load()+c.globalsScan.Load(), " B exp.) ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - go.opentelemetry.io/otel/trace: v1.19.0 → v1.20.0
    - go.opentelemetry.io/otel: v1.19.0 → v1.20.0
    - golang.org/x/crypto: v0.21.0 → v0.23.0
    - golang.org/x/exp: a9213ee → f3d0a9c
    - golang.org/x/lint: 6edffad → 1621716
    - golang.org/x/mod: v0.15.0 → v0.17.0
    - golang.org/x/net: v0.23.0 → v0.25.0
    - golang.org/x/oauth2: v0.10.0 → v0.20.0
    - golang.org/x/sync: v0.6.0 → v0.7.0
    - golang.org/x/sys: v0.18.0 → v0.20.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    }
    
    var src = rand.NewSource(time.Now().UnixNano())
    
    func randString(n int) string {
    	b := make([]byte, n)
    	// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
    	for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
    		if remain == 0 {
    			cache, remain = src.Int63(), letterIdxMax
    		}
    		if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
    			b[i] = letterBytes[idx]
    			i--
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	PRFM	8(R12), PLIL3STRM               // 8d0580f9
    	PRFM	(R8), $25                       // 190180f9
    	PRFM	8(R9), $30                      // 3e0580f9
    	NOOP                                    // 1f2003d5
    	HINT $0                                 // 1f2003d5
    	DMB	$1
    	SVC
    
    // encryption
    	SHA256H	V9.S4, V3, V2                   // 6240095e
    	SHA256H2	V9.S4, V4, V3           // 8350095e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

        # -------------------------
        # if storage.path is set, Fluent Bit will look for data chunks that were
        # not delivered and are still in the storage layer, these are called
        # backlog data. This option configure a hint of maximum value of memory
        # to use when processing these records.
        #
        # storage.backlog.mem_limit 5M
    
    [INPUT]
        Name         winlog
        Interval_Sec 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top