Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Instant (0.13 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "time() - max(minio_node_process_starttime_seconds{job=~\"$scrape_jobs\"})",
              "format": "time_series",
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{instance}}",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. src/time/time.go

    		return 0
    	}
    	return t.ext
    }
    
    // After reports whether the time instant t is after u.
    func (t Time) After(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    		return t.ext > u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts > us || ts == us && t.nsec() > u.nsec()
    }
    
    // Before reports whether the time instant t is before u.
    func (t Time) Before(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public fun equals (Ljava/lang/Object;)Z
    	public final fun get (Ljava/lang/String;)Ljava/lang/String;
    	public final fun getDate (Ljava/lang/String;)Ljava/util/Date;
    	public final fun getInstant (Ljava/lang/String;)Ljava/time/Instant;
    	public fun hashCode ()I
    	public fun iterator ()Ljava/util/Iterator;
    	public final fun name (I)Ljava/lang/String;
    	public final fun names ()Ljava/util/Set;
    	public final fun newBuilder ()Lokhttp3/Headers$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		return true
    	}
    	p := getg().m.p.ptr()
    	selfTime := p.gcFractionalMarkTime + (now - p.gcMarkWorkerStartTime)
    	// Add some slack to the utilization goal so that the
    	// fractional worker isn't behind again the instant it exits.
    	return float64(selfTime)/float64(delta) > 1.2*gcController.fractionalUtilizationGoal
    }
    
    var work workType
    
    type workType struct {
    	full  lfstack          // lock-free list of full blocks workbuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/time/format.go

    // in a fabricated location with the given zone abbreviation and a zero offset.
    // This choice means that such a time can be parsed and reformatted with the
    // same layout losslessly, but the exact instant used in the representation will
    // differ by the actual zone offset. To avoid such problems, prefer time layouts
    // that use a numeric zone offset, or use [ParseInLocation].
    func Parse(layout, value string) (Time, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

       * of input futures.
       *
       * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class.
       *
       * <p>Example:
       *
       * <pre>{@code
       * final ListenableFuture<Instant> loginDateFuture =
       *     loginService.findLastLoginDate(username);
       * final ListenableFuture<List<String>> recentCommandsFuture =
       *     recentCommandsService.findRecentCommands(username);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        Module System.
     *  New: Log gzipped bodies when `HttpLoggingInterceptor` is used as a network
        interceptor.
     *  New: `Protocol.QUIC` constant. This protocol is not supported but this
        constant is included for completeness.
     *  New: Upgrade to Okio 1.14.0.
    
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
           <artifactId>okio</artifactId>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

       * of input futures.
       *
       * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class.
       *
       * <p>Example:
       *
       * <pre>{@code
       * final ListenableFuture<Instant> loginDateFuture =
       *     loginService.findLastLoginDate(username);
       * final ListenableFuture<List<String>> recentCommandsFuture =
       *     recentCommandsService.findRecentCommands(username);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    func.func @dot_general_with_bias_same_shape_and_relu6_fn(%arg0: tensor<1x1x167xf32>) -> tensor<1x1x64xf32> {
      %0 = stablehlo.constant dense<2.000000e+00> : tensor<167x64xf32>
      %1 = stablehlo.constant dense<2.000000e+00> : tensor<1x1x64xf32>
      %2 = stablehlo.constant dense<0.000000e+00> : tensor<1x1x64xf32>
      %3 = stablehlo.constant dense<6.000000e+00> : tensor<1x1x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    func keyVal(x constant.Value) interface{} {
    	switch x.Kind() {
    	case constant.Complex:
    		f := constant.ToFloat(x)
    		if f.Kind() != constant.Float {
    			r, _ := constant.Float64Val(constant.Real(x))
    			i, _ := constant.Float64Val(constant.Imag(x))
    			return complex(r, i)
    		}
    		x = f
    		fallthrough
    	case constant.Float:
    		i := constant.ToInt(x)
    		if i.Kind() != constant.Int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top