Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for progression (0.4 sec)

  1. src/internal/trace/gc.go

    // utilization function by resetting the current time.
    func (acc *accumulator) resetTime() {
    	// This only matters for distribution collection, since that's
    	// the only thing that depends on the progression of the
    	// windowed mutator utilization function.
    	acc.lastTime = math.MaxInt64
    }
    
    // addMU adds a point to the windowed mutator utilization function at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    			payloadBytes -= c.out.mac.Size()
    		default:
    			panic("unknown cipher type")
    		}
    	}
    	if c.vers == VersionTLS13 {
    		payloadBytes-- // encrypted ContentType
    	}
    
    	// Allow packet growth in arithmetic progression up to max.
    	pkt := c.packetsSent
    	c.packetsSent++
    	if pkt > 1000 {
    		return maxPlaintext // avoid overflow in multiply below
    	}
    
    	n := payloadBytes * int(pkt+1)
    	if n > maxPlaintext {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "nowInAndroidBuild",
        "linux" : 313,
        "windows" : 406,
        "macOs" : 246
      }, {
        "testProject" : "santaTrackerAndroidBuild",
        "linux" : 430,
        "windows" : 768,
        "macOs" : 423
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

            JavaVersion.VERSION_1_7 | "4.6"    // last version with reported regression
            JavaVersion.VERSION_1_7 | "4.10.3" // last Gradle version that can run on Java 1.7
    
            JavaVersion.VERSION_1_8 | "4.6"    // last version with reported regression
            JavaVersion.VERSION_1_8 | "4.7"    // first version that had no reported regression
            JavaVersion.VERSION_1_8 | "4.10.3"
            JavaVersion.VERSION_1_8 | "5.6.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Copyright 2023 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.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-task-across-generations.go

    // Copyright 2023 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.
    
    // Regression test for an issue found in development.
    //
    // The issue is that EvUserTaskEnd events don't carry the
    // task type with them, so the parser needs to track that
    // information. But if the parser just tracks the string ID
    // and not the string itself, that string ID may not be valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/wait-on-pipe.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a goroutine sitting blocked in a syscall for
    // an entire generation. This is a regression test for
    // #65196.
    
    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"os"
    	"runtime/trace"
    	"syscall"
    	"time"
    )
    
    func main() {
    	// Create a pipe to block on.
    	var p [2]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // Copyright 2023 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.
    
    // Regression test for #55160.
    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    			// cel-go v0.17.7 change the cost of has() from 0 to 1, but also provided the CostEstimatorOptions option to preserve the old behavior, so we enabled it at the same time we bumped our cel version to v0.17.7.
    			// Since it is a regression fix, we apply it uniformly to all code use v0.17.7.
    			cel.CostEstimatorOptions(checker.PresenceTestHasCost(false)),
    		},
    		ProgramOptions: []cel.ProgramOption{
    			cel.EvalOptions(cel.OptOptimize, cel.OptTrackCost),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # Test that ModuleDirect.Public is correctly set on go list output.
    # This is a regression test for issue #66789.
    
    # In this test, the workspace contains modules example.com/a and
    # example.com/b. Module example.com/a has a direct requirement
    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top