Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 177 for capmem (0.18 sec)

  1. src/internal/trace/resources.go

    	//
    	// This is distinct from the result (Event).Stack because it pertains to
    	// the transitioning resource, not any of the ones executing the event
    	// this StateTransition came from.
    	//
    	// An example of this difference is the NotExist -> Runnable transition for
    	// goroutines, which indicates goroutine creation. In this particular case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/math/expm1.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below are from FreeBSD's /usr/src/lib/msun/src/s_expm1.c
    // and came with this notice. The go code is a simplified
    // version of the original C.
    //
    // ====================================================
    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/runtime/select.go

    	if debugSelect {
    		print("select: cas0=", cas0, "\n")
    	}
    
    	// NOTE: In order to maintain a lean stack size, the number of scases
    	// is capped at 65536.
    	cas1 := (*[1 << 16]scase)(unsafe.Pointer(cas0))
    	order1 := (*[1 << 17]uint16)(unsafe.Pointer(order0))
    
    	ncases := nsends + nrecvs
    	scases := cas1[:ncases:ncases]
    	pollorder := order1[:ncases:ncases]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/29154")
        @ToBeFixedForIsolatedProjects(because = "-x is not IP compatible")
        def "configures all subprojects of default projects when excluded task path is not qualified and uses camel case matching"() {
            createDirs("a", "b", "b/child", "c")
            settingsFile << "include 'a', 'b', 'b:child', 'c'"
            file('b').mkdirs()
            buildFile << """
    allprojects {
        task one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        for (int repeats = 0; repeats < 10000; repeats++) {
          assertTrue(BloomFilter.optimalNumOfBits(random.nextInt(1 << 16), random.nextDouble()) >= 0);
        }
    
        // and some crazy values (this used to be capped to Integer.MAX_VALUE, now it can go bigger
        assertEquals(3327428144502L, BloomFilter.optimalNumOfBits(Integer.MAX_VALUE, Double.MIN_VALUE));
        IllegalArgumentException expected =
            assertThrows(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        this.expireAfterAccess = builder.expireAfterAccessNanos;
        this.expireAfterWrite = builder.expireAfterWriteNanos;
        this.statsCounter = builder.getStatsCounterSupplier().get();
    
        /* Implements size-capped LinkedHashMap */
        final long maximumSize = builder.maximumSize;
        this.cachingHashMap =
            new CapacityEnforcingLinkedHashMap<K, V>(
                builder.getInitialCapacity(),
                0.75f,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    func CapDiv(a []int) int {
    	// 386:"SHRL\t[$]12"
    	// amd64:"SHRQ\t[$]12"
    	// arm64:"LSR\t[$]12",-"SDIV"
    	// arm:"SRL\t[$]12",-".*udiv"
    	// ppc64x:"SRD\t[$]12"
    	return cap(a) / ((1 << 11) + 2048)
    }
    
    func CapMod(a []int) int {
    	// 386:"ANDL\t[$]4095"
    	// amd64:"ANDL\t[$]4095"
    	// arm64:"AND\t[$]4095",-"SDIV"
    	// arm/6:"AND",-".*udiv"
    	// arm/7:"BFC",-".*udiv",-"AND"
    	// ppc64x:"RLDICL"
    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. cmd/metrics-v2.go

    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    func toSnake(camel string) (snake string) {
    	var b strings.Builder
    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    			return cached{nil, err}
    		}
    		if err := c.checkRecord(id, text); err != nil {
    			return cached{nil, err}
    		}
    
    		// Now that we've validated the record,
    		// save it to the on-disk cache (unless that's where it came from).
    		if writeCache {
    			c.ops.WriteCache(file, data)
    		}
    
    		return cached{data, nil}
    	}).(cached)
    	if result.err != nil {
    		return nil, result.err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/encoding/base64/base64.go

    		n += ninc
    		if err != nil {
    			return n, err
    		}
    	}
    	return n, err
    }
    
    // assemble32 assembles 4 base64 digits into 3 bytes.
    // Each digit comes from the decode map, and will be 0xff
    // if it came from an invalid character.
    func assemble32(n1, n2, n3, n4 byte) (dn uint32, ok bool) {
    	// Check that all the digits are valid. If any of them was 0xff, their
    	// bitwise OR will be 0xff.
    	if n1|n2|n3|n4 == 0xff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top