Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Inits (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // How many ULP's (Units in the Last Place) we want to tolerate when
      // comparing two numbers.  The larger the value, the more error we
      // allow.  A 0 value means that two numbers must be exactly the same
      // to be considered equal.
      //
      // The maximum error of a single floating-point operation is 0.5
      // units in the last place.  On Intel CPU's, all floating-point
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    	// static one-element cache that gives the correct
    	// zone for the time when the Location was created.
    	// if cacheStart <= t < cacheEnd,
    	// lookup can return cacheZone.
    	// The units for cacheStart and cacheEnd are seconds
    	// since January 1, 1970 UTC, to match the argument
    	// to lookup.
    	cacheStart int64
    	cacheEnd   int64
    	cacheZone  *zone
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    		d += highPrecisionTimeSince(b.start)
    	}
    	return d
    }
    
    // ReportMetric adds "n unit" to the reported benchmark results.
    // If the metric is per-iteration, the caller should divide by b.N,
    // and by convention units should end in "/op".
    // ReportMetric overrides any previously reported value for the same unit.
    // ReportMetric panics if unit is the empty string or if unit contains
    // any whitespace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

       * and returns it. Callers should use this to verify the request was sent as intended within the
       * given time.
       *
       * @param timeout how long to wait before giving up, in units of [unit]
       * @param unit a [TimeUnit] determining how to interpret the [timeout] parameter
       * @return the head of the request queue
       */
      @Throws(InterruptedException::class)
      fun takeRequest(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. go.work.sum

    github.com/alecthomas/kingpin/v2 v2.4.0 h1:f48lwail6p8zpO1bC4TxtqACaGqHYA22qkHjHpqDjYY=
    github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc h1:cAKDfWh5VpdgMhJosfJnn5/FoN2SRZ4p7fJNX58YPaU=
    github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 h1:s6gZFSlWYmbqAuRjVTiNNhvNRfY2Wxp9nhfyel4rklc=
    github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    	//
    	// First, find the highest desired distribution quantile.
    	maxQ := quantiles[0]
    	for _, q := range quantiles {
    		if q > maxQ {
    			maxQ = q
    		}
    	}
    	// The distribution's mass is in units of time (it's not
    	// normalized because this would make it more annoying to
    	// account for future contributions of unrefined bands). The
    	// total final mass will be the duration of the trace itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Lists.java

        return new StringAsImmutableList(checkNotNull(string));
      }
    
      /**
       * Returns a view of the specified {@code CharSequence} as a {@code List<Character>}, viewing
       * {@code sequence} as a sequence of Unicode code units. The view does not support any
       * modification operations, but reflects any changes to the underlying character sequence.
       *
       * @param sequence the character sequence to view as a {@code List} of characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Lists.java

        return new StringAsImmutableList(checkNotNull(string));
      }
    
      /**
       * Returns a view of the specified {@code CharSequence} as a {@code List<Character>}, viewing
       * {@code sequence} as a sequence of Unicode code units. The view does not support any
       * modification operations, but reflects any changes to the underlying character sequence.
       *
       * @param sequence the character sequence to view as a {@code List} of characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf_test.go

    		if err != nil {
    			t.Fatalf("error reading DWARF: %v", err)
    		}
    		if e == nil {
    			break
    		}
    		if e.Tag != dwarf.TagCompileUnit {
    			continue
    		}
    		// NB: there can be multiple compile units named "main".
    		name := e.Val(dwarf.AttrName).(string)
    		if name != "main" {
    			continue
    		}
    		lnrdr, err := dw.LineReader(e)
    		if err != nil {
    			t.Fatalf("error creating DWARF line reader: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top