Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for longval (0.28 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. 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)
  3. 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)
  4. 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)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

            if (flakinessRate == null || baseDuration == null) {
                return baseDuration;
            }
            return baseDuration + flakinessRate.multiply(BigDecimal.valueOf(baseDuration)).longValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

                buffer.putLong(value);
                update(8);
            }
    
            @Override
            public void putDouble(double value) {
                long longValue = Double.doubleToRawLongBits(value);
                putLong(longValue);
            }
    
            @Override
            public void putBoolean(boolean value) {
                putByte((byte) (value ? 1 : 0));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                @Provides
                Integer createInteger() {
                    return 12
                }
    
                @Provides
                Long createLong(BigDecimal value) {
                    return value.longValue()
                }
    
                @Provides
                BigDecimal createBigDecimal() {
                    return 123
                }
            })
    
            expect:
            10.times {
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            }
    
            @Override
            public Isolatable<?> integerValue(Integer value) {
                return new IntegerValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> shortValue(Short value) {
                return new ShortValueSnapshot(value);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

                } else {
                    DefaultResolvedComponentResult selectedComponent = components.get(d.getSelected().longValue());
                    if (selectedComponent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/schema-extra-example.md

    As chaves do `dict` identificam cada exemplo, e cada valor é outro `dict`.
    
    Cada `dict` de exemplo específico em `examples` pode conter:
    
    * `summary`: Pequena descrição do exemplo.
    * `description`: Uma descrição longa que pode conter texto em Markdown.
    * `value`: O próprio exemplo mostrado, ex: um `dict`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top