Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for longval (0.2 sec)

  1. src/runtime/map_test.go

    		"foo":                    "fooval",
    		"bar":                    "barval", // same key length as "foo"
    		"xxxx":                   "x4val",
    		strings.Repeat("x", 128): "longval1",
    		strings.Repeat("y", 128): "longval2",
    	})
    }
    
    // Tests a map with a single bucket, with all keys having different lengths.
    func TestSingleBucketMapStringKeys_NoDupLen(t *testing.T) {
    	testMapLookups(t, map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            def getM1Pom = server.get(m1.pom.path).sendSomeAndBlock(longXml(m1.pom.file))
            def getM2Pom = server.get(m2.pom.path).sendSomeAndBlock(longXml(m2.pom.file))
            def metaData = server.expectConcurrentAndBlock(getM1Pom, getM2Pom)
            def getM1Jar = server.get(m1.artifact.path).sendSomeAndBlock(longJar(m1.artifact.file))
            def getM2Jar = server.get(m2.artifact.path).sendSomeAndBlock(longJar(m2.artifact.file))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_aix_ppc64.c

    /*
     * On AIX, call to _cgo_topofstack and Go main are forced to be a longcall.
     * Without it, ld might add trampolines in the middle of .text section
     * to reach these functions which are normally declared in runtime package.
     */
    extern int __attribute__((longcall)) __cgo_topofstack(void);
    extern int __attribute__((longcall)) runtime_rt0_go(int argc, char **argv);
    extern void __attribute__((longcall)) _rt0_ppc64_aix_lib(void);
    
    int _cgo_topofstack(void) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

            UnsignedLong bUnsigned = UnsignedLong.fromLongBits(b);
            long expected = aUnsigned.bigIntegerValue().add(bUnsigned.bigIntegerValue()).longValue();
            UnsignedLong unsignedSum = aUnsigned.plus(bUnsigned);
            assertThat(unsignedSum.longValue()).isEqualTo(expected);
          }
        }
      }
    
      public void testMinus() {
        for (long a : TEST_LONGS) {
          for (long b : TEST_LONGS) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/net/conf.go

    	confVal.netGo = netGoBuildTag || dnsMode == "go"
    	confVal.netCgo = netCgoBuildTag || dnsMode == "cgo"
    	confVal.dnsDebugLevel = debugLevel
    
    	if confVal.dnsDebugLevel > 0 {
    		defer func() {
    			if confVal.dnsDebugLevel > 1 {
    				println("go package net: confVal.netCgo =", confVal.netCgo, " netGo =", confVal.netGo)
    			}
    			switch {
    			case confVal.netGo:
    				if netGoBuildTag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise.go

    // `doneCtx` becomes selectable (which never happens for the nil
    // channel) then `Set(doneVal)` effectively happens at that time.
    func NewWriteOnce(initial interface{}, doneCtx context.Context, doneVal interface{}) WriteOnce {
    	p := &promise{
    		doneCtx: doneCtx,
    		doneVal: doneVal,
    		setCh:   make(chan struct{}),
    	}
    	if initial != nil {
    		p.Set(initial)
    	}
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/LongMathTest.java

          for (int i = 0; i < 100; i++) {
            long p = BigInteger.probablePrime(bits, rand).longValue();
            long q = BigInteger.probablePrime(bits, rand).longValue();
            assertFalse(LongMath.isPrime(p * q));
          }
        }
      }
    
      @GwtIncompatible // isPrime is GWT-incompatible
      public void testIsPrimeThrowsOnNegative() {
        try {
          LongMath.isPrime(-1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/runtime/cgo/callbacks_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgo
    
    // These functions must be exported in order to perform
    // longcall on cgo programs (cf gcc_aix_ppc64.c).
    //
    //go:cgo_export_static __cgo_topofstack
    //go:cgo_export_static runtime.rt0_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 402 bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

          at.set(x);
          assertEquals((int) x, at.intValue());
        }
      }
    
      /** longValue returns current value. */
      public void testLongValue() {
        AtomicDouble at = new AtomicDouble();
        assertEquals(0L, at.longValue());
        for (double x : VALUES) {
          at.set(x);
          assertEquals((long) x, at.longValue());
        }
      }
    
      /** floatValue returns current value. */
      public void testFloatValue() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        checkNotNull(updaterFunction);
        Long result =
            map.compute(
                key,
                (k, value) -> updaterFunction.applyAsLong((value == null) ? 0L : value.longValue()));
        return requireNonNull(result);
      }
    
      /**
       * Updates the value currently associated with {@code key} with the specified function, and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top