Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for Approximates (0.39 sec)

  1. src/compress/flate/example_test.go

    		log.Fatal(err)
    	}
    	if err := zr.Close(); err != nil {
    		log.Fatal(err)
    	}
    
    	fmt.Println()
    
    	// Substitute all of the bytes in the dictionary with a '#' to visually
    	// demonstrate the approximate effectiveness of using a preset dictionary.
    	fmt.Println("Substrings matched by the dictionary are marked with #:")
    	hashDict := []byte(dict)
    	for i := range hashDict {
    		hashDict[i] = '#'
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    		// (b) do specify field selector with the value equal to the value
    		//     coming from the processed object
    		//
    		// TODO(wojtek-t): For the sake of making progress and initially
    		// simplifying the implementation, we approximate (b) for all values
    		// as the value for an empty string. The assumption we're making here
    		// is that the difference between the actual number of watchers that
    		// will be processed, i.e. (a)+(b) above and the one from our
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. CREDITS

      If the disclaimer of warranty and limitation of liability provided
    above cannot be given local legal effect according to their terms,
    reviewing courts shall apply local law that most closely approximates
    an absolute waiver of all civil liability in connection with the
    Program, unless a warranty or assumption of liability accompanies a
    copy of the Program in return for a fee.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/gofmt/gofmt.go

    // it from rlimit on platforms that support that system call.
    //
    // File descriptors opened from outside of this package are not tracked,
    // so this limit may be approximate.
    var fdSem = make(chan bool, 200)
    
    var (
    	rewrite    func(*token.FileSet, *ast.File) *ast.File
    	parserMode parser.Mode
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: gofmt [flags] [path ...]\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Cache.java

      // For discussion of <? extends Object>, see getAllPresent.
      void invalidateAll(Iterable<? extends Object> keys);
    
      /** Discards all entries in the cache. */
      void invalidateAll();
    
      /** Returns the approximate number of entries in this cache. */
      long size();
    
      /**
       * Returns a current snapshot of this cache's cumulative statistics, or a set of default values if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. src/go/doc/testdata/benchmark.go

    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"time"
    )
    
    var matchBenchmarks = flag.String("test.bench", "", "regular expression to select benchmarks to run")
    var benchTime = flag.Duration("test.benchtime", 1*time.Second, "approximate run time for each benchmark")
    
    // An internal type but exported because it is cross-package; part of the implementation
    // of go test.
    type InternalBenchmark struct {
    	Name string
    	F    func(b *B)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Stopwatch.java

     * <i>can</i> be subtracted to obtain a {@code Duration} (such as by {@code Duration.between}), but
     * doing so does <i>not</i> give a reliable measurement of elapsed time, because wall time readings
     * are inherently approximate, routinely affected by periodic clock corrections. Because this class
     * (by default) uses {@link System#nanoTime}, it is unaffected by these changes.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/math/expm1.go

    //                   = 1 - r**2/60 + r**4/2520 - r**6/100800 + ...
    //      We use a special Reme algorithm on [0,0.347] to generate
    //      a polynomial of degree 5 in r*r to approximate R1. The
    //      maximum error of this polynomial approximation is bounded
    //      by 2**-61. In other words,
    //          R1(z) ~ 1.0 + Q1*z + Q2*z**2 + Q3*z**3 + Q4*z**4 + Q5*z**5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/Cache.java

      // For discussion of <? extends Object>, see getAllPresent.
      void invalidateAll(Iterable<? extends Object> keys);
    
      /** Discards all entries in the cache. */
      void invalidateAll();
    
      /** Returns the approximate number of entries in this cache. */
      long size();
    
      /**
       * Returns a current snapshot of this cache's cumulative statistics, or a set of default values if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.1.golden

    		parallel	= flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
    	
    		cpuList	[]int
    	)
    
    	// 
    	var benchTime = flag.Duration("test.benchtime", 1*time.Second, "approximate run time for each benchmark")
    
    	// 
    	var matchBenchmarks = flag.String("test.bench", "", "regular expression to select benchmarks to run")
    
    	// 
    	var timer *time.Timer
    
    
    FUNCTIONS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top