Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for 2s (0.03 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	VADD V5.H8, V18.H8, V9.H8         <=>      add v9.8h, v18.8h, v5.8h
    	VLD1.P (R6)(R11), [V31.D1]        <=>      ld1 {v31.1d}, [x6], x11
    	VFMLA V29.S2, V20.S2, V14.S2      <=>      fmla v14.2s, v20.2s, v29.2s
    	AESD V22.B16, V19.B16             <=>      aesd v19.16b, v22.16b
    	SCVTFWS R3, F16                   <=>      scvtf s17, w6
    
    6. Align directive
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/util/cache/object_cache_test.go

    		return expectedVal, nil
    	}, 1*time.Second, fakeClock)
    
    	err := objectCache.Add(testObj.key, testObj.val)
    	if err != nil {
    		t.Errorf("Unable to add obj %#v by key: %s", testObj, testObj.key)
    	}
    
    	// sleep 2s so cache should be expired.
    	fakeClock.Sleep(2 * time.Second)
    
    	value, err := objectCache.Get(testObj.key)
    	if err != nil {
    		t.Errorf("Unable to get obj %#v by key: %s", testObj, testObj.key)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. src/time/example_test.go

    	}
    	// Output:
    	// d.Round(   1ns) = 1h15m30.918273645s
    	// d.Round(   1µs) = 1h15m30.918274s
    	// d.Round(   1ms) = 1h15m30.918s
    	// d.Round(    1s) = 1h15m31s
    	// d.Round(    2s) = 1h15m30s
    	// d.Round(  1m0s) = 1h16m0s
    	// d.Round( 10m0s) = 1h20m0s
    	// d.Round(1h0m0s) = 1h0m0s
    }
    
    func ExampleDuration_String() {
    	fmt.Println(1*time.Hour + 2*time.Minute + 300*time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. buildscripts/disable-root.sh

    export MC_HOST_sitea=http://foobar:foo12345@127.0.0.1:9001
    export MC_HOST_siteb=http://foobar:foo12345@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin user add sitea foobar-admin foo12345
    
    sleep 2s
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/BigIntegerMath.java

       * <p><b>Warning:</b> the result takes <i>O(n log n)</i> space, so use cautiously.
       *
       * <p>This uses an efficient binary recursive algorithm to compute the factorial with balanced
       * multiplies. It also removes all the 2s from the intermediate products (shifting them back in at
       * the end).
       *
       * @throws IllegalArgumentException if {@code n < 0}
       */
      public static BigInteger factorial(int n) {
        checkNonNegative("n", n);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/BigIntegerMath.java

       * <p><b>Warning:</b> the result takes <i>O(n log n)</i> space, so use cautiously.
       *
       * <p>This uses an efficient binary recursive algorithm to compute the factorial with balanced
       * multiplies. It also removes all the 2s from the intermediate products (shifting them back in at
       * the end).
       *
       * @throws IllegalArgumentException if {@code n < 0}
       */
      public static BigInteger factorial(int n) {
        checkNonNegative("n", n);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/tracing_zipkin_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/default_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_datadog_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/accesslogs_test.go

    				HTTP: echo.HTTP{
    					Path: "/" + testID,
    				},
    			})
    			// This is a negative test; there isn't much we can do other than wait a few seconds and ensure we didn't emit logs
    			// Logs should flush every 1s, so 2s should be plenty of time for logs to be emitted
    			time.Sleep(time.Second * 2)
    			count = logCount(t, to, testID)
    			if count > 0 != expectLogs {
    				return fmt.Errorf("expected logs '%v', got %v", expectLogs, count)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top