Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 152 for haverace (0.71 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.h

      // the device's own memory, not for transfers between the host and device.)
      // Negative values are treated as "unset".
      int64_t (*get_memory_bandwidth)(const SP_Device* device);
    
      // [Optional]
      // Estimate of average number of floating point operations per second for
      // this device * 10e-9.
      // Negative values are treated as "unset".
      double (*get_gflops)(const SP_Device* device);
    } SP_DeviceFns;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "demand_seats_average",
    			Help:           "Time-weighted average, over last adjustment period, of demand_seats",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel},
    	)
    	apiserverSeatDemandStandardDeviations = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    // If there is an error, it will be of type *PathError.
    func Remove(name string) error {
    	// System call interface forces us to know
    	// whether name is a file or directory.
    	// Try both: it is cheaper on average than
    	// doing a Stat plus the right one.
    	e := ignoringEINTR(func() error {
    		return syscall.Unlink(name)
    	})
    	if e == nil {
    		return nil
    	}
    	e1 := ignoringEINTR(func() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    # TODO(pjh): this test flakily fails on brand-new clusters, not sure why.
    # % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
    #                                Dload  Upload   Total   Spent    Left  Speed
    # 0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	fs.Float32Var(&o.BatchConfig.ThrottleQPS, fmt.Sprintf("audit-%s-batch-throttle-qps", pluginName),
    		o.BatchConfig.ThrottleQPS, "Maximum average number of batches per second. "+
    			"Only used in batch mode.")
    	fs.IntVar(&o.BatchConfig.ThrottleBurst, fmt.Sprintf("audit-%s-batch-throttle-burst", pluginName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    }
    
    var blockprofilerate uint64 // in CPU ticks
    
    // SetBlockProfileRate controls the fraction of goroutine blocking events
    // that are reported in the blocking profile. The profiler aims to sample
    // an average of one blocking event per rate nanoseconds spent blocked.
    //
    // To include every blocking event in the profile, pass rate = 1.
    // To turn off profiling entirely, pass rate <= 0.
    func SetBlockProfileRate(rate int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       * Creates a {@code RateLimiter} with the specified stable throughput, given as "permits per
       * second" (commonly referred to as <i>QPS</i>, queries per second).
       *
       * <p>The returned {@code RateLimiter} ensures that on average no more than {@code
       * permitsPerSecond} are issued during any given second, with sustained requests being smoothly
       * spread over each second. When the incoming request rate exceeds {@code permitsPerSecond} the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. src/image/png/writer.go

    	for i := bpp; i < n; i++ {
    		cdat1[i] = cdat0[i] - cdat0[i-bpp]
    		sum += abs8(cdat1[i])
    		if sum >= best {
    			break
    		}
    	}
    	if sum < best {
    		best = sum
    		filter = ftSub
    	}
    
    	// The average filter.
    	sum = 0
    	for i := 0; i < bpp; i++ {
    		cdat3[i] = cdat0[i] - pdat[i]/2
    		sum += abs8(cdat3[i])
    	}
    	for i := bpp; i < n; i++ {
    		cdat3[i] = cdat0[i] - uint8((int(cdat0[i-bpp])+int(pdat[i]))/2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    		threadCount: threads,
    		tokenCount:  tokens,
    	}
    	s.makeTokens()
    	return s
    }
    
    // singleBenchmark collects all the state needed to run a benchmark. The
    // question this benchmark answers is, "what's the average latency added by the
    // cache for N concurrent tokens?"
    //
    // Given the size of the key range constructed by this test, the default go
    // benchtime of 1 second is often inadequate to test caching and expiration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

          },
          "io.k8s.api.autoscaling.v2.MetricTarget": {
            "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
            "properties": {
              "averageUtilization": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top