Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 530 for fries (0.05 sec)

  1. src/runtime/mpagealloc_test.go

    	}
    	tests := map[string]struct {
    		before map[ChunkIdx][]BitRange
    		after  map[ChunkIdx][]BitRange
    		npages uintptr
    		frees  []uintptr
    	}{
    		"Free1": {
    			npages: 1,
    			before: map[ChunkIdx][]BitRange{
    				BaseChunkIdx: {{0, PallocChunkPages}},
    			},
    			frees: []uintptr{
    				PageBase(BaseChunkIdx, 0),
    				PageBase(BaseChunkIdx, 1),
    				PageBase(BaseChunkIdx, 2),
    				PageBase(BaseChunkIdx, 3),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  2. cmd/prepare-storage.go

    	if err == nil {
    		return storageDisks, format, nil
    	}
    
    	tries++ // tried already once
    
    	// Wait on each try for an update.
    	ticker := time.NewTicker(1 * time.Second)
    	defer ticker.Stop()
    
    	for {
    		// Only log once every 10 iterations, then reset the tries count.
    		verbose = tries >= 10
    		if verbose {
    			tries = 1
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/net/tcpsock_unix_test.go

    func TestTCPSpuriousConnSetupCompletionWithCancel(t *testing.T) {
    	mustHaveExternalNetwork(t)
    
    	defer dnsWaitGroup.Wait()
    	t.Parallel()
    	const tries = 10000
    	var wg sync.WaitGroup
    	wg.Add(tries * 2)
    	sem := make(chan bool, 5)
    	for i := 0; i < tries; i++ {
    		sem <- true
    		ctx, cancel := context.WithCancel(context.Background())
    		go func() {
    			defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. cluster/validate-cluster.sh

    # Run kubectl and retry upon failure.
    function kubectl_retry() {
      tries=3
      while ! "${KUBE_ROOT}/cluster/kubectl.sh" "$@"; do
        tries=$((tries-1))
        if [[ ${tries} -le 0 ]]; then
          echo "('kubectl $*' failed, giving up)" >&2
          return 1
        fi
        echo "(kubectl failed, will retry ${tries} times)" >&2
        sleep 1
      done
    }
    
    ALLOWED_NOTREADY_NODES="${ALLOWED_NOTREADY_NODES:-0}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/mpallocbits_test.go

    			npages:   2,
    			frees:    []uint{0, 2, 4, 6, 8, 10},
    			afterInv: []BitRange{{0, 12}},
    		},
    		"NoneFree5": {
    			npages:   5,
    			frees:    []uint{0, 5, 10, 15, 20},
    			afterInv: []BitRange{{0, 25}},
    		},
    		"NoneFree64": {
    			npages:   64,
    			frees:    []uint{0, 64, 128},
    			afterInv: []BitRange{{0, 192}},
    		},
    		"NoneFree65": {
    			npages:   65,
    			frees:    []uint{0, 65, 130},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

        def "fires build listener events on included builds"() {
            given:
            dependency 'org.test:buildB:1.0'
            dependency buildB, 'org.test:buildC:1.0'
    
            when:
            execute()
    
            then:
            verifyBuildEvents()
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def "fires build listener events for unused included builds"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/Dockerfile

    RUN wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 https://github.com/bazelbuild/bazelisk/releases/download/v1.12.0/bazelisk-linux-arm64 -O /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/protomem.go

    		b.pb.int64Opt(tagProfile_DefaultSampleType, b.stringIndex(defaultSampleType))
    	}
    
    	values := []int64{0, 0, 0, 0}
    	var locs []uint64
    	for _, r := range p {
    		hideRuntime := true
    		for tries := 0; tries < 2; tries++ {
    			stk := r.Stack
    			// For heap profiles, all stack
    			// addresses are return PCs, which is
    			// what appendLocsForStack expects.
    			if hideRuntime {
    				for i, addr := range stk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    	const (
    		goal   = "/gc/heap/goal:bytes"
    		count  = "/gc/cycles/total:gc-cycles"
    		allocs = "/gc/heap/allocs:bytes"
    		frees  = "/gc/heap/frees:bytes"
    	)
    
    	sample := []metrics.Sample{{Name: goal}, {Name: count}, {Name: allocs}, {Name: frees}}
    	const (
    		GOAL   = 0
    		COUNT  = 1
    		ALLOCS = 2
    		FREES  = 3
    	)
    
    	// Assumptions and observations of Go's garbage collector, as of Go 1.17-1.20:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	}
    }
    
    func verifyAttachDetachCalls(t *testing.T, testPlugin *controllervolumetesting.TestPlugin, tc vaTest) {
    	for tries := 0; tries <= 10; tries++ { // wait & try few times before failing the test
    		expected_op_map := tc.expected_attaches
    		plugin_map := testPlugin.GetAttachedVolumes()
    		verify_op := "attach"
    		volFound, nodeFound := false, false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top