Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for 1440 (0.02 seconds)

  1. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "bigCppApp",
        "linux" : 568
      }, {
        "testProject" : "bigCppMulti",
        "linux" : 1440
      }, {
        "testProject" : "bigNative",
        "linux" : 660
      }, {
        "testProject" : "mediumCppApp",
        "linux" : 234
      }, {
        "testProject" : "mediumCppAppWithMacroIncludes",
        "linux" : 239
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  2. guava-gwt/pom.xml

                  <!-- Keep these timeouts very large because, if we hit the timeout, the tests silently pass :( -->
                  <testTimeOut>86400 <!-- seconds --></testTimeOut>
                  <testMethodTimeout>1440 <!-- minutes --></testMethodTimeout>
                  <!-- Presumably we want watchFileChanges=false here, since we want it for compile: -->
                  <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/math/QuantilesTest.java

      private static final double SIXTEEN_SQUARES_MEDIAN = 0.5 * (49.0 + 64.0);
      private static final double SIXTEEN_SQUARES_QUARTILE_3 = 0.75 * 121.0 + 0.25 * 144.0;
      private static final double SIXTEEN_SQUARES_DECILE_8 = 144.0;
      private static final double SIXTEEN_SQUARES_MAX = 225.0;
    
      public void testMedian_compute_doubleCollection() {
        assertThat(median().compute(SIXTEEN_SQUARES_DOUBLES))
            .isWithin(ALLOWED_ERROR)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 29.9K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/math/QuantilesTest.java

      private static final double SIXTEEN_SQUARES_MEDIAN = 0.5 * (49.0 + 64.0);
      private static final double SIXTEEN_SQUARES_QUARTILE_3 = 0.75 * 121.0 + 0.25 * 144.0;
      private static final double SIXTEEN_SQUARES_DECILE_8 = 144.0;
      private static final double SIXTEEN_SQUARES_MAX = 225.0;
    
      public void testMedian_compute_doubleCollection() {
        assertThat(median().compute(SIXTEEN_SQUARES_DOUBLES))
            .isWithin(ALLOWED_ERROR)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 29.9K bytes
    - Click Count (0)
  5. docs/en/data/topic_repos.yml

      stars: 1482
      owner_login: teamhide
      owner_html_url: https://github.com/teamhide
    - name: awesome-python-resources
      html_url: https://github.com/DjangoEx/awesome-python-resources
      stars: 1444
      owner_login: DjangoEx
      owner_html_url: https://github.com/DjangoEx
    - name: prometheus-fastapi-instrumentator
      html_url: https://github.com/trallnag/prometheus-fastapi-instrumentator
      stars: 1438
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  6. tests/go.mod

    module gorm.io/gorm/tests
    
    go 1.24.0
    
    require (
    	github.com/google/uuid v1.6.0
    	github.com/jinzhu/now v1.1.5
    	github.com/lib/pq v1.10.9
    	github.com/stretchr/testify v1.11.1
    	gorm.io/driver/gaussdb v0.1.0
    	gorm.io/driver/mysql v1.6.0
    	gorm.io/driver/postgres v1.6.0
    	gorm.io/driver/sqlite v1.6.0
    	gorm.io/driver/sqlserver v1.6.1
    	gorm.io/gorm v1.31.0
    )
    
    require (
    	filippo.io/edwards25519 v1.1.0 // indirect
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals(2, list.size());
            assertEquals("fess-crawler-smbj", list.get(0).getName());
            assertEquals("14.14.0", list.get(0).getVersion());
            assertEquals("plugin/repo3/fess-crawler-smbj/14.14.0/fess-crawler-smbj-14.14.0.jar", list.get(0).getUrl());
            assertEquals("fess-crawler-smbj", list.get(1).getName());
            assertEquals("14.15.0", list.get(1).getVersion());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

          long k1 = 0;
          long k2 = 0;
          length += bb.remaining();
          switch (bb.remaining()) {
            case 15:
              k2 ^= (long) toUnsignedInt(bb.get(14)) << 48; // fall through
            case 14:
              k2 ^= (long) toUnsignedInt(bb.get(13)) << 40; // fall through
            case 13:
              k2 ^= (long) toUnsignedInt(bb.get(12)) << 32; // fall through
            case 12:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  9. go.mod

    module github.com/minio/minio
    
    go 1.24.0
    
    toolchain go1.24.8
    
    // Install tools using 'go install tool'.
    tool (
    	github.com/tinylib/msgp
    	golang.org/x/tools/cmd/stringer
    )
    
    require (
    	aead.dev/mtls v0.2.1
    	cloud.google.com/go/storage v1.52.0
    	github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0
    	github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.9.0
    	github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.1
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 10 18:57:03 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  10. gradle/libs.versions.toml

    androidx-test-runner = "1.7.0"
    animalsniffer = "2.0.1"
    animalsniffer-annotations = "1.27"
    assertk = "0.28.1"
    binary-compatibility-validator = "0.18.1"
    bnd = "7.2.3"
    brotli-dec = "0.1.2"
    burst = "2.10.2"
    checkstyle = "13.4.0"
    clikt = "5.1.0"
    extra-java-module-info = "1.14"
    codehaus-signature-java18 = "1.0"
    coroutines = "1.10.2"
    de-mannodermaus-junit5 = "2.0.1"
    dokka = "2.2.0"
    eclipse-osgi = "3.24.100"
    graalvm = "25.0.2"
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
Back to Top