Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for 007s (0.37 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultModelTest.groovy

            test(7).formattedDuration == '0.007s'
            test(1200).formattedDuration == '1.200s'
        }
    
        def formatsLongDuration() {
            expect:
            test(60000).formattedDuration == '1m0.00s'
            test(72301).formattedDuration == '1m12.30s'
            test(72305).formattedDuration == '1m12.31s'
            test(60 * 60 * 1000).formattedDuration == '1h0m0.00s'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            and:
            TimeFormatting.formatDurationVeryTerse(60 * 60 * 1000) == '1h0m0.00s'
            TimeFormatting.formatDurationVeryTerse(60 * 60 * 1000 + 20) == '1h0m0.02s'
    
            and:
            TimeFormatting.formatDurationVeryTerse(24 * 60 * 60 * 1000) == '1d0h0m0.00s'
            TimeFormatting.formatDurationVeryTerse(24 * 60 * 60 * 1000 + 23 * 1000) == '1d0h0m23.00s'
        }
    
        def formatsNegativeDurations() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    7<\014k&\000\340?\230p\267J\315T\264?\230\364u\225\256\271\342?\314;\031\002\034\234\331?\240\373\236\217\372\230\333?\252\317A\217r\000\331?\000C\037\247\354r\325?\007V\013\374y/\345?\014\006\377\236j\353\331?\365\027\033\317\031\216\344?T\300\204$D\244\305?\000\343\237\272#\376\250?(\323N\277>O\345?A\275\036\343\037\375\346?|0\007m\020&\340?\214\277\336\001\247\313\314?\250\272\301\302\327\261\270?\372\365\037\034x$\346?B\260\370\212\346u\331?\270TLY\316\223\331?\270\341\300`\324P\304?\2721>\2...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            passedClassFile.assertHasDuration("1.000s")
            passedClassFile.assertHasLinkTo('../index', 'all')
            passedClassFile.assertHasLinkTo('../packages/org.gradle.passing', 'org.gradle.passing')
    
            def passedTestDetails = passedClassFile.testDetails('passed')
            passedTestDetails.assertDuration("1.000s")
            passedTestDetails.assertPassed()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration_test.go

    	}{
    		{"d: 0s\n", Duration{}},
    		{"d: 5s\n", Duration{5 * time.Second}},
    		{"d: 2m0s\n", Duration{2 * time.Minute}},
    		{"d: 1h0m0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    
    		// Units with zero values can optionally be dropped
    		{"d: 2m\n", Duration{2 * time.Minute}},
    		{"d: 1h0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    	}
    
    	for _, c := range cases {
    		var result DurationHolder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 07 18:17:32 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

    </tr>
    <tr>
    <td>Task Execution</td>
    <td class="numeric">6m30.00s</td>
    </tr>
    </table>
    </div>
    <div class="tab" id="tab1">
    <h2>Configuration</h2>
    <table>
    <thead>
    <tr>
    <th>Project</th>
    <th class="numeric">Duration</th>
    </tr>
    </thead>
    <tr>
    <td>All projects</td>
    <td class="numeric">8.000s</td>
    </tr>
    <tr>
    <td>b</td>
    <td class="numeric">5.000s</td>
    </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/benchfail.test

    --- FAIL: BenchmarkFoo
    	x_test.go:8: My benchmark
    FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 05 22:27:17 UTC 2018
    - 90 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        AtomicDouble at = new AtomicDouble(+0.0);
        assertFalse(at.compareAndSet(-0.0, 7.0));
        assertFalse(at.weakCompareAndSet(-0.0, 7.0));
        assertBitEquals(+0.0, at.get());
        assertTrue(at.compareAndSet(+0.0, -0.0));
        assertBitEquals(-0.0, at.get());
        assertFalse(at.compareAndSet(+0.0, 7.0));
        assertFalse(at.weakCompareAndSet(+0.0, 7.0));
        assertBitEquals(-0.0, at.get());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out2.yaml

            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statPrefix: tcp.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 582 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

          assertFalse(aa.compareAndSet(i, -0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, -0.0, 7.0));
          assertBitEquals(+0.0, aa.get(i));
          assertTrue(aa.compareAndSet(i, +0.0, -0.0));
          assertBitEquals(-0.0, aa.get(i));
          assertFalse(aa.compareAndSet(i, +0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, +0.0, 7.0));
          assertBitEquals(-0.0, aa.get(i));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top