Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for FACTORS (2.44 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

            private final static int[] DELAYS = [2, 3, 5, 8, 13, 21, 34, 55]
    
            private final static boolean LOG = false
            private final static Map<String, Integer> FACTORS = [
                'jar': 10,
                'xml': 3,
                'pom': 3
            ].withDefault { 1 }
    
            private final AtomicInteger concurrency = new AtomicInteger()
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue16733.go

    // compile
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 16733: don't fold constant factors into a multiply
    // beyond the capacity of a MULQ instruction (32 bits).
    
    package p
    
    func f(n int64) int64 {
    	n *= 1000000
    	n *= 1000000
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 16:46:48 UTC 2016
    - 364 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/order_by_dialect.cc

    // Reorder operations so that consecutive ops stay in the same dialect, as far
    // as possible. This is to optimize the op order for the group-by-dialect pass,
    // which factors consecutive same-dialect ops into functions.
    class OrderByDialectPass
        : public impl::OrderByDialectPassBase<OrderByDialectPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OrderByDialectPass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/seat_seconds.go

    const MaxSeatSeconds = SeatSeconds(math.MaxUint64)
    
    // MinSeatSeconds is the lowest representable value of SeatSeconds
    const MinSeatSeconds = SeatSeconds(0)
    
    // SeatsTimeDuration produces the SeatSeconds value for the given factors.
    // This is intended only to produce small values, increments in work
    // rather than amount of work done since process start.
    func SeatsTimesDuration(seats float64, duration time.Duration) SeatSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 09:16:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue21576.go

    	file := filepath.Join(dir, "main.go")
    	if err := ioutil.WriteFile(file, []byte(prog), 0655); err != nil {
    		log.Fatalf("Write error %v", err)
    	}
    
    	// Using a timeout of 1 minute in case other factors might slow
    	// down the start of "go run". See https://golang.org/issue/34836.
    	ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
    	defer cancel()
    
    	cmd := exec.CommandContext(ctx, "go", "run", file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    // an optimization to avoid calling AsDec.
    func (a int64Amount) AsInt64() (int64, bool) {
    	if a.scale == 0 {
    		return a.value, true
    	}
    	if a.scale < 0 {
    		// TODO: attempt to reduce factors, although it is assumed that factors are reduced prior
    		// to the int64Amount being created.
    		return 0, false
    	}
    	return positiveScaleInt64(a.value, a.scale)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_bench_test.go

    }
    
    func BenchmarkAnalyzersArtificialBlankData800(b *testing.B) {
    	benchmarkAnalyzersArtificialBlankData(800, b)
    }
    
    // Benchmark analyzers against an artificial set of blank data.
    // This does not cover all scaling factors, and it's not representative of a realistic snapshot, but it does cover some things.
    func benchmarkAnalyzersArtificialBlankData(count int, b *testing.B) {
    	// Suppress log noise from validation warnings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. manifests/charts/ztunnel/values.yaml

      podLabels: {}
    
      # Pod resource configuration
      resources:
        requests:
          cpu: 200m
          # Ztunnel memory scales with the size of the cluster and traffic load
          # While there are many factors, this is enough for ~200k pod cluster or 100k concurrently open connections.
          memory: 512Mi
    
      # List of secret names to add to the service account as image pull secrets
      imagePullSecrets: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/math/big/ratconv.go

    	d := x.Denom().abs // d >= 1
    
    	// Determine p2 by counting factors of 2.
    	// p2 corresponds to the trailing zero bits in d.
    	// Do this first to reduce q as much as possible.
    	var q nat
    	p2 := d.trailingZeroBits()
    	q = q.shr(d, p2)
    
    	// Determine p5 by counting factors of 5.
    	// Build a table starting with an initial power of 5,
    	// and use repeated squaring until the factor doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/internal/cov/read_test.go

    	testenv.MustHaveGoBuild(t)
    	if !goexperiment.CoverageRedesign {
    		t.Skipf("skipping since this test requires 'go build -cover'")
    	}
    
    	// Build a tiny test program with -cover. Smallness is important;
    	// it is one of the factors that triggers issue 58411.
    	d := t.TempDir()
    	exepath := filepath.Join(d, "small.exe")
    	path := filepath.Join("testdata", "small.go")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build",
    		"-o", exepath, "-cover", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top