Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 138 for proximate (0.14 sec)

  1. 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)
  2. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

          {{ end }}
          {{- end }}
          containers:
          - name: istio-proxy
          {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image) }}
            image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image }}"
          {{- else }}
            image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image }}:{{ .Values.global.tag }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

          {{ end }}
          {{- end }}
          containers:
          - name: istio-proxy
          {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image) }}
            image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image }}"
          {{- else }}
            image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image }}:{{ .Values.global.tag }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         * first call [KaFlexibleType.upperBound] or [KaFlexibleType.lowerBound] and then call this method.
         *
         * @param shouldApproximate whether to approximate non-denotable types. For example, super type of `List<out String>` is
         * `Collection<CAPTURED out String>`. With approximation set to true, `Collection<out String>` is returned instead.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K 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